BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Boss Theme XML updated files
- This topic has 35 replies, 3 contibutors, and was last updated 8 years, 10 months ago by Anonymous.
Question
October 29, 2015 at 9:32 pm #50087@perich187Hi ,
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
October 30, 2015 at 4:46 am #50128@
AnonymousHi @perich187
I have attached the latest download from the demo site
We have used https://wordpress.org/plugins/siteorigin-panels/
Regards
Varun DubeyNovember 1, 2015 at 8:01 am #50319@perich187Do i add this in through the buddy theme import/export xml ? Or do I navigate to tools and click import and install wp import ?
November 1, 2015 at 8:29 am #50322@
AnonymousHi @perich187
yes, you will need to install the import plugin first
Regards
Varun DubeyNovember 2, 2015 at 7:07 am #50381@perich187Hello,
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
November 2, 2015 at 1:01 pm #50409@
AnonymousHi @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
RegardsNovember 3, 2015 at 6:57 pm #50560@perich187Hello,
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
November 4, 2015 at 7:44 am #50606@
AnonymousHi @perich187, if you are willing to use WooCommerce you can activate it also else you can ignore failed results
Regards
Varun DubeyNovember 4, 2015 at 8:09 pm #50667@perich187Hello,
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
November 5, 2015 at 1:53 am #50672@
AnonymousHi @perich187, you will need to set Blog page from Setting >> Reading
RegardsNovember 5, 2015 at 7:47 pm #50796@perich187Hello,
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
November 6, 2015 at 12:45 am #50819@
AnonymousHi @perich187, You can use Page Builder to create your blog page category wise:
https://wordpress.org/plugins/siteorigin-panels/screenshots/Regards
PallaviNovember 8, 2015 at 11:04 pm #51055@perich187Hello,
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
November 9, 2015 at 3:29 am #51071@
AnonymousUse 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
PallaviNovember 11, 2015 at 8:24 pm #51419@perich187Hello,
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
- The question ‘Boss Theme XML updated files’ is closed to new replies.