-
AuthorPosts
-
September 28, 2013 at 10:19 pm #167635
1. How can I have the breadcrumb bar show up *only* on forum pages
2. How can I change the font color of text used the the bbpress edit box and for posts?
3. How can I expand the width of the main body area of the forum and reduce the width of the forum side bar (only want these changes to apply to forum pages)Thanks!
September 30, 2013 at 9:18 am #168028Hi stunna42!
1) In functions-enfold.php replace
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
with
if($breadcrumb && is_bbpress()) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
2) Use following css code:
#top .main_color .bbp-body p{ color: #333; } #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content { color: #333; }
The first rule will change the text color of the posts and the second rule will change the editor text color.
3) In functions.php search for
$avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven'); $avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine'); $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
and replace it with
$avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven'); $avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine'); $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha'); if(is_bbpress()) { $avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha', 'sidebar' => 'two alpha', 'meta' => 'two alpha', 'entry' => 'ten alpha'); }
Now the sidebar uses two units of the 12 units grid (instead of 3) and the content will use 10 units instead of 9.
Regards,
PeterOctober 1, 2013 at 2:31 am #168501Hi Dude/Peter! My apologies…I’m almost certainly doing something wrong here. I tried all of the suggested changes above and none of them seemed to have any impact. I cleared my browser cache…may I need to do something else?
Thanks again!
October 1, 2013 at 2:44 pm #168788Note: The only difference changes 1 & 3 appear to make is to force the logo to shrink (which is not intended)
October 2, 2013 at 9:37 am #169207Hi!
Maybe the is_bbpress() conditional doesn’t work in your case. You can try the conditionals from here: http://bbpress.org/forums/topic/bbpress-2-0-conditional-tags/
i.e. replace is_bbpress() with (is_post_type_archive(‘forum’) || is_singular(array( ‘forum’, ‘topic’, ‘reply’)))
Best regards,
PeterOctober 4, 2013 at 2:41 am #170219Hi Dude – I’m not having any luck here and am having some other BBpress issues. Is there any way to pay for premium support and have someone go in and help with these and other fixes?
October 4, 2013 at 5:42 am #170301October 5, 2013 at 1:09 am #170637Are there any freelancers that you recommend for this theme?
October 5, 2013 at 1:16 am #170638Hello!
You can look for freelancers specialized in Themeforest theme modification:
http://www.microlancer.com/search?utf8=%E2%9C%93&search%5Bquery%5D=themeforestBest regards,
Josue -
AuthorPosts
- The topic ‘3 bbpress questions’ is closed to new replies.