Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 11,376 through 11,400 (of 14,146 total)
  • @robin-w

    Moderator

    not sure what you mean by ‘slide’ – can you explain further?

    @robin-w

    Moderator

    since bbpress uses wordpress registration this is really a wordpress issue

    In wordpress you should just disable ‘anyone can register’

    In reply to: Searching

    @robin-w

    Moderator

    It 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

    @robin-w

    Moderator

    no problem, glad you’re fixed !

    @robin-w

    Moderator

    ok 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' );
    

    Functions files and child themes – explained !

    @robin-w

    Moderator

    It 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

    @robin-w

    Moderator

    sorry am tied up elsewhere, but will come back in the next day or so

    @robin-w

    Moderator

    Not sure I understand the question – please expand with a link or an example

    @robin-w

    Moderator

    No problem !

    @robin-w

    Moderator

    Do 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

    @robin-w

    Moderator

    Thought 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 🙂

    @robin-w

    Moderator

    great – glad it worked.

    I’ll come back on favourite/subscribe later !

    In reply to: Hidden Forum Group

    @robin-w

    Moderator

    Can you re=phrase your question as I don’t understand what you wish to achieve

    @robin-w

    Moderator

    Many 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.

    @robin-w

    Moderator

    no problem – glad you’re fixed !

    @robin-w

    Moderator

    That does the display for both keymasters and moderators

    @robin-w

    Moderator

    ok, 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') ;
    	
    

    Functions files and child themes – explained !

    @robin-w

    Moderator

    just 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

    @robin-w

    Moderator

    Can 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

    @robin-w

    Moderator

    sorry 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?

    @robin-w

    Moderator

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

    @robin-w

    Moderator

    need a link to your site to help further

    @robin-w

    Moderator

    Great – glad you’re fixed !

    @robin-w

    Moderator

    @robin-w

    Moderator

    if 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

Viewing 25 replies - 11,376 through 11,400 (of 14,146 total)