Search Results for 'bbpress'
-
Search Results
-
Hi,
Im using a bespoke WordPress theme for my site which ive created myself.
Ive fully customized BBpress & put the theme inside my WP theme too.
So far so good, it looks great & works fine too. But one problem is that the Breadcrumbs at the top of my page throughout the website only display:
Home / Forum / HatWorks Forum
If i then go into the GENERAL DISCUSSION SUB FORUM / TOPIC I get the following:
Home / Forum / General Discussion
Instead i should be getting:
Home / Forum / HatWorks Forum / General Discussion
If i then go to click a topic in general discussion I get:
Home / Forum / Hello all forum members, what do you prefer?
instead of
Home / Forum / HatWorks Forum / General Discussion / Hello all forum members, what do you prefer?
The current code I have written in my functions.php for the breadcrumbs is:
<?php function the_breadcrumb() { global $post; $post_type = $post->post_type; echo '<ul id="breadcrumbs">'; if(get_post_type() == 'forum' OR get_post_type() == 'topic' OR get_post_type() == 'reply') { echo '<li><a href="'; echo get_option('home'); echo '">'; echo '<i class="ts-awesome-home" style="font-size:14px;letter-spacing: 2px;"></i> Home'; echo '</a></li><li class="separator"> / </li>'; echo '<a href="https://hub.driveworks.co.uk/forums/forum/">Forum</a>'; echo ' / '; echo the_title(); } elseif (!is_home()) { echo '<li><a href="'; echo get_option('home'); echo '">'; echo '<i class="ts-awesome-home" style="font-size:14px;letter-spacing: 2px;"></i> Home'; echo '</a></li><li class="separator"> / </li>'; if (is_category() || is_single()) { echo '<li>'; the_category(' </li><li class="separator"> / </li><li> '); if (is_single()) { echo '</li><li class="separator"> / </li><li>'; the_title(); echo '</li>'; } } elseif (is_page()) { if($post->post_parent){ $anc = get_post_ancestors( $post->ID ); $title = get_the_title(); foreach ( $anc as $ancestor ) { $output = '<li><a href="'.get_permalink($ancestor).'" title="'.get_the_title($ancestor).'">'.get_the_title($ancestor).'</a></li> <li class="separator">/</li>'.$output; } echo $output; echo '<span title="'.$title.'"> '.$title.'</span>'; } else { echo '<li><span> '.get_the_title().'</span></li>'; } } } } ?>Any anyone help with the child navigation of this please?
Thank you
Hey there,
well, I’m not sure if this is the right subforum, so please feel free to
I am running a site where we have admins, authors and editors (which can review editors’ posts before putting them on-air). So, since now, we protected our WP backend with .htpasswd and .htaccess so no one could register/login without knowing the credentials for this extra anti-brute-foce gate.
Now I decided to stop using phpBB and switching to bbPress for my website, and as it seems, I need to remove the htaccess/htpasswd thingy to open up WP for all users to make it possible for people to register for the forums.
This makes me become concerned about the security of my site because anyone can register then – spammers as well as those brute-forcing id***s.
So, what can you recommend to have a WP website running bbPress while keeping the security level as high as possible?
Using: bbpress 2.5.5 | WP 4.1.1 | SmartMag Theme | http://www.booknerds.de (forum not on-air yet)
Topic: bbPress specific CSS
Simple note to bbPress creators, If you change all background: & background-color: to transparent; It should be compatible with any theme. Also I don’t think it’s a good idea to have minus pixels e.g. -3px; and the search form is miles to big. But keep up the good work as it’s worth it.
Hello! I have installed bbpress to my wordpress site that I host on a private host. Everything seems to have installed fine. So here is the problem. No users, regardless of their role, is able to view the initial topic post. All replies are viewable, just not the original post.
Website: http://main.coto-online.com/forums/
I have tried repairing the forums, and it doesn’t work. I have tried disabling/re-enabling plugins and it doesn’t work. I’m hesitant to uninstall/reinstall the forums as I don’t want to lose the posts members have already made.
Please help me.
Thanks in advance.Hello,
I installed a new bbpress 2.5.5 and noticed, that there is no space between the breadcrumb and the subscription-toggle:
How can I add some space? With CSS or in the code? What’s the better way?
Thanks for help in advance!Gerd
Hi. I have inherited a site using BBpress and there are some issues with new user registration. The forum settings are to give new registered users a Participant role, and my WP default is Subscriber for new users.
However, when somebody new registers for the forum, they are given full Admin access in wordpress. Obviously not something that is desirable.
I’m running the latest versions of both WP and BB. Please advise!