Forum Replies Created
-
AuthorPosts
-
fuji_manMember
Could we just block access to the whole post page instead of just individual post, so when someone arrive at the blog page, they will just be asked to login?
This seems easier since I wanted all blog be read by members only anyway.
fuji_manMemberGreat, thanks
June 24, 2011 at 11:43 pm in reply to: Manage Members – Add Expiration Date to Membership List #31719fuji_manMemberNevermind on the question.. I did found out the answer to my question… now just have to program it.
For anyone who wanted to do custom coding, you needed to edit function wp_emem_user_list_ajax() in emember_ajax.php
June 24, 2011 at 6:50 am in reply to: Manage Members – Add Expiration Date to Membership List #31718fuji_manMemberI needed ability to sort by membership type, active / non-active.. and also the ability to show only member started after specific date.
I was trying to do some custom coding.. but I can’t figure it out. I am just trying to edit the data pulling line..
I am stuck after the following part in eMember_members_menu.php Anyone could point me to the right direction? BTW should the second last line be paramss, or params, (Seems out of format).
if(params)
paramss = { action: “emember_user_list_ajax”,event: “emember_user_list_ajax”,start:i*itms_per_pg,limit:itms_per_pg,u:params.u, e:params.e,o:params.o};
else
paramss = { action: “emember_user_list_ajax”,event: “emember_user_list_ajax”,start:i*itms_per_pg,limit:itms_per_pg};
var maxIndex = Math.min((i+1)*itms_per_pg, count);
var target_url = ‘<?php bloginfo(‘wpurl’); ?>’;
jQuery.get(target_url + “/wp-admin/admin-ajax.php”,
paramss,
function(data){
fuji_manMemberOk.. got it… thanks..
One more question, for the Worepress Uers Integration, is there a way to limit the integration to only some membership levels?
For example this is what I wanted to do
To have a complete locked site, but if user create an account they will get to become a Visitor membership which will give them access to read but not to post comment.
Only after I upgrade their membership, do they have access to post.
Also if I do downgrade them, is there a way to block them from commenting again without deleting the wordpress account?
I could do custom coding… just tell me what part should I look at in the coding
fuji_manMemberI am thinking of the same thing, but instead of menu, I wanted to limit all widget to only logged in user… could that be done?
-
AuthorPosts