BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Boss Theme XML updated files
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
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
sorry @perich187 , that not possible by default
You can also discuss inside the BuddyPress support forums
https://buddypress.org/support/
Regards
Varun Dubey
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
Help would be appreciated 🙂
Hi @perich187, You can use to WPMU membership plugin or S2member plugin for that.
Regards
Pallavi
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
Hello,
Still no response?
Regards.
Adam
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
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
Hi @perich187
you can try with
$query->is_page(972)
Regards
Varun Dueby
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
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
Hello,
Just added that and did not work.
here is the website maybe be better to test.
Cheers,
Adam
Hi @perich187, your site is on Maintenance mode you can send site details at [email protected]
Regards
Pallavi