BuddyBoss Home – Web Support Forums Themes Boss. theme Boss Theme XML updated files

Viewing 15 posts - 16 through 30 (of 36 total)
  • Question

    #51452
    @vapvarun

    Hi @perich187, you can use Membership plugins for that purpose
    You can take a look of this one
    https://premium.wpmudev.org/project/membership/
    Regards

    Answers

    #51465
    @perich187

    Hi,

    Is there a way to just add another a single payment gateway without having to include membership subscription as that would be time consuming. Like when creating a group is there a way to create another step/page (Like when you select the background image for the group) So I can place maybe a paypal payment gateway in ? Not sure if it is possible.

    Regards,

    Adam

    #51474
    @vapvarun

    sorry @perich187 , that not possible by default
    You can also discuss inside the BuddyPress support forums
    https://buddypress.org/support/
    Regards
    Varun Dubey

    #52018
    @perich187

    Hello,

    I have now removed the certain blog categories from the blog page (Default blog Page). But I’m not wanting to show the blocked categories from the blog page on another page. These will not display with your code you provided. Is tehre a way to just block it from the default blog page only and let it display on others?

    function exclude_category($query) {
    if ( $query->is_home || $query->is_archive) {
    $query->set(‘cat’, ‘-49 -50’);
    }
    return $query;
    }
    add_filter(‘pre_get_posts’, ‘exclude_category’);

    This is the code I used and cant display the hidden categories on another page.

    regards,

    adam

    #52120
    @perich187

    Help would be appreciated 🙂

    #52150

    Anonymous
    @

    Hi @perich187, You can use to WPMU membership plugin or S2member plugin for that.

    Regards
    Pallavi

    #52370
    @perich187

    Hello,

    Sorry dont think you read my last support question right. I’m needing help for the default blog page as you gave me a code line that removes certain post ID categories from the blog default page but I am wanting to display them on another page with a post shortcode but now the post ID are hidden over the whole website. Basically I only want to remove them from the blog page and use them on another page.

    function exclude_category($query) {
    if ( $query->is_home || $query->is_archive) {
    $query->set(‘cat’, ‘-49 -50’);
    }
    return $query;
    }
    add_filter(‘pre_get_posts’, ‘exclude_category’);

    If the code above could only remove it from the blog page.

    Regards,

    Adam

    #52492
    @perich187

    Hello,

    Still no response?

    Regards.

    Adam

    #52840
    @vapvarun

    Hi @perich187

    10,11 representing the page id, you can replace them with your page ids

    
    function exclude_category_from_page($query) {
    if ( $query->is_page(array(10,11))) {
    $query->set(‘cat’, ‘-49 -50’);
    }
    return $query;
    }
    add_filter(‘pre_get_posts’, ‘exclude_category_from_page’);
    
    

    Regards
    Varun Dubey

    #52901
    @perich187

    Hello,

    I found an error in your code and corrected it.

    function exclude_category_from_page($query) {
    if ( $query->is_page(array(972))) {
    $query->set(‘cat’, ‘-49 -50’);
    }
    return $query;
    }
    add_filter(‘pre_get_posts’, ‘exclude_category_from_page’);

    This still does not work . Am I ment to put ‘ ‘ around the page ID?

    Regards,

    Adam

    #52916
    @vapvarun

    Hi @perich187
    you can try with
    $query->is_page(972)
    Regards
    Varun Dueby

    #54110
    @perich187

    Hey Guys,

    There is an issue with uploading the logo to the website theme buddy boss. I have uploaded my logo which is 280px x 80px and when in the mobile version the left hand side menu gets all stuffed up. I was wondering if you could please enlighten me on what is the cause of this ?

    Am I doing something wrong. Please check the attachment.

    Help would be appreciated 🙂

    Regards,

    Adam

    #54130

    Anonymous
    @

    Hi @perich187, Please add the following css in the child theme’s custom css option

    
     body.left-menu-open #nav-menu > ul > li > a, body.left-menu-open .menu-panel .menupop > a {
        padding: 15px 25px !important;
    }
    

    Regards
    Pallavi

    #54131
    @perich187

    Hello,

    Just added that and did not work.

    here is the website maybe be better to test.

    http://linkedfitness.com

    Cheers,

    Adam

    #54132

    Anonymous
    @

    Hi @perich187, your site is on Maintenance mode you can send site details at [email protected]

    Regards
    Pallavi

Viewing 15 posts - 16 through 30 (of 36 total)
  • The question ‘Boss Theme XML updated files’ is closed to new replies.