Forum Replies Created
-
In reply to: Slide on mobile linking incorrectly
not sure what you mean by ‘slide’ – can you explain further?
In reply to: Temporarily prevent postingsince bbpress uses wordpress registration this is really a wordpress issue
In wordpress you should just disable ‘anyone can register’
In reply to: SearchingIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Reply to posts with "account" in the title 404no problem, glad you’re fixed !
In reply to: How to remove title & Info areaok the title comes form your theme, so I can’t help precisely with what to do but you should look in the page.php file or similar and find
<h1 class=”entry-title”><?php the_title(); ?></h1>
or something similar.
Come back with the lines and a few before and after and I’ll try and help further, but many themes are very complicated!
on the second issue, put the following in your functions file
Function hide_topic_display ($retstr){ $retstr = '' ; return $retstr ; } add_filter( 'bbp_get_forum_pagination_count', 'hide_topic_display' );
In reply to: Tipics listed on wrong forumIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: How to remove title & Info areasorry am tied up elsewhere, but will come back in the next day or so
In reply to: Private messages to a wp page?Not sure I understand the question – please expand with a link or an example
In reply to: Remove bbPress forum profile URL linkNo problem !
In reply to: How to remove title & Info areaDo you want to remove these from all bbpress pages ie forums, topics, profiles etc. ot just from a particular area, eg just from individual topics
In reply to: Remove bbPress forum profile URL linkThought it was a setting, but was tired when I read the post !
Dashboard>settings>forums>forum features and just untick ‘Allow users to mark topics as favorites’ and ‘Allow users to subscribe to forums and topics’
Wish they were all that simple 🙂
In reply to: Remove bbPress forum profile URL linkgreat – glad it worked.
I’ll come back on favourite/subscribe later !
In reply to: Hidden Forum GroupCan you re=phrase your question as I don’t understand what you wish to achieve
In reply to: Registration emails not sending to hotmail/aolMany spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
In reply to: ADD custom HTML in keymaster replyno problem – glad you’re fixed !
In reply to: ADD custom HTML in keymaster replyThat does the display for both keymasters and moderators
In reply to: ADD custom HTML in keymaster replyok, sorry for delay – putting in ‘bumps’ tends to not get you help as many of us work on ‘topics with no replies’ and you have replies 🙂
Put the following in your functions file
function rew_role_show () { $displayed_user = bbp_get_reply_author_id() ; $role = bbp_get_user_role( $displayed_user); if ( bbp_is_user_keymaster($displayed_user) ||$role == 'bbp_moderator') { echo '<li>' ; echo 'I im in supporting group'; echo '</li>' ; } } add_action ('bbp_theme_after_reply_author_details', 'rew_role_show') ;
In reply to: Remove bbPress forum profile URL linkjust tested and
add_filter( 'bbp_get_author_link', 'remove_author_links', 10, 2); add_filter( 'bbp_get_reply_author_link', 'remove_author_links', 10, 2); add_filter( 'bbp_get_topic_author_link', 'remove_author_links', 10, 2); function remove_author_links($author_link, $args) { $author_link = preg_replace(array('{<a[^>]*>}','{}'), array(" "), $author_link); return $author_link; } add_filter ('bbp_before_get_author_link_parse_args' , 'rew_remove_avatar' ) ; add_filter ('bbp_before_get_reply_author_link_parse_args' , 'rew_remove_avatar' ) ; add_filter ('bbp_before_get_topic_author_link_parse_args' , 'rew_remove_avatar' ) ; function rew_remove_avatar ($args) { $args['type'] = 'name' ; return $args ; }
seems to do what is required
In reply to: Add forum description to forums indexCan you give us a screen shot of IE and one of safari – just saves me loading this code (so I can help others as well as you) , so I can quickly see the difference
In reply to: Remove bbPress forum profile URL linksorry this support forum is manned by volunteers so we do this in our spare time and for free.
I presume you got this code from
http://www.digitspeak.com/blogging/wordpress/remove-bbpress-forum-profile-url-link/
when you say
the avatar reappears which i managed to get rid of – is there another workaround?
can you explain a bit more about
i managed to get rid of
what did you do?
In reply to: Main Forum Page and short codesok, you’re stating stuff that I’m finding hard to visualise/understand, and adding further info which again is not clear.
It’s not that you are not trying to explain, it’s just that as I can’t see your site, and issues with themes, plugins, and servers can be many and varied, there’s not a quick ‘do this’ answer.
de-installing and re-installing rarely fixes 🙂
So as I can’t see your site to start with lets eliminate theme and plugins
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Come back with the results – If that finds a fault it doesn’t mean you can’t use that theme or that plugin, just that we know where the issue is.
If that doesn’t fix try
Dashboard>settings>permalinks and just click save – you don’t need to change anything – that just re-sets the links and sometimes fixes issues.
If not then also let us know your forums slug dashboard>settings>forums and look for the forums root slug.
Also let us know your permalink setting Dashboard>settings>permalinks
In reply to: Main Forum Page and short codesneed a link to your site to help further
In reply to: Stop Auto Converting Text Url into Hyperlinked UrlGreat – glad you’re fixed !
In reply to: How to make forum visible only for usersif you get the remove filter working in the other post you could have it ‘removed’ as default and then add a conditional filter
e.g. if users has posted xx topics then {
add_filter( ‘bbp_get_reply_content’, ‘bbp_make_clickable’, 10 );
add_filter( ‘bbp_get_topic_content’, ‘bbp_make_clickable’, 10 );
}but you’d need to code that yourself as I’m time strapped at the moment