Search Results for '"wordpress"'
-
AuthorSearch Results
-
April 19, 2022 at 8:11 am #228747
In reply to: Duplicate Topic Detected (Not Working)
Viswa RJ
ParticipantHi,
As said earlier, I have tried installing the bbpress in a demo wordpress domain. With bbPress, I installed and activated only
1. Advanced Editor Tools (previously TinyMCE Advanced),
2. Classic Editor,
3. Highlighting Code Blockplugins. Created sample forums with few topics. Later, I have created a username and logged in as a participant and tried to post the same topic and reply (Nothing changed). Topic got posted, it never shown any error such as Duplicate topic detected or Duplicate reply detected. At the end of the slug, it has added -2 and got posted as topic-name-2.
Please help me resolve this issue AEAP.
April 19, 2022 at 6:03 am #228746In reply to: missing bbpress navigation in wp-admin
Robin W
ModeratorKeymasters get to see forums, topics and replies in the backend, moderators see topcis and replies
you cannot change your own role.
Is there a ‘keymaster’ set?
only a keymaster can set a keymaster, so if no-one has keymaster you need to install this plugin
once activated go to
dashboard>settings>bbp style pack>bug fixes
and you will see the ability to set yourself up again.
Once done, you can decativate and delete the style pack plugin, or maybe use it’s great features 🙂
April 19, 2022 at 5:59 am #228745Topic: missing bbpress navigation in wp-admin
in forum Troubleshootingtrapsen
ParticipantHello,
I have a small problem: The links to bbpress are not displayed in the wordpress backend. I have already deactivated all plugins except for bbpress and also changed the theme but the problem persists.
I can also change the forum role for any member – except for the administrator. Does anyone have any idea why this might be?
best regards
April 18, 2022 at 11:58 am #228737In reply to: My bbPress forums have vanished from my website
Robin W
Moderatorwith bbppress you have wordpress roles and bbpress roles.
since you are not seeing them, and given that you say the bbpress plugin is installed and ACTIVE, then you need to do the instructions above
April 18, 2022 at 10:38 am #228735In reply to: My bbPress forums have vanished from my website
Robin W
Moderatorok, I suspect that your role has lost keymaster rights.
go to
dashboard>users>all users and see if anyone has keymaster. If so get them to reset you to keymaster.
If no-one has, then install
once activated go to
dashboard>settings>bbp style pack>bug fixes
and you will see the ability to set yourself up again.
Once done, you can decativate and delete the style pack plugin, or maybe use it’s great features 🙂
April 18, 2022 at 8:57 am #228731Topic: Search Result Formatting
in forum TroubleshootingBHruska
ParticipantMy WordPress theme (Mai-theme Success) seems to hijack the search result formatting when searching the forums. I can’t seem to figure out how to stop that.
Here’s a test site showing it:
https://wp-testing.hruskagroup.com/forums/searchforums/theme/
Ideas?
April 18, 2022 at 7:32 am #228728In reply to: BBPress for HUGE forums? Capable?
james-nickname-test
ParticipantWow, surprised to see this thread just died?
I am currently using Discourse for a community just starting: https://community.americanradioclub.com
It is a community of ham radio operators. I started the community on Discourse, and I really love the snappiness and power, scalability (I am on track for 150k members by end of year).
However, it lacks the social-network style features I would like from a bbpress + buddypress installation, which would also be nice because it would make my site fully wordpress for a more coherent user experience.
I wonder how everyone else’s experience went?
April 18, 2022 at 5:38 am #228725In reply to: Limit new posts per week per user?
Robin W
ModeratorThis code should do it
add_filter ('bbp_current_user_can_access_create_topic_form' , 'rew_only_one_topic', 10 , 1) ; add_filter( 'gettext', 'rew_change_text', 20, 3 ); function rew_only_one_topic ($retval) { //first check if they have access, only amend if they have if ($retval==true) { $user_id = wp_get_current_user()->ID; $role = bbp_get_user_role( $user_id ); if ($role == 'bbp_participant') { $last_posted = bbp_get_user_last_posted( $user_id ); if (time() <($last_posted + (60*60*24*31))) $retval = false ; } } return $retval ; } function rew_change_text($translated_text, $text, $domain ) { if ( $text == 'You cannot create new topics.') { $user_id = wp_get_current_user()->ID; $role = bbp_get_user_role( $user_id ); if ($role == 'bbp_participant') { $last_posted = bbp_get_user_last_posted( $user_id ); if (time() <($last_posted + (60*60*24*31))) { $translated_text = 'You cannot post a new topic - you have already posted a topic in the last month'; } } } return $translated_text; }The 60*60*24*31 is 60 seconds, 60 minutes, 24 hours, 31 days, so you can change this to whatever you want in both places.
and you can change $translated_text = ‘You cannot post a new topic – you have already posted a topic in the last month’ to whatever phrase in whatever language you want.
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
April 17, 2022 at 5:26 pm #228715In reply to: bbPress Topics for Posts comment
AdventureRidingNZ
ParticipantI just found this as well, though I haven’t delved into it.
https://wordpress.stackexchange.com/questions/135746/migrate-bbpress-content-to-posts
April 17, 2022 at 5:31 am #228711In reply to: bbPress Topics for Posts comment
AdventureRidingNZ
ParticipantThere are plugins for exporting BBpress data so maybe I could string together something with this
April 15, 2022 at 1:31 pm #228687In reply to: Photo enlargements
Robin W
Moderatornot tested, but possibly this
April 14, 2022 at 3:51 pm #228668In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Robin W
ModeratorI have updated my style pack to detect and let you use 2022.
once activated go to
dashboard>settings>bbp style pack>theme support.
There are lots of settings in this plugin to let you improve the look of bbpress.
April 13, 2022 at 3:54 pm #228652In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Robin W
ModeratorI should start by saying I am just a bbpress user who helps out here, I am not a bbpress author.
Twenty Twenty two is one of probably less than 6 themes that use the new ‘block theme’ way of building a theme. Indeed this is so new that the editor built to support it is still a ‘beta’ version.
My Personal view is that block themes are a solution to a problem that no-one has, and WordPress has lost it’s way.
But given that people including you will use this theme, I am trying to get bbpress to work with it.
I expect to release a new version of my bbpress style pack that will make this work in the next couple of days. I have a working prototype, albeit a basic version.
April 13, 2022 at 1:04 pm #228649In reply to: How do I make a login link?
sruddy
ParticipantHi Robin,
I’m making a little headway. I tried #1 and I didn’t like how it automatically added the user. I what to approve all new registrations as they come in. I saw no setting on how to get new users approved manually. Also maybe this is a wordpress question but I can’t find were to change the color of the register here link on the login page. I put an image over it and can’t see it. I see no place in the login customizer to fix it. Here is the link https://santarosaphotographicsociety.org/wp-login.phplast I put a forum link in the home page main menu, this is it. https://santarosaphotographicsociety.org/forums/ Will this link would prompt a login first then open the forums. If not how do I make that happen.
April 13, 2022 at 4:38 am #228645In reply to: combination buddypress/bbpress
carasse64
ParticipantHello Robin and Mike
I first asked to the buddydev team. They advised me to contact directly the author’s theme.
So, I contacted the BuddyX team (WBCom design). They answered me these customizations could be done but they had not scheduled to do them. They advised me to hire a developer.
we have to keep functionality-specific customization as minium as possible to follow WordPress.org standards.
(BuddyX answer)
You are right guys, I am going to post my questions in the BP forum. I hope I’ll be luckier than for my previous topics. Actually, I did not get any answer for my last topics in this forum. They are certainly fed up with all my questions 🙂
Thanks a lot Robin and Mike.
Have a good day (or night…)
FabienApril 11, 2022 at 1:52 pm #228572In reply to: How do I make a login link?
Robin W
Moderatorbbpress just uses WordPress registration and login.
so either :
1. You allow uses to register using dashboard>settings>discussion>anyone can register, bbpress will allocate the role set in dashboard>settings>forums>default role
2. you manually add uses (dashboard>users>add user) upon receipt of a form (using say a form plugin – https://www.isitwp.com/best-wordpress-contact-form-plugins/ – to set up whatever details you want which is then emailed to you) – you then then allocate any wp and bbpress role you wish, or none !
3. you use a registration plugin – there are lots – this article describes some https://kinsta.com/blog/wordpress-user-registration-plugins/
April 11, 2022 at 11:33 am #228571In reply to: How do I make a login link?
sruddy
ParticipantSo I guess I’m not understanding how this all works. The website is a photography club and is wordpress.org. I just added this bbPress forum plugin and have all the forums set up. I’m ready to test with two other people. I now need to have a place were the two others can register, I then want an email so I can review and approve them. How do i accomplish this? After that I think the login page with the shortcode provided by Robin W should work.
April 9, 2022 at 4:17 pm #228551In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Robin W
ModeratorI kicked this around for some time, but I cannot see how to get bbpress working with a block theme.
I have raised a ticket on trac.
April 8, 2022 at 4:50 pm #228543In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Robin W
ModeratorThis is all part of WordPress’s mission to make it’s software totally unusable.
It has been reported to the bbpress authors.
April 8, 2022 at 10:47 am #228523Topic: Duplicate Topic Detected (Not Working)
in forum Requests & FeedbackViswa RJ
ParticipantHi,
I have created a forum using bbPress and uploaded the ForumPress theme. I have not made changes to any core files. I have added 1 snippet to show Advanced TinyMCE Editor for all users in frontend. At first or after adding that snippet too, Whenever I post a duplicate content/topic, it shows as Duplicate Topic detected. But after WordPress Update to 5.9.3, it is not showing any error messages and accepting the duplicate topics, replies, etc.
I have tried all solutions from your forum and other websites, nothing helped. Please help me resolve this issue.
April 8, 2022 at 3:10 am #228508In reply to: Blank page in topic
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
April 7, 2022 at 8:06 am #228496In reply to: Forum design
Robin W
ModeratorThe theme here is in
Most of the widgets in here are also available in
April 5, 2022 at 8:23 am #228464In reply to: PHP warnings when creating a forum
Robin W
Moderatorhmmm…
Possibly a theme or plugin conflict
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
April 5, 2022 at 2:17 am #228454In reply to: site footer not under bottom for topic pages
user847
BlockedHi Harry here,
You need to visit this page to get solution of your problem.https://wordpress.org/support/topic/how-to-push-footer-to-bottom-of-page-without-covering-content/
April 4, 2022 at 12:56 pm #228449In reply to: Missing Date on Started by
Robin W
Moderatoruntested, but this should work
add_filter( 'bbp_get_topic_post_date', 'rew_date_only' , 20, 6) ; function rew_date_only ($result, $topic_id, $humanize, $gmt, $date, $time ){ $topic_id = bbp_get_topic_id( $topic_id ); // 4 days, 4 hours ago if ( ! empty( $humanize ) ) { $gmt_s = ! empty( $gmt ) ? 'G' : 'U'; $date = get_post_time( $gmt_s, $gmt, $topic_id ); $time = false; // For filter below $result = bbp_get_time_since( $date ); // August 4, 2012 at 2:37 pm } else { $date = get_post_time( get_option( 'date_format' ), $gmt, $topic_id, true ); $result = $date; } // Filter & return return apply_filters( 'rew_date_only', $result, $topic_id, $humanize, $gmt, $date, $time ); } }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
-
AuthorSearch Results