Forum Replies Created
-
In reply to: Auto video embed – not working with HTTPS
Okay great you found the issue. Can you tell me what plugin caused the issue, just so I can keep track of these issues if they arise again from another user.
In reply to: Some startup help in designing my own theme?Download this file and edit it to change the word Freshness. Make sure to copy the file in a folder called bbpress in your child theme.
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
Or try this that might help get the “by” and category layout. You should be able to copy all the folders in your child theme.
In reply to: [bbp-single-forum] won’t workDon’t change the root settings in bbPress to be that page and it should work.
If you only have one forum, make it where the Forum root should show Topics by Freshness in Settings > Forums, then you can just leave it how it is without an additional page.
In reply to: Subscriptions not working@andyrushtonprogramming go to your forum profile on your website, I was just using the one on bbpress.org just as an example.
It should be something like
yoursite.com/forums/profile/username/subscriptions
With “yoursite.com” being your actual site url, and “username” being your username. You can easily access your profile by hitting your author link in your reply.
If you have BuddyPress active, the bbPress forum profile will merge into BuddyPress, and anything in the bbPress should be under a menu item on your profile named Forums.
In reply to: Visibility and login issuesHuh, weird?? Glad you … or god resolved your own issue though. 🙂
In reply to: How to get topic ID by reply ID ?Does this help any?
bbp_get_reply_topic_id()
In reply to: How can I change voices and repliescopy
loop-topics.php
from the bbpress plugin into your child theme in a folder called bbpress and edit these lines.<li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
You can change it like so.
<li class="bbp-topic-voice-count"><?php _e( 'Participants', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Comments', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
In reply to: forum link in adminSorry I took a much needed break yesterday.
Well I do not see the forums anymore.
If you have a test site I can try to figure out what is causing the issue myself.
In reply to: Participants can´t see topicsI took a break yesterday sorry.
Have you tried some troubleshooting? It may be related to cache, a theme, a plugin conflict, or if you made your forums Hidden.
In reply to: Subscriptions not workingbbPress does not add a subscriptions menu item in the backend of WordPress. There is this in your frontend forum profile though.
https://bbpress.org/forums/profile/andyrushtonprogramming/subscriptions
In reply to: Can’t logout from WordPressWeird that the BuddyPress widget works fine. You might want to deactivate everything but bbPress to see if the issue persists and to test everything fresh. You might want to test the bbPress login widget also.
Does this PHP code snippet help anything when trying to logout with only bbPress activated?
add_filter( 'logout_url', 'my_logout_page', 10, 2 ); function my_logout_page( $logout_url, $redirect ) { $logout_url = str_replace('%3Floggedout%3Dtrue', '', $logout_url); return $logout_url; }
In reply to: Auto video embed – not working with HTTPSIt works fine when I tested it on my site.
You can try to test to see if works fine in a topic, reply, and a blog post to see if you get different results from each.
Try some troubleshooting to see if a plugin/theme functionality caused the issue.
If you acquired a ton of code snippets and placed it in your child theme check on that.
In reply to: Preventing “Participant” RoleSo the users gain the bbPress forum role of participant for each site they are viewing? Is there any forums on these other blogs, or is the forums just on a subsite?
In reply to: forum link in adminTry as much of the basic troubleshooting steps as you can, also try some of the additional solutions listed.
Some users have a plugin issue with this, while others it may be a theme, or it could be resolved using the repair tools.
THere is a guide linked in here about fixing some possible 404 errors too.
In reply to: Make all new users subscribed to all forumsThat might not be so great performence wise.
This topic has a nice function that might be useful though if you want to create something custom for yourself.
As an alternative there is the bbPress notify (no spam) plugin.
In reply to: small icon for sticky post and othersYes, it is PHP code mostly so that would go into a child themes functions.php file or into a plugin that can hold code snippets like functionality.
For any CSS listed you put that into your child themes style.css file or any other custom css plugin you may have.
The widget doesn’t really work by days. It displayed the recently published topics by default. If a topic is published twenty days ago and none were published until one was five minutes ago, those two topics are next to each other in the widget listing.
You can change it to display topics that have been posted last though.
To style the widget you can use the class
.widget_display_topics
THen you could do something like this.
.widget_display_topics .widget_display_topics li .widget_display_topics a
or add whatever additional classes are in the source code.
In reply to: small icon for sticky post and othersToward the bottom of #24 it mentions that icon fonts can work too.
In reply to: Allow guest to view forumNot my forum.
I think your theme author pretty much just took this and fused it with their theme.
https://github.com/syamilmj/Supportte
This theme (supportte) is really intended to be used as a theme for Envato authors that want a support forum also for their product.
The verification dialogue is there because the Aqua Verifier plugin is required for some instances of your bbPress forums. The plugin is to restrict access to only users who bought a product from you (best if you are an Envato theme author) and they need to input the purchase code of the product they purchased (from Envato) to have access to the forums.
https://github.com/syamilmj/Aqua-Verifier
There is no setting in bbPress that can modify this like I said, it is all in your theme and the Aqua Verifier plugin is required.
Link your theme author to this topic if you need to.
In reply to: Allow guest to view forumAny of the main bbPress settings are in Settings > Forums in the WordPress backend.
Does your forum look sort of like this?
In reply to: Display Unread PostsThat topic you linked to mentions about 2 unread posts plugins.
There is also about 4 more on the WordPress plugin repository.
In reply to: Possible to Subscribe to Tags?You can use RSS.
Like say if you go to
https://bbpress.org/forums/topic-tag/subscription/feed/
You can subscribe to that RSS feed.
In reply to: How do I remove the (0,0)I think this should do it. If it does not change the word before in the filter to after.
add_filter('bbp_before_list_forums_parse_args', 'ntwb_bbpress_list_forums' ); function ntwb_bbpress_list_forums() { $args['show_topic_count'] = false; $args['show_reply_count'] = false; return $args; }
In reply to: bbp_forum_pagination_links – alter the output?Does what is in this gist help any??
In reply to: Hide external links for guestWhat is posted in here might help you out, but I am not sure. Unless there is already a WordPress plugin that can do this, this might be considered custom development and you may need to hire a developer.
https://wordpress.org/support/topic/hide-external-links-for-guests