Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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, 1 month ago by dani85.
    #629296

    Hey 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,
    Yigit

    #629444

    Hi 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…

    #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

    #630194

    Hi, sorry the links has been changed, i will write it down to the private…

    thanks for the help

    #630714

    Hi,

    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,
    Yigit

    #632214

    thank you for the help…

    greetz

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘bbpress questions…’ is closed to new replies.