Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 901 through 925 (of 11,585 total)
  • Author
    Search Results
  • #218472
    Robin W
    Moderator

    works fine on my test site – I can only suggest it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #218449
    uksentinel
    Participant

    FYI _ – I spent months on this topic fiddling and testing and my layout is working well now, I ended up changing to a different theme, since then so much better from a BBPRESS perspective.

    For testing, try the https://themespiral.com/themes/timesnews/ theme as see if issue persists ?

    This post actually reminded me to try again the Forum Styling and is working well with no missing sub forums etc.;-)

    anhduc.bkhn
    Participant

    I just test, it worked on my new testing:

    
    WordPress version: 5.5.3
    WooCommerce version: 4.4.1
    
    On WP 5.5.3, It could call to bsp_test_email function ( includes/functions_email.php)
    
    On WP 5.6, It could not call to  bsp_test_email function ( includes/functions_email.php)
    
    #218409
    Robin W
    Moderator

    hmmm…can only suggest that you try the basic fault finding….

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #218356
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #218338
    Robin W
    Moderator

    @newest- ok, thanks for that.

    It works the other way around, you add a topic to a post, not a post to a topic.

    so when you publish or edit a wordpress post, you can attach a topic to it.

    I didn’t write the original plugin, and Gutenberg made it not work, so I have been given editing rights to try and fix it.

    so start by going to

    dashboard>settings>discussion and you will see topics for posts about half way down – here you can set up the default actions.

    Then as a test create a post.

    on the right hand side you should see Post and Block options, make sure you have clicked Post

    You should then see near the bottom either in the main but or in the sidebar a ‘Topics for Posts’ box, which will show the defaults.

    If you don’t see this (as Gutenberg unhelpfully tries to hide anything useful to the user) click the 3 vertical dots on the right hand side right of publish and the settings cog, at the bottom you will find ‘preferences’ and in that you will find the option to show the topics for posts under additional panels section at the bottom

    Sorry this is all horrible – it’s not me making it so I promise you ๐Ÿ™‚

    #218312
    ibnat
    Participant

    I agree with the original poster. the list of plugins leads to many outdated and unsuported so it may be good to add a filter for plugins that are usable for the latest version?

    For me the bbp style pack has been the most usefull along with (thankyou Robin!) ๐Ÿ™‚

    These are the plugins i have installed so far…

    bbP Signature
    bbp style pack
    Hide Admin Bar From Front End
    Image Upload for BBPress
    reCaptcha by BestWebSoft
    Site Kit by Google
    Smush
    Super RSS Reader
    WP Mail From II
    WP User Avatars
    Yoast SEO

    Im looking for………….

    Add smilies/emoticons to tinyMCE
    Upload of attachments such as sound files and video to play inside a post
    External Links to open in a new tab…

    Nice to meet you all ๐Ÿ™‚

    #218310
    pepdoca
    Participant

    Next Update Aft Feb 11, 2021.
    Having looked more into the WP post table, it turns out that the post_parent value has been associated with the forum id (fid) from MyBB and as such the importer converts each of these unassociated reply entries as a new topic as it can’t create the reply association needed by BBPress that relies on replies post_parent being tied to the initial post/reply in a topic.
    Based on this latest understanding I expect I am going to have to go in to the MyBB post table and manually populate the replyto column as this is not likely something that can be resolved, based on my knowledge, by changes or updates to the converter. I am going to create a duplicate install of my latest MyBB installation and test this process to see if I am correct.

    #218302
    Robin W
    Moderator

    just had a quick look

    this should get you close, totally untested !!

    <?php $args = array( 'post_type' => 'topic', 'post_parent' => bbp_get_forum_id() ); 
    $loop = new WP_Query( $args );
    //get the current topic id or maybe depending in where you are putting this - bbp_get_reply_topic_id or bbp_get_reply_id()
    $topic_id = bbp_get_topic_id() ;
    while ( $loop->have_posts() ) : $loop->the_post(); 
    	$cur_id = get_the_ID();
    	if ($cur == $topic_id)  {
    		$prev = get_previous_post() ;
    		$prev_id = $prev->ID ;
    		$next = get_next_post();
    		$next_id = $next->ID ;
    	break ;
    	}
    endwhile;
    //so you now have $cur_id, $prev_id and $next_id
    //so create 3 lines
    if (!empty ($prev_id)) {
    	$permalink = get_permalink($prev_id) ;
    	$title = get_the_title ($prev_id) ;
    	echo '<a href="'.$permalink.'">'.$title.'</a>' ;
    }
    if (!empty ($cur_id)) {
    	$permalink = get_permalink($cur_id) ;
    	$title = get_the_title ($cur_id) ;
    	echo '<a href="'.$permalink.'">'.$title.'</a>' ;
    }
    if (!empty ($next_id)) {
    	$permalink = get_permalink($next_id) ;
    	$title = get_the_title ($next_id) ;
    	echo '<a href="'.$permalink.'">'.$title.'</a>' ;
    }
    ?>
    #218247
    flamuren
    Participant

    Many thanks Robin ๐Ÿ™‚ A stupid question before proceeding. Will my changes, payed css etc be saved in my theme if I am testing to switch to twentytwenty and back?

    #218246
    Robin W
    Moderator

    translated..

    with the latest update there is a bug.
    Each time the article is updated, a new post is created in the forum.

    The update only affected a function that runs on plugin activation – but I will take a look

    #218238
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #218153
    Robin W
    Moderator

    ok, we need to be sure what we are talking about.

    if you have :
    bbpress in dashboard>plugins
    you have template files in your child theme under a folder called bbpress

    then bbpress should be at the latest version
    but the template files can be older, they just pull in information to display, and if they are not breaking anything, then that is fine.

    #218114
    Robin W
    Moderator

    ok, just checking.

    If you have performed the tests above with just bbpress active and a default theme, then these should appear, I can only suggest that your site is somehow corrupt.

    do you get anything showing in

    dashboard>tools>forums
    or
    dashboard>settings>forums?

    #218107
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    anhduc.bkhn
    Participant

    My domain is forum.my_domain.com

    – Subscriptions Emails -> 1: I enter hello@my_domain.com
    This SMTP email work well.
    – Subscriptions Emails -> 9: I tested with check/uncheck ‘Send a test topic email’ option, but after clicking on ‘Send test email(s)’, I got nothing.

    anhduc.bkhn
    Participant

    Settings->bbp-style-pack->Subscriptions Emails -> 9. Send test email did not work

    Robin W
    Moderator

    so did the test email from Settings->bbp-style-pack->Subscriptions Emails -> 9. Send test email also work?

    anhduc.bkhn
    Participant

    yes, and it worked (I tested).

    #218039
    SirLouen
    Participant

    Hey @robin-w Tested but not working ๐Ÿ™
    What can be failing in your idea?

    This doesn’t work either ๐Ÿ™

    Remove NoFollow from BBPress Posts

    Will have to review the code and what’s going on with that filter nowadays

    #218036
    Robin W
    Moderator

    runs fine on my test sites

    Robin W
    Moderator

    does Easy WP SMTP have an email test option?

    anhduc.bkhn
    Participant

    My env:

    WooCommerce version: 4.9.0
    WordPress version: 5.6
    PHP version: 7.4.14
    MySQL version: 5.7.31
    
    Plugin:
    bbp style pack: 4.7.2
    bbPress: 2.6.6
    Easy WP SMTP: 1.4.4

    The feature “Notify me of follow-up replies via email” does not work on my site.
    I tested: go to Settings->bbp-style-pack->Subscriptions Emails -> 9. Send test email, click on ‘Send test email(s)’, but it still does not work.

    Pls guide me on this.

    #217951
    purityboy83
    Participant

    Hi

    I am receiving emails about new posts through the subscription feature.

    Space tags are checked in the message content.

    For example, I wrote a post like the image below.
    ===========================
    test

    test

    test
    ===========================

    Image Link : https://ibb.co/nMvRjwQ

    but received mail include to “& nbsp;”
    =================================
    test

    &nbsp ;

    test

    &nbsp ;

    test
    =================================

    Image Link : https://ibb.co/dWcQHVM

    I need help to solve the problem

    Best Regards,
    Hyunho

    #217887

    In reply to: delete account

    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

Viewing 25 results - 901 through 925 (of 11,585 total)
Skip to toolbar