-
AuthorPosts
-
May 6, 2016 at 10:28 am #628191
Hi there
i have some questions :o)
1. Why the Forum Homepage shows as “archive”? Also the Widgeds / Sidebar from the Homepage get as “Archive Sidebar”… Can i Change this?
2. Can i delete the first Separator from the Breadcrumbs? I Used the follow thread to remove the “home” from breadcrumbs:
but the CSS hack brings no change, so i think this not work anymore so?
i found this in css, but this is for all separators :S
.breadcrumb .sep { display: block; overflow: hidden; width: 8px; }
3. it is possible to get the breadcrumbs down to the forum? it shows very smal in the titlebar
thank you…
- This topic was modified 8 years, 6 months ago by dani85.
May 9, 2016 at 3:49 pm #629296Hey dani85,
1- You can create a new page and bbPress forum shortcode to display your forum on that page – https://codex.bbpress.org/features/shortcodes/ and this way you can set your custom widget areas as well.
2- Can you please post the link to your forum?
3- Can you please post a screenshot showing the changes you would like to make? You can upload them on imgur.com or Dropbox public folder and post the links here. Screenshot you posted is so tiny :)
Best regards,
YigitMay 9, 2016 at 7:35 pm #629444Hi Yigit
Thanks for the Answer…
1. one i have done. i found an way to get it right for me. you see it in the link in private content.
2. private..
3. private…May 9, 2016 at 7:36 pm #629445/* * Home Breadcrum entfernen... */ add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 1); function avia_change_breadcrumb($trail) { if(is_bbpress()) { $home = ''; $last = array_pop($trail); unset($trail); $trail[0] = $home; $trail[] = $last; } return $trail; }
this is what i have in the functions.php
May 10, 2016 at 7:07 pm #630194Hi, sorry the links has been changed, i will write it down to the private…
thanks for the help
May 11, 2016 at 2:03 pm #630714Hi,
Please add following code to Quick CSS
.forum.bbpress .breadcrumb-trail .sep:nth-child(2) { display: none!important; }
and then please refer to this post – http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
Best regards,
YigitMay 13, 2016 at 8:22 pm #632214thank you for the help…
greetz
-
AuthorPosts
- The topic ‘bbpress questions…’ is closed to new replies.