Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 14,228 total)
  • @robin-w

    Moderator
    if (!is_admin() ) {
    add_filter( 'bbp_get_forum_content', 'rewst', 10 , 2 ) ;
    }
    function rewst ($content, $forum_id ){
    	if (!empty ($content)) $content= '<a class="bbp-forum-rew" href="'.bbp_get_forum_permalink($forum_id).'">'.$content.'</a>' ;
    return $content ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

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

    or use

    Code Snippets

    @robin-w

    Moderator

    link to an example, so I can see what template or function please

    @robin-w

    Moderator

    there are lots of causes that will show this error, many plugins load the bbpress text domain.

    If you are running buddypress, then you can stop a bbpress file from causing the error by the fixes above, or by using :

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bbPress bug fixes and go to

    Fix bbPress domain triggered early if Buddypress also active

    @robin-w

    Moderator

    ok, so bbpress will show before the site is published

    does bbpress show as active in
    dashboard>plugins>installed plugins
    do you have
    dashboard>settings>Forums showing

    @robin-w

    Moderator

    without further digging, the function

    echo get_the_post_thumbnail

    seems to support

    thumbnail
    medium
    large
    full

    so you can have for instance

    echo get_the_post_thumbnail($post->ID,'medium',array('class' => 'alignleft forum-icon'));
    echo get_the_post_thumbnail($post->ID,'large',array('class' => 'alignleft forum-icon'));

    you can also play with these settings – see

    https://www.elegantthemes.com/blog/tips-tricks/how-to-change-thumbnail-size-in-wordpress-and-why-you-want-to

    @robin-w

    Moderator

    which particular code did you use, please post the snippet here

    @robin-w

    Moderator

    so these topics came from where and how did you import them?

    I’d also suggest you try

    dashboard>tools>forums>repair forums and run them one at a time, this may well fix the issue

    @robin-w

    Moderator

    you need top take out the “!important” in the rule in your Customizr Child Home style.css line 2858

    to make it

    #bbpress-forums ul.odd, #bbpress-forums ul.even {
      background-color: #EFEFEF;
    }

    and then add this rule

    #bbpress-forums .super-sticky {
    	background-color: blue !important;
    }

    @robin-w

    Moderator
    function my_bbp_no_reply_email(){
        $email = 'no-reply@sitename.com'; // any email you want
        return $email;
    }
    add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

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

    or use

    Code Snippets

    @robin-w

    Moderator

    ok, it is listed as a bug for bbpress to fix, I am just a volunteer here,

    so if you want a fix in the meantime , install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bbPress Bug Fixes and select the relevant one (at/near the bottom)

    In reply to: Bug https url

    @robin-w

    Moderator

    sorry this is going nowhere

    In reply to: Bug https url

    @robin-w

    Moderator

    because they entered the full link!!!

    In reply to: Bug https url

    @robin-w

    Moderator

    I have no influence on what the core bbpress does.

    21% of websites are http

    In reply to: Bug https url

    @robin-w

    Moderator

    since it is you asking 🙂

    add_filter( 'bbp_make_clickable', 'rewst', 10 , 2 ) ;
    function rewst ($ret, $text ){
    	$ret = str_replace ('http://' , 'https://' , $ret);
    	return $ret ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

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

    or use

    Code Snippets

    In reply to: Bug https url

    @robin-w

    Moderator

    yes for the reasons stated above, ie the link will resolve to https if the site has ssl.

    Not every site is https

    that’s how the bbpress authors have decided it should work

    In reply to: Bug https url

    @robin-w

    Moderator

    yes as stated above, that is expected behavior for the reasons stated above

    @robin-w

    Moderator

    🙂

    In reply to: Bug https url

    @robin-w

    Moderator

    if you go to a site that is https using an http format, then it automatically loads the https version.

    if you go to a site that is http using an https format then it will come up with a not secure message

    it therefore makes sense is that if no ‘httpx’ is given, you default to the http which ensures it loads in both cases.

    if you only want to go to https sites, then enter the https in your link

    @robin-w

    Moderator

    This should do it

    .bbp-topics .sticky a.bbp-author-link span.bbp-author-avatar {
        display: none !important;
    }

    @robin-w

    Moderator

    The key word in their answer is ‘should’ – by which they mean that they do not intend to do it, and they think that each forum provider (in this case bbpress) ‘should’ do this – but free software only contains what the software authors want it to. From a small amount of looking at that article, I’d suggest that it would be 1-3 weeks work to provide a solution as either a google structured expert would need to learn bbpress or a bbpress expert would need to learn google structured, and not something that I have any interest in doing – sorry 🙁

    @robin-w

    Moderator

    what exactly did Yoast tell you?

    and yes I got your email, I will take a look at it shortly 🙂

    @robin-w

    Moderator

    I’m just a volunteer here – I don’t think this will get added to the core.

    so it will need code, and a plugin is just code with a wrapper.

    If you are concerned about performance, you should be using a caching plugin

    @robin-w

    Moderator

    Install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Order

    @robin-w

    Moderator

    If I said something about google, it was not in this context or with this understanding on specific structured data – I have little knowledge of google

    @robin-w

    Moderator

    I suspect not, but you’d need to get an expert on google stuff to say definitively.

Viewing 25 replies - 1 through 25 (of 14,228 total)