Search Results for '\"wordpress\"'
-
Search Results
-
Hi!
I noticed a strange behaviour in the freshness column for the latest post link – sometimes it is
/forum/topic/topicname/page/2/#post-391430
but sometimes it’s just
/forum/topic/topicname/#post-391523In first case, the link takes me to the latest post, in second case the link just leads to the first page of discussion, even though there are 440 pages! This really bugs my users and I can’t seem to find the solution. Every bit of advice is helpful!
I use WordPress 3.6 and bbPress 2.4. The problem can be seen at http://www.kilb.ee/foorum/sisu/mnemomaraton/mnemomaraton-2/ (in the rightmost column) and it also occurs with TwentyEleven theme.
Hello,
I have a website which I have added the bbpress plugin too (wordpress).
The website is split into three areas which are completely unrelated.
1. An info site
2. Forum 1
3. Forum 2Forum one is done.
Now I need to add a second forum with completely different catagories of topics etc.
How can I achieve this with BB press. Each ‘main forum’ has about 30 forum catagories under them but both main forums are completely unrelated. Both forums have the same logins for users.
Any help would be amazing.
Topic: Error after moving!
Hello everyone!
I have a problem.
I have just moved my WordPress website from an ISP to another ISP.
But, I have a problem!
After moving the website I get the following error:Fatal error: Call to undefined function bbp_get_topic_post_type() in /home/wdele/domains/carafec.nl/public_html/wp-content/plugins/bbpress/bbpress.php on line 571
I have bbPress installed. Does someone have an idea how to fix this?
I would be very thankful!Thank you in advance.
Have a good day,
WilliamI apologize in advance if this seems like a duplicate. I’ve read a number of posts on properly creating a BBPress theme, but my CSS refuses to load. Here is how I have things setup.
wp-content/
++++ main-theme-child/
++++ +++ bbpress.php
++++ +++ bbpress-functions.php
++++ +++ bbpress/ <- contains all of the files from the default theme.
++++ +++ css/bbpress.cssFor whatever reason, the css won’t load. Any thoughts?
Topic: @mention autosuggest
I would love to have an @mention autosuggest feature in the topic reply/create textarea. You probably know how this would work but quickly, when you type ‘@’ it would create a popup of the names of users and filters based on the characters after the ‘@’. Maybe it doesn’t even spawn until you have typed in at least a character or two.
There is a BuddyPress plugin that does exactly this: BP Labs. But it does not extend to the BBPress forums.
Is there anything like this out there that I’m missing?
Hello I am running the latest version of wordpress and bbpress, I am new to both of the aforementioned products. I have added a header link to my site that looks like
<?php if (is_page(‘Forums’)) { echo ” class=\”current_page_item\””; } ?>
That code works everywhere on my site except for bbpress. Can someone please tell me how to set my header link, and keep it, in the active state when on the forums? I’ve looked on this site and searched google to no avail.
Thanks alot.
Installed latest from add new. Now website or admin panel does not load.
After clicking activate plugin this URL is displayed and hangs. Nothing but a white screen.
http://houdiniesq.com/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=Had to remove bbPress folder from plugin directory in order to get our site back up.
Tried manual install of plugin but same thing.
We are using the FLexForm by swiftIdes ver 1.5 theme which is great and works wonderfully.Installed latest from add new. Now website or admin panel does not load.
After clicking activate plugin this URL is displayed and hangs. Nothing but a white screen.
http://houdiniesq.com/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=
How to fix.
Wordpress 3.6, using theme Twenty Eleven
BbPress 2.4 (Just updated this morning, though I had the problem with the previous version as well)
Only other active plugin: Error Log Dashboard Widget 1.0.2 (showing no PHP errors)
Several other plugins are installed, but deactivated while trying to debug this issue.I have the following text on a single page:
Here is the shortcode for the single forum: [ bbp-single-forum id=39 ] [bbp-single-forum id=39] Here is the shortcode for all forums: [ bbp-forum-index ] [bbp-forum-index]The single forum does not display. The forum index does display. I have confirmed that the index is the correct number via the admin forum view. Here is a link to a screenshot. Here is the link from the forum page, showing the forum id: http://[domainremoved].org/wordpress/wp-admin/post.php?post=39&action=edit (Obviously, clicking it won’t work, because it requires a log-in, but this is to confirm that I’m finding the forum index correctly.)
Here is the forum: http://[domainremoved].org/forums/forum/pta-board/
Here is the page it is linked from, showing where the shortcodes do not work: http://[domainremoved].org/pta-board-2/
(Note: I have added spaces between the shortcodes so you can see the text that I used, then repeated the shortcodes without the spaces to display the forums.)I feel like this should be some really simple user error, but given that I have double-checked the shortcode syntax and the forum id, deactivated all other plugins, and chosen the Twenty Eleven theme, I can’t figure out what it could be.
ETA: Wow, that was fast— my page got slammed with spam comments within minutes of posting the links here. I have removed them for now. If a support person needs them to diagnose the issue, I can give them out then.
After weeks trying to find something that would work, I found the code on wordpress forums to remove completely gravatars (and redirects it was causing.. )
here is it:
function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" />'; } else { return $image; } } add_filter('bp_core_fetch_avatar', 'bp_remove_gravatar', 1, 9 ); function remove_gravatar ($avatar, $id_or_email, $size, $default, $alt) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; return "<img alt='{$alt}' src='{$default}' height='{$size}' width='{$size}' />"; } add_filter('get_avatar', 'remove_gravatar', 1, 5); function bp_remove_signup_gravatar ($image) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" width="60" height="60" />'; } else { return $image; } } add_filter('bp_get_signup_avatar', 'bp_remove_signup_gravatar', 1, 1 );As I am now planning to disable buddypress completely. I am looking for an easy way to let users upload their avatars in bbpress, anyone tried it already?