Search Results for 'code'
-
Search Results
-
Why do widgets have not enclosing container around them?
Here is the Widgets for recent replies I was expecting a
<div class="bbpress-widget-recent">code</div>or at least a<h1></h1>around the title"Recente Reacties" <ul> <li> <a href="/members/" title="Bekijk profiel" class="bbp-author-avatar" rel="nofollow"><img src="http://gravatar.com/avatar/b24c3f45ce107cd64af84ff792df90da?d=mm&s=14&r=G" class="avatar user-4-avatar avatar-14 photo" width="14" height="14" alt="Profile photo of user"></a> <a href="/members/" title="Bekijk profiel" class="bbp-author-name" rel="nofollow">User</a> op <a class="bbp-reply-topic-title" href="/onderwerp/link" title="link">link</a> </li> <li> <a href="/members/" title="Bekijk profiel" class="bbp-author-avatar" rel="nofollow"><img src="http://gravatar.com/avatar/b24c3f45ce107cd64af84ff792df90da?d=mm&s=14&r=G" class="avatar user-4-avatar avatar-14 photo" width="14" height="14" alt="Profile photo of user"></a> <a href="/members/" title="Bekijk profiel" class="bbp-author-name" rel="nofollow">User</a> op <a class="bbp-reply-topic-title" href="/onderwerp/link" title="link">link</a> </li> </ul>I was trying to change the CSS file to make the font more readable on my forums. I messed up the file and lost my original. Could someone post some code I could copy that is either the original bbpress.css file or one modified to have good readable font? Thanks for any help
Topic: edit profile in menu link
Hi guys, so ive followed this function from the bbpress codex webpage…
// Filter wp_nav_menu() to add profile link
add_filter( ‘wp_nav_menu_items’, ‘my_nav_menu_profile_link’ );
function my_nav_menu_profile_link($menu) {
if (!is_user_logged_in())
return $menu;
else
$current_user = wp_get_current_user();
$user=$current_user->display_name;
$profilelink = ‘- Edit Profile
‘;
$menu = $menu . $profilelink;
return $menu;
}Its working great. the problem im having though is if the user has a space in their name it will produce a invalid link.. for example
if the users name was Adam John
the link will be http://www.example/forum/users/adam john/ and it wont work..
any ideas? thank you in advance!
Hi, I’m trying to import a Vanilla forum db into my new BBPress install (2.5.4 on WP 4.0.1) and it silently hangs during the conversion of topics.
I’ve debugged the code and I suspect it’s getting stuck when it tries to parse the HTML into BBPress. Is this a known issue at all? Is there something I can do to prep the incoming data perhaps?
I’m open to hacking the core of the importer here, I only need to get it working once.
Topic: shortcodes to sign out
Hello,
It’s my first time on this forum…
This is my problem :
I don’t want to insert a Connection widget on a side bar.I’d rather like to use short codes.
I already know these following shortcodes :
[bbp-login] ā Display the login screen.
[bbp-register] ā Display the register screen.
[bbp-lost-pass] ā Display the lost password screen.
But I’d like a shortcode to sign out. I didn’t find it. Does it exist ?
Thank you very much for your help…Topic: bbp-single-forum issues
I’m very new to WP, so thanks for the support. After reading lots of support pages I’ve been able to create a simple home page showing a single Forum Topic; however, it also shows all of my other pages as boxes just below the forum box (e.g. registration, lost password, etc.) as one very long webpage. It looks like it shows all the website pages on one long page.
I’m just trying to setup my site and on the home page show only the Forum Topics. So I created a new page (lets call it “Start”) and redirected the home page to this “Start”. This worked fine.
Next I used the short code [bbp-single-forum id=49] to show my identified forum. The problem is that it shows everything else.
When I go to the forum page things look great (aka it only shows the forum, header and right column).
Go to http://www.sciencegeek.com to see the problem.Thanks again