Need step by step instructions for Buddypress and Platform Pro
#1
Posted 25 July 2011 - 05:28 PM
#2
Posted 25 July 2011 - 05:32 PM
#3
Posted 25 July 2011 - 06:14 PM
#4
Posted 25 July 2011 - 06:45 PM
#5
Posted 25 July 2011 - 08:35 PM
#6
Posted 25 July 2011 - 08:37 PM
#7
Posted 26 July 2011 - 02:23 AM
#8
Posted 30 January 2012 - 05:08 PM
#buddypress-page #content{
width:530px;
float:right;
margin: 25px 0 0 0;
}
Of course one has to change the width and the float to fit their needs
As far as full width sidebars
I'm using base-sidebar now (new site) in pages and post for ad placement and I think those sidebars just don't work in custom pages like what buddypress uses.
Or is there a way?
New site - http://thesinglepare...ive.com/members
#9
Posted 30 January 2012 - 11:32 PM
Don't know if it will help because I don't know the buddypress syntax, but here is an example of what you have to do with Woocommerce in Framework:
remove_action('woocommerce_before_main_content','woocommerce_output_content_wrapper', 10);
remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
add_action( 'woocommerce_before_main_content', 'pl_woo_open_wraps', 10 );
add_action( 'woocommerce_after_main_content', 'pl_woo_close_wraps', 10 );
function pl_woo_open_wraps() {
echo ' <section id="content class="container fix secondnav-content content-footcols">
<div class="texture">
<div class="content">
<div class="content-pad">
<div id="pagelines_content" class="one-sidebar-right fix">
<div id="column-wrap" class="fix">
<div id="column-main" class="mcolumn fix">
<div class="mcolumn-pad">
';
}
function pl_woo_close_wraps() {
echo '</section></div></div></div></div></div></div></div>';
}
Again, I know this is not for buddypress but might help you understand the structure IF that is how the budypress integration even works.
#10
Posted 31 January 2012 - 02:18 AM
#11
Posted 31 January 2012 - 03:07 AM
#12
Posted 31 January 2012 - 04:20 AM
#13
Posted 31 January 2012 - 07:34 PM
#14
Posted 01 February 2012 - 02:11 PM
#15
Posted 01 February 2012 - 03:23 PM
#16
Posted 02 February 2012 - 03:30 AM
#17
Posted 28 February 2012 - 10:10 AM
Re: Matching WooCommerce's content wrappers to PageLines Framework (v2.1.1)
Your solution works great (http://www.pagelines...7#Comment_91377), but only for the content part of the page. The sidebar is still pushed to the bottom of the page.
Is there more code to match the sidebar's content wrapper as well?
Thanks.
#18
Posted 28 February 2012 - 12:50 PM
#19
Posted 28 February 2012 - 04:11 PM
#20
Posted 20 March 2012 - 11:23 PM












