Search Results for 'test'
-
AuthorSearch Results
-
February 17, 2021 at 11:19 am #218472
In reply to: new topic occur error on PHP8
Robin W
Moderatorworks 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
Then come back
February 17, 2021 at 5:57 am #218449In reply to: BBPRESS not showing all Sub Forums
uksentinel
ParticipantFYI _ – 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.;-)
February 17, 2021 at 4:37 am #218430anhduc.bkhn
ParticipantI 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)
February 16, 2021 at 10:34 am #218409In reply to: Links being stripped in posts
Robin W
Moderatorhmmm…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
February 13, 2021 at 6:18 am #218356In reply to: Cant Customise BB Press using BBp style pack
Robin W
Moderatorit 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
Then come back
February 12, 2021 at 11:09 am #218338In reply to: bbPress Topics for Posts comment
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 ๐
February 11, 2021 at 6:45 pm #218312ibnat
ParticipantI 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 SEOIm 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 ๐
February 11, 2021 at 4:16 pm #218310In reply to: MyBB 1.8.22 Import/convert to BBpress
pepdoca
ParticipantNext 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.February 11, 2021 at 1:14 pm #218302Robin W
Moderatorjust 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>' ; } ?>
February 9, 2021 at 5:01 pm #218247In reply to: “topics started” & “replies created” not working
flamuren
ParticipantMany 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?
February 9, 2021 at 2:56 pm #218246In reply to: bbPress Topics for Posts comment
Robin W
Moderatortranslated..
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
February 9, 2021 at 11:46 am #218238In reply to: “topics started” & “replies created” not working
Robin W
Moderatorit 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
Then come back
February 7, 2021 at 5:36 am #218153In reply to: Index page with categories and forums
Robin W
Moderatorok, 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 bbpressthen 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.February 5, 2021 at 11:48 am #218114In reply to: forum tab does not appear on wordpress desktop
Robin W
Moderatorok, 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?February 5, 2021 at 6:47 am #218107In reply to: forum tab does not appear on wordpress desktop
Robin W
Moderatorit 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
Then come back
February 5, 2021 at 3:36 am #218089anhduc.bkhn
ParticipantMy 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.February 3, 2021 at 10:54 am #218057anhduc.bkhn
ParticipantSettings->bbp-style-pack->Subscriptions Emails -> 9. Send test email did not work
February 3, 2021 at 4:56 am #218052Robin W
Moderatorso did the test email from Settings->bbp-style-pack->Subscriptions Emails -> 9. Send test email also work?
February 2, 2021 at 9:41 pm #218041anhduc.bkhn
Participantyes, and it worked (I tested).
February 2, 2021 at 5:01 pm #218039In reply to: Remove rel=โnofollowโ for admin only?
SirLouen
ParticipantHey @robin-w Tested but not working ๐
What can be failing in your idea?This doesn’t work either ๐
Will have to review the code and what’s going on with that filter nowadays
February 2, 2021 at 12:39 pm #218036In reply to: How is bbPress working with 5.6
Robin W
Moderatorruns fine on my test sites
February 2, 2021 at 6:10 am #218034Robin W
Moderatordoes Easy WP SMTP have an email test option?
February 2, 2021 at 5:51 am #218032anhduc.bkhn
ParticipantMy 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.
January 28, 2021 at 9:42 pm #217951Topic: Space characters appear in subscription mail
in forum Troubleshootingpurityboy83
ParticipantHi
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.
===========================
testtest
test
===========================Image Link : https://ibb.co/nMvRjwQ
but received mail include to “& nbsp;”
=================================
test  ;
test
  ;
test
=================================Image Link : https://ibb.co/dWcQHVM
I need help to solve the problem
Best Regards,
HyunhoJanuary 28, 2021 at 5:18 am #217887In reply to: delete account
Robin W
Moderatorit 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
Then come back
-
AuthorSearch Results