Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,126 through 8,150 (of 14,219 total)
  • @robin-w

    Moderator

    given this is a paid theme that claims to protect your site, it is really one to raise with them.

    I don’t have their plugin to be able to test

    In reply to: Threading not working

    @robin-w

    Moderator

    no problem

    @robin-w

    Moderator

    This should work

    add_filter( 'bbp_after_get_the_content_parse_args', 'rew_disable_text_editor' );
    
    //editor bbpress
    function rew_disable_text_editor( $args = array() ) {
    	$args['tinymce'] = true;
    	$args['quicktags'] = false;
    	if( current_user_can('administrator')) $args['quicktags'] = true;
    	return $args;
    }

    add this to your functions file

    @robin-w

    Moderator

    ok, try this, if this fails I will load it to my test site and get it right for you

    add_action ('bbp_theme_after_reply_author_admin_details', 'rew_add_email') ;
    
    function rew_add_email () {
    	$email = bbp_get_author_email (bbp_get_reply_id () ) ;
    	if (!empty ($email))
    		echo '<p>'.$email ;
    }

    @robin-w

    Moderator

    untested (as I’ve not got anonymous set on my test site, and I’m on another project) but this should work

    add_action ('bbp_theme_after_reply_author_admin_details', 'rew_add_email') ;
    
    function rew_add_email () {
    	$email = get_post_meta ( bbp_get_reply_id () , '_bbp_anonymous_email' ) ;
    	if (!empty ($email))
    		echo '<p>'.$email ;
    }

    Add this to your functions file.

    This will put the email after the ip address on anonymous topics and replies for admins only

    If it doesn’t work come back and I’ll do some testing

    @robin-w

    Moderator

    ok, do you know how to add code to your functions file if I give you some

    @robin-w

    Moderator

    From memory the email address is shown to Keymasters only, and appears after their name in topics and replies.

    If that is not happening for you, then come back, and I’ll take a look

    @robin-w

    Moderator

    do you know what you did to enable the visual editor – just changes how I give you the solution

    @robin-w

    Moderator

    ok, the forum roles are what you are looking at, and these are set on first login, so the users you have set up have not yet logged in.

    I am still trying to work out what your exact problem is now – can you state in a paragraph what is still wrong

    @robin-w

    Moderator

    can you just confirm that the link at the very start of this thread, which now shows

    ‘This forum contains 3 topics…’ etc but then says ‘Oh bother! No topics were found here!’ shows 3 topics when logged in as a participant?

    @robin-w

    Moderator

    Great – glad you are fixed !

    @robin-w

    Moderator
    add_action( 'bbp_template_before_forums_index' , 'rew_shortcode' ) ;
    add_action( 'bbp_template_before_topics_loop' , 'rew_shortcode' ) ;
    
    function rew_shortcode() {
    	echo '<div class="social_login" >' ;
    	echo '<br>' ;
    	echo 'Inicia sesión con su cuenta de redes sociales y participa en el foro' ;
    	echo '</br><br>' ;
     	echo do_shortcode('[wordpress_social_login]'); 
    	echo '</br>' ;
    	echo '</div>' ;
     }

    @robin-w

    Moderator

    great – glad you are fixed !

    @robin-w

    Moderator

    bbpress needs a full wordpress installation and wordpress theme.

    so to the extent that you can run a separate site with just wordpress, a theme and bbpress, then yes, but in the sense of having a main site with wordpress and a theme and just the forums on a subdonmain then no.

    @robin-w

    Moderator

    bbpress ends notifications using a bulk email address of noreply@domain.com and bcc’s in the subscribers of that forum

    so an email might be

    to : noreply@domain.com
    bcc : jon@abc.co, fred@defd.com, george@hhd.com

    I suspect that you host provider/email account is forwarding this to you as admin.

    Probably either talk to your host provider, use this plugin, or add the noreply@domain.com
    address to your spam/blocked lust so that you don’t see them.

    AsynCRONous bbPress Subscriptions

    @robin-w

    Moderator

    Pascals’ bbp toolkit has an option for you to do that.

    bbP Toolkit

    once installed and activated go to dashboard>forums>all forums and if you hover over a forum there is a subscription option, which includes a ‘tick all’ to let’s you subscribe current users.

    an option in dashboard>tools>bbp toolkit>subscriptions allows you to auto subscribe new users as well.

    In reply to: Small template issues

    @robin-w

    Moderator

    great – glad you are fixed !

    @robin-w

    Moderator

    add this to your theme’s functions file

    add_action( 'bbp_template_before_forums_index' , 'rew_shortcode' ) ;
    add_action( 'bbp_template_before_topics_loop' , 'rew_shortcode' ) ;
    
    function rew_shortcode() {
    	echo '<div class="social_login" >' ;
    	echo '<br>' ;
     	echo do_shortcode('[wordpress_social_login]'); 
    	echo '</br>' ;
    	echo '</div>' ;
     }

    It may not be perfect, but without seeing its effect on your theme, I can’t say, so come back when it is in if it needs tidying up

    @robin-w

    Moderator

    contact me via my website

    http://www.rewweb.co.uk

    @robin-w

    Moderator

    ok, I see you also sensibly posted on the buddypress forum as well.

    I suspect they’re better placed to work out a solution, but if you get nothing back in a week, bump this topic and I’ll try and find the buddypress hook and see how easy it is to overwrite.

    No promises 🙂

    @robin-w

    Moderator

    Obviously you are very quotable !!

    From a quick goggle one or both of these might work

    1. add this to your functions file

    add_filter( 'bbp_find_mentions', '__return_false' );
    

    If that doesn’t work or you are being mentioned in buddypress as well

    2. this plugin whilst old probably still works

    BuddyPress No Mentions

    @robin-w

    Moderator

    ok, can you give me the social widget shortcode you want to use

    @robin-w

    Moderator

    it is doable, but you would

    1. need to find a forms plugin that has a pre-submission or post submission hook
    2. find someone to add the code to create a topic from that hook.

    I’ve done the pre-submission from gravity forms, but someone else did the form, and I just did the create topic bit.

    In reply to: Threading not working

    @robin-w

    Moderator

    definitely not what I get.

    I’m tied up on a project at the moment which requires me not to have threading on my test site, so it could be a few days before I look further.

    However contact me via my website and when I get a chance I’ll take a quick look at your site

    http://www.rewweb.co.uk

    @robin-w

    Moderator

    ok, so if you say the forum is public, but hidden in buddypress, then we are on basic fault finding.

    so as a test

    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.

    I’d start with buddypress. You are just deactivating as a test.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

Viewing 25 replies - 8,126 through 8,150 (of 14,219 total)