This topic has 3 replies, 2 voices, and was last updated 11 years by SQadmin.

  • Author
  • #6118
     JohnDoe
    Participant

    I allready added a custom one , To chat with users.

    like this :

    add_filter(‘kleo_pmpro_level_restrictions’, ‘kleo_extra_pmpro_restrictions’);

    function kleo_extra_pmpro_restrictions($restrictions) {

    $restrictions[] = array(

    ‘title’ => __(‘Chat with users’,’kleo_framework’),

    ‘front’ => __(‘Chat with users’,’kleo_framework’),

    ‘name’ => ‘unique_identifier’

    );

    return $restrictions;

    }

    But when i add a new one , it gives a error.

    so i think i have to implement it in the same code?

    I check this topic: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-to

    But can’t really figure it out , even that it looks easy to do…. :p

    #6210
     SQadmin
    Keymaster

    If you want to add another one you can do it in the same function above like:

    COPY CODE
    
    add_filter('kleo_pmpro_level_restrictions', 'kleo_extra_pmpro_restrictions');
    
    function kleo_extra_pmpro_restrictions($restrictions) {
    
    $restrictions[] = array(
    'title' => __('Chat with users','kleo_framework'),
    'front' => __('Chat with users','kleo_framework'),
    'name' => 'unique_identifier'
    );
    
    $restrictions[] = array(
    'title' => __('Another restriction','kleo_framework'),
    'front' => __('Another front restriction description','kleo_framework'),
    'name' => 'unique_identifier2'
    );
    
    return $restrictions;
    
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #6214
     JohnDoe
    Participant

    Works 🙂 , how can i edit the order of the entire list in the memberships pricing table? look at my site and ull see why .

    http://www.datelite.net/membership-account/membership-levels/

    #6249
     SQadmin
    Keymaster

    See here the whole array that you can modify and move up/down the array options:
    https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-to

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 4 posts - 1 through 4 (of 4 total)

The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?