Hi
I need to create a new membership action basically I have installed Facetalk Online but I dont want it available to everyone I want it so only gold level members can use it. Is there a way to create a membership action?
thanks
Hi I need to create a new membership action basically I have installed Facetalk Online but I dont want it available to everyone I want it so only gold level members can use it. Is there a way to create a membership action?
thanks |
Creating new membership actions in 3 steps : 1) inc/membership_levels.inc.php after : define('ACTION_ID_COMMENTS_REMOVE_OWN', 36); insert your new action id: define('ACTION_ID_USE_FACETALK', 100); 2) insert to table insert into `MemActions`(`ID`,`Name`,`AdditionalParamName`) values ( '100','use facetalk',NULL) 3) in your facetalk script insert this : $check_res = checkAction( $_COOKIE[memberID], ACTION_ID_USE_FACETALK); Jomar / DolphinBugFixing.com Live Support http://dolphinbugfixing.com |
Hi
Thanks :) Could you tell me where abouts I need to put the last bit as there are two php files for facetalk they are facetalkonline.php and facetalkeonlinedetail.php. Managed to do first two steps fine just dont quite understand last bit.
Thanks |