BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Boss Theme XML updated files
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
Hi @perich187
I have attached the latest download from the demo site
We have used https://wordpress.org/plugins/siteorigin-panels/
Regards
Varun Dubey
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 ?
Hi @perich187
yes, you will need to install the import plugin first
Regards
Varun Dubey
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
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
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
Hi @perich187, if you are willing to use WooCommerce you can activate it also else you can ignore failed results
Regards
Varun Dubey
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
Hi @perich187, you will need to set Blog page from Setting >> Reading
Regards
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
Hi @perich187, You can use Page Builder to create your blog page category wise:
https://wordpress.org/plugins/siteorigin-panels/screenshots/
Regards
Pallavi
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
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
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