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
November 12, 2015 at 3:28 am #51452@
AnonymousHi @perich187, you can use Membership plugins for that purpose
You can take a look of this one
https://premium.wpmudev.org/project/membership/
RegardsAnswers
November 12, 2015 at 5:07 am #51465@perich187Hi,
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
November 12, 2015 at 6:32 am #51474@
Anonymoussorry @perich187 , that not possible by default
You can also discuss inside the BuddyPress support forums
https://buddypress.org/support/
Regards
Varun DubeyNovember 17, 2015 at 7:15 pm #52018@perich187Hello,
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
November 18, 2015 at 7:02 pm #52120@perich187Help would be appreciated 🙂
November 19, 2015 at 2:46 am #52150@
AnonymousHi @perich187, You can use to WPMU membership plugin or S2member plugin for that.
Regards
PallaviNovember 21, 2015 at 3:29 am #52370@perich187Hello,
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
November 23, 2015 at 6:28 am #52492@perich187Hello,
Still no response?
Regards.
Adam
November 26, 2015 at 7:28 am #52840@
AnonymousHi @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 DubeyNovember 26, 2015 at 7:39 pm #52901@perich187Hello,
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
November 27, 2015 at 6:04 am #52916@
AnonymousHi @perich187
you can try with
$query->is_page(972)
Regards
Varun DuebyDecember 9, 2015 at 7:05 pm #54110@perich187Hey 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
December 10, 2015 at 5:42 am #54130@
AnonymousHi @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
PallaviDecember 10, 2015 at 6:02 am #54131@perich187Hello,
Just added that and did not work.
here is the website maybe be better to test.
Cheers,
Adam
December 10, 2015 at 6:32 am #54132@
AnonymousHi @perich187, your site is on Maintenance mode you can send site details at [email protected]
Regards
Pallavi
- The question ‘Boss Theme XML updated files’ is closed to new replies.