Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,301 through 8,325 (of 14,323 total)
  • @robin-w

    Moderator

    Easiest way is to change the display using css. Add these to your theme custom css

    remove logo by

    .wp-embed-footer {
    	display: none !important;
    }

    and change the background via

    .wp-embed {
    	background: #000 !important;
    }

    @robin-w

    Moderator

    new forum? old forum stopped working? converted forum? just started happening? been happening for ages ? what have you upgraded?

    @robin-w

    Moderator

    you’ll need to explain what exactly you are doing – ie what do you mean by ‘product’ and how are you copying it and pasting it

    In reply to: bbpress topic problem

    @robin-w

    Moderator

    thanks for the update

    In reply to: GDPR EU legislation

    @robin-w

    Moderator

    see above – big difference between personal data, data used to identify and content – 3 different things.

    In reply to: bbpress topic problem

    @robin-w

    Moderator

    what do you mean by ‘NOT showing the topic contents’ – do you mean the topic displays, but the content area is blank, or that the whole topic doesn’t display?

    @robin-w

    Moderator

    just tried it using a simulator

    http://mobiletest.me/

    and yes it doesn’t appear.

    suggest you add it to the main menu

    lots of plugins that will do this eg

    Login Logout Register Menu

    @robin-w

    Moderator

    link to site please

    @robin-w

    Moderator

    not suggesting that this is a substitute for password reset – you need that capability as well.

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    can be lots of things

    go to

    dashboard>settings>bbp style pack> and tab ‘not working?’ and follow the guide in there

    @robin-w

    Moderator

    the no follow is added at output, not on saving.

    so we need to see if the topic/reply is written by an admin or editor and then remove the filter that does the no-follow

    This coded is untested, but should work

    
    add_filter ('bbp_get_topic_content' , 'follow_topic_if_admin' , 10 , 2) ;
    
    function follow_topic_if_admin ($content, $topic_id) {
    	$user_id = bbp_get_topic_author_id( $topic_id ) ;
    	$user_meta=get_userdata($user_id);
    	$user_roles=$user_meta->roles;
    	$allowed_roles = array('editor', 'administrator');
    	if( array_intersect($allowed_roles, $user_roles ) ) { 
    		remove_filter( 'bbp_get_topic_content', 'bbp_rel_nofollow',   50   );
    	}
    return apply_filters( 'follow_topic_if_admin', $content, $topic_id );
    }
    
    add_filter ('bbp_get_reply_content' , 'follow_reply_if_admin' , 10 , 2) ;
    
    function follow_reply_if_admin ($content, $reply_id) {
    	$user_id = bbp_get_reply_author_id( $reply_id ) ;
    	$user_meta=get_userdata($user_id);
    	$user_roles=$user_meta->roles;
    	$allowed_roles = array('editor', 'administrator');
    	if( array_intersect($allowed_roles, $user_roles ) ) { 
    		remove_filter( 'bbp_get_reply_content', 'bbp_rel_nofollow',   50   );
    	}
    return apply_filters( 'follow_reply_if_admin', $content, $reply_id );
    }

    Add this to your functions file.

    Let me know if it works

    @robin-w

    Moderator

    however when I went to bbpress styler and that settings, they only have a login and register and no password reset.. and NO profile that I can see

    ‘register’ changes to profile if you are logged in – as you can have a profile if you are not logged in, and you wouldn’t want to register if you are logged in !!

    and from profile you get password reset

    @robin-w

    Moderator

    1.404 issue

    The link looks good, suggest you try

    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 twentyfifteen, and see if this fixes.

    Then come back

    2.

    I would like to run the bbpress forums without BuddyPress, if possible. Is there a solution to this issue?

    yes bbpress runs quite happily on its own – my bbpress sites run without buddypress.

    3.

    An engaging business community giving credit to people who take the time to submit comprehensive organizational case studies

    beyond ‘support desk’ help I’m afraid – it is do-able but lots and lots of bespoke coding needed (The site is not a bbpress one) . My style pack would help in getting a nicer look

    bbp style pack

    In reply to: Visual pbs ?

    @robin-w

    Moderator

    1. I don’t think I can’t help you further
    4. this is theme related and will need css to fix beyond help here – sorry
    5. probably theme related – again I can’t really help

    @robin-w

    Moderator

    install Pascal’s bbp toolkit

    bbP Toolkit

    once activated go to

    dashboard>tools>bbp toolkit>subscriptions and you can select to automatically subscribe new users to forums

    @robin-w

    Moderator

    great – glad you are fixed !

    @robin-w

    Moderator

    In the UK – they are called ‘Gloucester Old Spots’ but have Chinese in them from many centuries back !

    In reply to: register problem

    @robin-w

    Moderator

    ok, I’d talk to your hosting service – this is not normal wordpress behaviour

    In reply to: register problem

    @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 twentyfifteen, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    bbp toolkit has some subscription stuff, or ask either of the plugin supprt above if their plugins can be modified to do this.

    @robin-w

    Moderator

    great – glad you are fixed !

    @robin-w

    Moderator

    simplest way would be to

    create a page with a permalink of ‘forums’ (assuming that is what your forums are called in dashboard>settings>forums>forum root slug>forum root)

    but with a title of whatever you want the forum page to be called

    and just put this shortcode in it

    [bbp-forum-index]

    That should work

    @robin-w

    Moderator

    install

    bbp style pack

    Once activated, go to

    dashboard>settings>bbp style pack>forum templates and select Alternate Forum template 1

    This will then display as you wish

    In reply to: Visual pbs ?

    @robin-w

    Moderator

    From @matevoun

    Then, now :

    1/ I think this is because i’ve installed bbPress Enable TinyMCE Visual Tab plugin, but i need this for uploading new media… ๐Ÿ™

    2/ Yes, tell me what can i do… ๐Ÿ™‚

    3/ Done ! Thank you ! I’ve installed your plugin. ๐Ÿ˜‰

    4/ I think this is a too little for texte + avatar.

    How can i do now ?

    Hope to read you soon…

    1. As a test deactivate that plugin and see if it works without. If so re-enable and contact that plugins author

    2. for the forum list

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
    bbPress will now use this template instead of the original
    and you can amend this

    so change line 68
    <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>

    amend 14 to whatever size you want

    3. glad you like it

    4. without knowing exactly what you want, I cannot suggest css changes – I suspect we will not fix this one

Viewing 25 replies - 8,301 through 8,325 (of 14,323 total)