Forum Replies Created
-
if you are really using bbpress v1 then it wouldnt work.
i think that shortcode is only for the newer bbpress v2 wordpress plugin
In reply to: can't upload media in bbpressIn reply to: Topic/fourm sub emails not being sentwithout any smtp plugins activated does bbPress subscription emails work??
In reply to: This forum contains…go to tools > forums then repair the forums
it should fix it after you repair your forums.
if you edit a topic then change it to pending it will be messed up again.
In reply to: Simplify Options theme troublewell its tough on my side too since you have a paid theme (the free version doesnt have the show excerpt option) , so i cant just tell you step by step because i have to look at the code of your current theme.
you can create me an admin account ( i need to go to the backend and see your theme files in the wordpress theme editor ) , then send me the login details through my email so i can get this done for you.
In reply to: Can't Import from Vanillahopefully @netweb will pick this up he is the import specialist.
In reply to: How to add create new topic button and….why did you put a functions.php file in your bbpress folder it wouldnt work that way.
just place it in your themes functions.php or use a plugin like this
In reply to: How to: Prevent users from posting url linksno problem
In reply to: Topic and replies counti gave you two shortcodes for each instead
place the two functions into your child themes functions.php or add the snippets to a functionality plugin.
[bbp-topic-stats]
function rk_bbp_topic_stats() { $stats = bbp_get_statistics(); echo "<dl role='main'><dt>Topics</dt><dd><strong>"; echo esc_html( $stats['topic_count'] ); echo "</strong></dd></dl>"; } add_shortcode('bbp-topic-stats', 'rk_bbp_topic_stats');
[bbp-reply-stats]
function rk_bbp_reply_stats() { $stats = bbp_get_statistics(); echo "<dl role='main'><dt>Replies</dt><dd><strong>"; echo esc_html( $stats['reply_count'] ); echo "</strong></dd></dl>"; } add_shortcode('bbp-reply-stats', 'rk_bbp_reply_stats');
In reply to: How to add create new topic button and….add this into your child themes functions.php file or put the snippet in a functionality plugin.
function rk_new_topic_button() { echo '<a href="#new-topic-0" class="bbp-new-topic-button button btn input[type="button"]" >New Topic</a>'; } add_action('bbp_template_before_topics_loop','rk_new_topic_button');
In reply to: How to: Prevent users from posting url linksadd this to your child themes functions.php file or insert this snippet into a functionality plugin and all links posted to your forum would just return plain text.
remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 4 ); remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 4 );
In reply to: Implode Warning on Forums pageok if you think its just bbPress maybe your bbPress installation had some issues??
try uninstalling the bbPress plugin then re-install it.
In reply to: Users' avatarsorry for the late reply
to disable avatars site-wide
go to the WordPress back-end and then go to settings > discussion
then toward the bottom in the Avatars section uncheck “Show Avatars”
In reply to: bbPres / WordPress user integrationI tried modifying User Roles and Capabilities from functions.bb-capabilities.php, so that all the users can have same capabilities as keymaster
that sounds dangerous, don’t do that
see if this helps, follow all the links on the page too, and see if you set it up correctly.
In reply to: Implode Warning on Forums pageThe error message does go away when switching to the twenty fourteen wordpress theme.
so the issue is definitely in your theme then.
ill try to search your theme and see if i can find anything.
other than that since i said it looked fine on my end when i tested your theme, maybe you should try uninstalling your theme then re-installing it to see if it fixes the issue.
In reply to: Users' avatarOk, but users have to login into my site. But I ask if there is any plugin which do not require logging into the site, I do not want to give an access to my dashboard.
you can disable access to your wp-admin section if you want to registered users
you can use this plugin to do that.
https://wordpress.org/plugins/wp-admin-no-show/
Is there a plugin which allows users to upload an avatar just on the forum (for example, before posting)?
No
maybe enforce a user to upload avatar on registration, but thats it.
or if you really want an anonymous forum, you can just hide all the avatars so they wont have to upload anything and you can just not worry about it.
In reply to: Users' avatarfor gravatar they would sign up and just add an avatar .
if the email they signed up with on gravatar is the same as their email they used to sign up on your site then their gravatar will show up on your site.
There is also this plugin to allow people to upload avatars to your site.
In reply to: WP SEO by Yost and bbPress Incompatibility?alright glad you solved your own issue then
In reply to: Can't Import from Vanillasee if these can help
In reply to: bbpress Seo for main sitein my opinion having http://mysite.com/support/ would be better to increase the rank of the main site.
In reply to: User unable to post on forumhave you marked any of her posts/comments as spam before??
im just guessing to try to find an issue now , this issue is so mysterious
In reply to: bbPres / WordPress user integrationwhat bbPress version are you using??
In reply to: View topics problemfollow the general issues in that link then come back with results.
In reply to: Press feedback? Anyone?i like it , it really looks clean and i see your using the buddypress cover photo plugin which makes the profiles unique to each user.
only thing weird is that you have two sticky topic icons for each sticky topic.