Search Results for '\"wordpress\"'
-
Search Results
-
I have installed bbPress plugin on my WordPress site. I just wanted to know if there is any moderator approval option is available. I want Topics and Replies get visible only when they are approved by Administrator.
Why can’t bbpress have it’s own table to store posts etc? This will speed up db queries when using post tracking etc.
bbpress is very barebone but not very powerfull. There are plugins that extend the functionality but because of bbpress architecture it will not scale well.
Everything is stored in postmeta which grow very large. I have hundred of thousands of posts and for every post there is 10 entries in the postmeta table.I think if bbpress can have a “normal” way of storing it’s information it will attract more users and more developers. Dedicated forum systems like Xenforo etc are superior but they are lacking everything else that you want to have on your site. There are bridges etc but it will never be the same.
There are other forums for wordpress like wpForo and Asgaros but they don’t really cut it at the moment.
Let’s bring bbPress alive by giving it a new fresh db table layout!!!
Greetings,
I am looking for the pro version of the plugin: https://wordpress.org/plugins/bbp-user-ranks-lite/ which allows the ability for me to have role based badges below certain members on my forums however both the author’s website and the codecanyon posts of this plugin have been disabled so I am unable to get this plugin, if anyone has a copy they can send me or somewhere I can buy it I will be greatful.
How can I code an activity stream that lists only the most recent post for each topic, not all recent posts (which can include many posts from the same topic) as the standard widget does?
I’m using bbPress 2.5.14, BuddyPress 3.20 and WordPress 4.9.8 on a local dev server so no public link to the site.
I’m trying to write a conditional statement to auto tag new topics based on forum.
This is what I have so far
add_action ( 'bbp_insert_topic', 'myprefix_assign_tag_to_post' , 10, 1 ); add_action ( 'bbp_new_topic', 'myprefix_assign_tag_to_post', 10, 1 ); add_action ( 'bbp_edit_topic', 'myprefix_assign_tag_to_post', 10, 1 ); function myprefix_assign_tag_to_post($topic_id) { if( bbp_is_forum ( '168' ) && bbp_current_user_can_publish_topics() ) { wp_set_post_terms( $topic_id, 'introductions', 'topic-tag', true ); } elseif( bbp_is_forum ( '1343' ) && bbp_current_user_can_publish_topics() ) { wp_set_post_terms( $topic_id, 'discovery', 'topic-tag', true ); } }
The problem is, this automatically tags the new topics with “Introductions” regardless of the forum. I tried replacing ‘bbp_is_forum’ with ‘bbp_is_single_forum’, and the same thing happens. I’ve tried replacing it with ‘bbp_is_forum_archive’ and nothing happens. I’ve even tried replacing the ID with slug, with and without the single quotes, trying it with just one IF statement, and I’m not getting the desired results.
I also tried using is_page, hoping it would be using the default WordPress call since it used in the functions.php for topics. No joy.
So, if someone could please tell me what I should be using instead of is_forum, is_single_forum, is_etc, that would be great.
Hi
I have a bbpress forum 2.6-rc-5 (WordPress 4.9.8, php 7.2)
Google does’t index topics and replyies 🙁
I moved content from another domain (phpbb2) – 3 months ago.I have 63k not indexed sites in Google console – condition: excluded
12k – excluded: Page scanned but not yet indexed
51k – excluded: Site detected – currently not indexedWTF with this script?
My forum here -> https://mojakosmetyczka.pl/forum/
Has anyone had a similar problem?
Thx, regards
PawelTopic: ArgumentCountError thrown
Hi,
i get the error
Too few arguments to function vvd_no_view_ip(), 2 passed in /home/sites/site64/web/wp-includes/class-wp-hook.php on line 286 and exactly 3 expected
.
Users can create topics and write comments in it but when i want to see the topc and get this errorRegards, Thomas
I used WordPress v4.9.8 and bbPress v2.5.14.
Hi there
WordPress 4.9.8
bbPress 2.5.14Sadly the URL is not able to be live at this time but I believe my question is actually more on the basic side of things.
When I register for an account on my website that uses bbPress all works well. I can login and subscribe to a forum. If someone creates a new topic in that forum I get a notification letting me know. However I’m noticing that if someone answers a topic in the forum I’m subscribed to I don’t get the notification.
I figured that if you’re subscribed to a Forum, that I would get notifications of replies on any topics in that forum. From what I can tell it looks like I only get a notification on new topic created.
Do I need to subscribe to the forum as well as all the topics if I want to be notified of anything happening under that forum?
Thanks,
TanyaThis morning, my site, thecardinalnation.com was presenting 500 errors to all visitors. After three hours with support from my hosting provider, HostGator, they were able to isolate the problem to the bbPress plugin, which is now disabled. Obviously, my forums are down, but the base site is again available.
HG Level 2 support provided the following, which they said indicates that bbPress is trying to pull from PHP 5.4, although the site is now on 7.0. (The site was on 5.4 to start the day, but it was upgraded to 7.0 as part of their trouble-shooting.) HG also said that the 500 error problem would remain even if we took PHP back to 5.4.
The site is current on all code:
Wordpress 4.9.8
bbPress 2.5.14[Tue Nov 13 10:30:27 2018] [error] [client 192.185.1.20] Failed loading /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ZendGuardLoader.so: /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ZendGuardLoader.so: undefined symbol: zval_used_for_init, referer: http://thecardinalnation.com/login/
I am not an IT professional, but will do my best to get any additional information as required. Thank you in advance.
Brian Walton
Topic: request help with issue.
I’m creating a wordpress site for the leader of a gaming guild, and the theme he selected doesn’t show up good for bbpress. I was hoping theres a way to access bbpress forums without going through wordpress theme
Hi there,
I want to do a test mailing in my staging area, to see if a new WP plugin works for BBpress. In order to do this, i want to change all emails to my personal email address for all that are subscribed to the forum (so i don’t accidentally send out mails to real users,(this has actually happened to me before)). The problem is that the WP user_email is found in the DB wp_users and the forum meta info is found in the DB wp_usermeta. What SQL statement would i use if i wanted to change the email of all bbpress “Participants” to “myemail@email.com”. I want to do something like:
UPDATE wp_users SET user_email = "myemail@email.com" WHERE wp_usermeta.meta_key = "participant";