-
Author
-
September 27, 2013 at 18:28 #3443JosiahParticipant
There seems to be no effect when I change how the page layout/template should show.
I have changed default layout is SweetDate settings to no sidebar.
On the page itself I changed the layout template to Full Width Page Template, no sidebarStill the sidebar is there… I tried this on Groups page and Activity page.
The homepage does not display the sidebar… looks like that works right.
September 27, 2013 at 22:37 #3464JosiahParticipantFound the issue. It happens when the Memberships Pro MailChimp addon is active.
September 28, 2013 at 02:06 #3475JosiahParticipantI lied. Everything but groups is working fine. Groups page will not allow me to manipulate the layout template/sidebar.
September 30, 2013 at 03:30 #3559SQadminKeymasterIf you go to Sweetdate -> Buddypress and set it there without sidebar it works?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 30, 2013 at 08:36 #3583JosiahParticipantThat does work however “Groups” is the only part of buddypress I would not like to have a sidebar. I would also like to set different sidebars for different parts of buddypress. IE different sidebar for activity stream and a different sidebar for groups. Is that possible or is it all or nothing in BuddyPress pages?
October 1, 2013 at 01:27 #3618SQadminKeymasterThat can be achieved with: http://wordpress.org/plugins/buddypress-sidebar/
If you don’t want a sidebar in the groups section try adding this code to your sweetdate-child/functions.php
COPY CODEadd_action('after_setup_theme', 'kleo_disable_group_sidebar'); function kleo_disable_group_sidebar() { if(BP_GROUPS_SLUG == bp_current_component()) { remove_action('kleo_buddypress_before_content', 'kleo_buddypress_sidebar'); remove_action('kleo_buddypress_after_content', 'kleo_buddypress_sidebar'); } }
And modify page-parts / buddypress-before-wrap.php line 27 to:
<div class="<?php if (sq_option('buddypress_sidebar','right') == 'no' OR BP_GROUPS_SLUG == bp_current_component()) echo 'twelve'; else echo 'eight'; ?> columns">
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 21, 2013 at 19:40 #4781BottossoParticipantHow I can remove the sidebar in this page http://cl.ly/image/2q2Y2G2o311o ?
Thanks.
October 22, 2013 at 12:19 #4870SQadminKeymasterThat is related to all buddypress pages that can be changed from Sweetdate – Buddypress
If you want to edit the template: sweetdate/members/index.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.