Topic tags arent shown on our topic posting pages, why?
Our forum: http://gameslopedy.com/forums/
Topic tags arent shown on our forum, why?
Published on October 30th, 2016 by gameslopedyBBpress script did not work when it is intalled via softaculus
Published on October 30th, 2016 by quyleHi friends,
I made an attempt to install BBpress script on my WP website
But a message sent from Server showed error after installation
Please help me on this.
Thanks
Topic content is not visible
Published on October 30th, 2016 by rohitmanglikHi,
In my website, content of all the topics got invisible.
For example, at https://edugorilla.com/forums/forum/exam-preparation-experience/ it shows both
-> This forum contains 3 topics, and was last updated by Rohit Manglik 1 week, 6 days ago.
-> Oh bother! No topics were found here!
I am not sure how to debug it further. Any leads please?
Translation of notifications to french
Published on October 30th, 2016 by zimmermann.cWith the
localization
plugin, text tranlation does not work: people still get the english text,
eg :
Hello!\n\nA new topic has been posted by [topic-author].\n\nTopic title: [topic-title]\nTopic url: [topic-url]\n\nTopic excerpt:\n[topic-excerpt]\n\nNotify message by bbPress Notifications
in addition, the Bbp extension (in that localization) says
Compatibility: Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.
Thanks for for helping me to find another way to get french texts
regards Charles
Forum topic replies in Caps only
Published on October 29th, 2016 by nome444Hello there! I’ve got an issue that i can’t seem to fix. Replies made to Threads/Topics are forced into Capital letters only. I can’t seem to figure out how to undo it.
As you can see in the screenshot, the difference between the author of the post and the guy replying to it. Everything is just forced into Capitals.
Is there any quick fix to this? Or are my files corrupt somewhere?
Show number of topics/posts in WP users admin page
Published on October 29th, 2016 by jrohrHi all,
since I am trying to weed out spambot generated ghost accounts, it would be convenient to have a column in WP’s users admin page /wp-admin/users.php which shows the number of posts for each user (and links to them), because on the site I am helping to maintain, there is a ton of spambot generated registrations. ReCaptcha has helped to reduce their number dramatically, but there are still some happening. If an account has made zero (approved) comments and zero (non-spam) posts, it is likely a spambot generated ghost account and can be deleted.
Does anyone know of any WP plugin that adds such a column?
Thanks very much in advance for your suggestions and comments!
How to Add Topic tags automatically?
Published on October 29th, 2016 by gameslopedyIs there a way to add topic tags automatically when the topic is posting?
Showing logged in on some pages, but logged out on others
Published on October 29th, 2016 by mummytobeHi, I’m not sure if I should be asking for help here, or over at Buddypress, so just let me know if I need to approach someone else.
I have downloaded Buddypress and BBpress to my site which is using X theme. It seemed to be working well until yesterday when I noticed a glitch. When I am logged in, and visit the various menu items on my page, some show me as being logged in, while others (mainly Home and Chat) show me as being logged out (when I’m actually logged in). Have you any ideas as to what might be going on here?
I created a tester user profile to test the site out, and the problem only seems to be arising on Safari. Firefox and Chrome seem to be working fine, and consistently show me as being logged in throughout the site.
Any help you might be able to offer would be much appreciated!
Using bbPress Version 2.5.10 and WordPress 4.6.1.
My site can be found at http://mummytobe.co.uk
Many thanks,
Catherine
BBPress Members page shows members from other subsites!
Published on October 29th, 2016 by SmileWPHello,
PRESTORY
I use BBPress on subsites, in a multisite install.
These subsites are unique, separate sites, and should *NOT* have access to each other’s sites–especially to BBPress member directories!
ISSUE
BBPress Members page shows members from other subsites!
These demonstrates that while each subsite is separate and unique the BBPress content is not separated nor unique and is instead shared across the entier multisite (nightmare).
TBD – This *may* also include subscription content; where a BBPress subscriber on unique and separate Subsite A, may subscribe to the Subsite A BBPress content but then also receive BBPress subscription content from other ostensibly unique and separate subsites (B, C, D…). TBD
QUESTION
How can I have unique instances of BBPress (content, subscriptions, memmbers–everything unique) on unique and separate subsites, within a multisite installation?
Thank you in advance for your specific help keeping separate sites separate.
Thank you,
Chris
Shortcode to add “Edit Profile” link
Published on October 29th, 2016 by michent1Seems like integrating the “Edit Profile” link in various places on a site is a common issue here folks are running into on the forums.
So I hacked out a quick shortcode for a project i was working on that required us to include a link to the user’s edit profile page in a popup.
(Please note, the specific site i wrote this for was NOT using pretty links).
Placed in your child-theme’s functions.php file or in a custom plugin
/*--Generate BBporess Edit Profile Link in a shortcode--*/
function bbp_edit_profile_link($atts) {
extract(shortcode_atts(array(
'text' => "", // default value if none supplied
'class' => "" //Style class for link
), $atts));
if ($text) {
$current_user = wp_get_current_user ();
$user=$current_user->ID;
return '<a class="'. $class . '" href="/?bbp_user=' . $user . '&edit=1">' . $text. '</a>';
}
}
add_shortcode('bbp_edit_profile', 'bbp_edit_profile_link');
Attributes:
text = Your output text (i.e. “Edit My Profile”)
class = Custom anchor class (i.e. “my-link-style”)
Example
[bbp_edit_profile text="Edit My Profile" class"my-link-style"]
It’s a bit sloppy, but it works. Maybe someone else might find it useful…