Forum Replies Created
-
In reply to: SMF Import Help Needed
Oh okay, the genesis extend plugin should be fine as it really only modifies layout styling for bbPress pages with the Genesis theme. You can try deactivating all but bbPress and the genesis extend plugin.
As for mods on your SMF forum, I am not entirely sure. It might not matter on your SMF forum.
In reply to: bbPress ShortcodeWhat I posted is just some custom CSS.
Paste custom CSS in any of the following for it to work.
Child themes stylesheet
custom css plugin
bbpress stylesheet in a css folder in child themeIn reply to: Search function doesn’t work for anonymousWhen I tested it, it doesn’t have the extra added query
?action=bbp-search-request&bbp_search=”
like your site does.I also tested it with/without the forum root slug and it worked fine for me.
In reply to: SMF Import Help NeededIf that is what you meant by mods, then yes.
In reply to: new topic “Time out” issueWhat are the bbPress plugins you have on your site?? There has been some similar issues while using some specific plugins.
Also did the user see the issue message somewhere in the form like the flood control errors in bbPress or was it displayed in place of the whole site?? This issue could also be a connection time out error on your server.
https://codex.wordpress.org/Common_WordPress_Errors#Connection_Timed_Out
In reply to: SMF Import Help NeededIt might be best to deactivate any plugins except bbPress during the import process.
PLease post an image of what you are talking about exactly. I have an idea but I want to be 100% sure of what you are talking about.
In reply to: Search function doesn’t work for anonymousI cannot reproduce this issue on my site, incognito works fine for me.
I can definitely reproduce on your site though, incognito or not.
You first try using the forum root slug in Settings > Forums to see if that fixes anything.
In reply to: BBPress Login Widget ProblemWhat happens if you clear your cache??
In reply to: Add custom text fields to reply formThe information for adding new fields for topics could be helpful for adding fields to the reply form too. You may need to just change the word topic in any hooks used to reply, or just any word with topic with reply in the code.
If you are just adding a simple text box for the reply form you can look over this example.
add_action ( 'bbp_theme_before_reply_form_content', 'bbp_extra_reply_fields'); function bbp_extra_reply_fields() { $waffle = get_post_meta( bbp_get_reply_id(), 'bbp_waffles', true); $pancake = get_post_meta( bbp_get_reply_id(), 'bbp_pancakes', true); echo '<fieldset class="bbp-form">'; echo '<p><label for="bbp_waffles">Waffles</label><br>'; echo "<input type='text' name='bbp_waffles' value='".$waffle."'></p>"; echo '<p><label for="bbp_pancakes">Pancakes</label><br>'; echo "<input type='text' name='bbp_pancakes' value='".$pancake."'></p>"; echo '</fieldset>'; } add_action ( 'bbp_new_reply', 'bbp_save_extra_fields', 10, 1 ); add_action ( 'bbp_edit_reply', 'bbp_save_extra_fields', 10, 1 ); function bbp_save_extra_fields($reply_id) { if (isset($_POST) && $_POST['bbp_waffles']!='') update_post_meta( $reply_id, 'bbp_waffles', $_POST['bbp_waffles'] ); if (isset($_POST) && $_POST['bbp_pancakes']!='') update_post_meta( $reply_id, 'bbp_pancakes', $_POST['bbp_pancakes'] ); } add_action('bbp_theme_after_reply_content', 'bbp_show_extra_fields'); function bbp_show_extra_fields() { $reply_id = bbp_get_reply_id(); $value1 = get_post_meta( $reply_id, 'bbp_waffles', true); $value2 = get_post_meta( $reply_id, 'bbp_pancakes', true); echo "Opinion on Waffles: ".$value1."<br>"; echo "Opinion on Pancakes: ".$value2."<br>"; }
In reply to: Notifications not workingor if a new user registered for the forum
Getting a notification for a new user registering is from the core of WordPress. If you do not seem to get any notification at all on your site, you may need to contact your host for help on this.
Again if you do not seem to get any or some of these below notifications you may need to contact your host.
New Comment / Comment Awaiting Moderation
New Trackback
New Pingback
Lost Password
New User Registration (For Admin)If you do get some, then we have to do more troubleshooting(which could possibly be a plugin issue) and some possible bug finding in bbPress.
In reply to: SMF Import Help NeededYou get the error from upgrading to 2.0.10??
Also I can see SMF’s changelog and it mentions this. This might have caused an issue, but it could possibly be a simple fix.
Fix for unsupported UTF8mb4 characters
Here is the current SMF.php importer in
/wp-content/plugins/bbpress/includes/admin/converters/SMF.php
You can take a look at my gist file/download it and open in an IDE editor.
This custom CSS would help with your line-height issue.
#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author { line-height: 2em; }
Glad you fixed your issue. 🙂
In reply to: I cannot display “bbp-topic-form” new-topic-0You cannot see the topic form when logged in??
Do you see any notices that show in the topic forms place??
You can try to see if there is a theme/plugin issue first.
In reply to: bbPress ShortcodeTry this custom CSS to see if it would help make your forums full width.
@media and (min-width: 992px) { .bbpress .col-md-8 { width: 100%; } }
Use this to completely remove the sidebar with CSS.
@media and (min-width: 992px) { .bbpress .col-md-4 { width: 0; display: none; } }
I think admins/keymasters should have full control over deleting any kind of topics. If you need some notice to popup or something similar to notify you that the topic you are about to delete has replies, you might need to hire a developer to custom develop this for you.
a. Stop All Notifications for this Topic
The user can just unsubscribe from the topic either from their profile or visiting the topic again.
b. Provide one Daily Notification with all Comments for this Topic
c. Provide one Weekly Notification with all Comments for this TopicFor a daily digest I guess you could use this plugin, but it might not be exactly what you are looking for, and users have reported the plugin not functioning properly. You may need to hire a developer for users to get a daily digest of a specific topic.
I think this is somewhat of a server issue. See if flushing your permalinks would help.
https://wordpress.org/support/topic/an-error-occurred-while-processing-this-directive-version-342
In reply to: add a "Featured Image" to a forum@goldlux does this work?? you of course need a way to set the featured image of a topic though.
add_post_type_support('topic', array('thumbnail')); function ks_topic_icons() { if ( 'topic' == get_post_type() ) { global $post; if ( has_post_thumbnail($post->ID) ) echo get_the_post_thumbnail($post->ID,'thumbnail',array('class' => 'alignleft topic-icon')); } } add_action('bbp_theme_before_topic_title','ks_topic_icons');
In reply to: Topic Title on Forum IndexI can tell that it looks like that site is using this user created theme, and it might be useful to look at using it.
In reply to: Forums not send out reply emailsBCC could have some issues on some servers, usually installing this plugin will help.
https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/
In reply to: Topics and replys exists and dont at the same time!I bet you could find another similar theme, but if you want you could hire a developer to fix any issues for you.
Its weird that you are getting this, bbPress and BuddyPress should work fine in most permalink structures (not all), but usually pretty permalinks and the default permalinks structure should work fine.
You did not try to edit any of the core plugins to try to fix it right??
Also you didn’t try to modify the htaccess file in WordPress unless you knew what you were doing??
Do you have a multisite installation??I am making sure this isn’t a user created issue.
In reply to: Topics and replys exists and dont at the same time!You can always try a new theme with bbPress. Also you can use Ultimate member with bbPress, although there is a paid addon from them for the integration.
You can use BuddyPress (instead of Ultimate Member) with bbPress and the BuddyBoss theme, it is always a good combo.