Forum Replies Created
-
In reply to: Find an delete users without topic and or replies
Diana, maybe this link helps you. https://wpengine.com/support/run-query-phpmyadmin/
In bbpress, topics and replies are kept in wp_posts table, so the above SQL statement lists all users with no replies and no topics. The second part of the statement checks the wp_comments table. Since if a user has no replies & topics in the forum but has a wordpress comment, the user will not be listed, and vice versa.
Please first also check your table prefix, the SQL statement is for: wp_
If you still have problems, you can contact me via move2media.com
In reply to: Find an delete users without topic and or repliesHi Diana,
you can get this info from mysql DB in case you have access: (ex. via phpmyadmin)
SELECT user_login FROM wp_users WHERE id not in (SELECT DISTINCT post_author FROM wp_posts) AND id not in (SELECT DISTINCT user_id FROM wp_comments) ORDER BY user_registered ASC;
You need to change wp_ if you have another prefix for your mysql tables.
After you’ve checked the list, you can change the sql statement and DELETE.
I hope this helps.
In reply to: Making the 2nd language forumOk, I understand. In case you are interested, I can send you my link, where I use 3 different languages for my forums.
In reply to: Making the 2nd language forumYou can try also wpml plugin.
It looks like wordpress embed takes your thumbnail picture size to show which is 150 x 84 pixels. This obviously too small.
In reply to: Shortcodes not working (wp-poll)Shortcodes are not allowed in bbpress post as default. You need to check your code/plugin which allows shortcodes in bbpress posts, there might be the problem.
In reply to: Confirmation email formDid you check wp-content/plugins/profile-builder/translation/
or /wp-content/languages/plugins/ ?
In reply to: Confirmation email formThis is probably not bbpress related. Are you using profile builder or some other plugin?
In reply to: latest bbpress 2.6.6bbpress 2.6.6 is a minor release.
I think you need to do some debugging in your test environment. Which DB queries are slow etc …?
Here is the list of changes in 2.6.6
https://bbpress.trac.wordpress.org/query?group=status&milestone=2.6.6
In reply to: Dumb questionYou can use normal html code to insert a picture.
<img src="..." />
In reply to: Report a postGD bbpress toolbox pro has this feature.
But if you are searching something free, there are some old plugins like this, but I don’t know if it still works.
In reply to: No new topic button showingIn deafult installation you have a create topic form , not a button. (like this forum)
The Link you provided is an author page. So you wont see the form.
In reply to: How to move postings to another ForumA reply is connected to a Topic and a Topic is connected to a Forum.
Reply -> Topic -> Forum
So, if you want a topic to be moved to another forum, it is possible. (As I explained in my previous posts.)
If you want a reply to be moved to another topic, it’s also possible.
But you cannot move a reply to another forum because a reply is connected to a topic. You need to move the topic or assign reply to another topic in the destination forum.
In reply to: How to move postings to another ForumThe same way, you can try to change the topic id in the replies wp backend.
But probably, this is not what you want.
In reply to: How to move postings to another ForumDid you try to change the topic’s forum in the wp topic’s backend?
I think you need to make this change in your attachment plugin if lightbox is not supported- Find output line of the image and add to the url: rel = “prettyPhoto”.
In reply to: Private contacts🙂
In reply to: Private contactsI’ve seen this one, but did not try it yet.
In reply to: how is a topic related to its category in databaseYes. This question is wp related.
In reply to: how is a topic related to its category in databaseHi,
Categories are like parent forums in DB and have post_type “forum” in wp_posts table. The difference is a category has _bbp_forum_type “category” in wp_postmeta table.
Are you searching a way to display the category of a topic?
In reply to: Thank you bbPress <3@defiance12 : Your forum looks great.
Many other forum softwares we’ve tried have hundreds of features we do not need. Bbpress is lightweight and easy to use. So a big thank you from me to the community and team too.
We did also a lot of customizations and shaped bbpress for our leading turkish business directory.
Our forum: https://www.turk5.com/forum/
In reply to: Error messages are out of sightworks like a charm, thanks Robin.
In reply to: cannot edit, delete or close a topicForum Settings -> Editing -> Allow users to edit their content for ___ minutes after posting.
(if checked, setting to “0 minutes” allows editing forever.)Other than this, I am not aware of any possibility that users can delete their posts or topics.
In reply to: notifcation: “bbp_new_reply” without hyperlinkCan you share link of your website please
In reply to: Generate Password Issue WP 5.6Hide and Cancel buttons are visible on page load. Is this a custom coding?