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

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

    #50087
    @perich187

    Hi ,

    Could i Please get a copy of the updated boss theme xml file to upload to the website.

    This would be mostly appreciated.

    Regard,

    Adam

    Answers

    #50128
    @vapvarun

    Hi @perich187
    I have attached the latest download from the demo site
    We have used https://wordpress.org/plugins/siteorigin-panels/
    Regards
    Varun Dubey

    #50319
    @perich187

    Do i add this in through the buddy theme import/export xml ? Or do I navigate to tools and click import and install wp import ?

    #50322
    @vapvarun

    Hi @perich187
    yes, you will need to install the import plugin first
    Regards
    Varun Dubey

    #50381
    @perich187

    Hello,

    I tried to install the xml demo content and got an error message.

    Please check attachment

    Isn’t there some code to put into the theme import/export ?

    Regards,

    Adam

    #50409
    @vapvarun

    Hi @perich187
    These are failed because BBPress was deactivated or not installed when your imported demo data.
    You can activate the plugin and delete the any created Menus from Appearance >> Menus then you can import it again
    Regards

    #50560
    @perich187

    Hello,

    I tired again to install the xml demo content with BBPress Installed and activiated but it failed?

    Could you write a list of what plugins i will be needing before installing the xml demo content please.

    Regards,

    Adam

    #50606
    @vapvarun

    Hi @perich187, if you are willing to use WooCommerce you can activate it also else you can ignore failed results
    Regards
    Varun Dubey

    #50667
    @perich187

    Hello,

    I think this has now worked with woo commerce installed.

    I think there is an issue with the blog page as it has nothing displaying on it.

    http://demo.buddyboss.com/boss/blog/

    It does not look like the demo blog at all. I have used the stie origin page builder widget but that is not it and tried all other ones. How do i display it like the demo please.

    Regards,

    Adam

    #50672
    @vapvarun

    Hi @perich187, you will need to set Blog page from Setting >> Reading
    Regards

    #50796
    @perich187

    Hello,

    Yes that worked. Is there a way to have multiple blog pages in same layout but show only each category per blog page?

    3 different blog categories (Maybe Sub categories within this) and 3 different blog pages?

    If you could let me know if this is possible as there is really no documentation with descriptions.

    Regards,

    Adam

    #50819

    Anonymous
    @

    Hi @perich187, You can use Page Builder to create your blog page category wise:
    https://wordpress.org/plugins/siteorigin-panels/screenshots/

    Regards
    Pallavi

    #51055
    @perich187

    Hello,

    Is there a way to turn off certain post/blog categories to the blog page as it displays all categories? I want to keep it under the post plugin rather than doing separate custom post types etc. I will be creating other pages with with different post categories but not wanting to show it on the main blog page.

    Regards,

    Adam

    #51071

    Anonymous
    @

    Use this code to paste in your functions.php file. It should be pasted right before the ?> part which should be the part of the exiting code. Replace “xx” in the code provided with Category ID you have made note of before hand

    
    function exclude_category($query) {
    if ( $query->is_archive ) {
    $query->set('cat', '-xx');
    }
    return $query;
    }
    add_filter('pre_get_posts', 'exclude_category');
    

    Excluding Multiple Categories in WordPress:

    
    $query->set('cat', '-9 -53 -98 -484');
    

    To exclude category posts from both Archive pages and Main Blog Page, replace second line of code with following code:

    
    if ( $query->is_home || $query->is_archive) {
    

    Regards
    Pallavi

    #51419
    @perich187

    Hello,

    I was wondering if there is a way to create an option for members who create groups to have a payment gateway (Paypal) E.g Cost in setting up a group. As this is how the website will make revenue.

    Regards,

    Adam

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