Forum Replies Created
-
In reply to: Replacing Favorite Text
🙂
In reply to: Forum load upon loginyou would need to raise this on
https://wordpress.org/support/plugin/bbpress-login-register-links-on-forum-topic-pages/
In reply to: Forum load upon loginlooking at the login link, I’d guess you are using
so it would be a setting in there.
/*BBPRESS Favourite Filter*/ function rkk_subscribe_link($args) { $args['favorite'] = esc_html__( 'Favourite', 'rkk' ); $args['favorited'] = esc_html__( 'Unfavourite', 'rkk' ); return $args; } add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
In reply to: Replacing Favorite Text$args['Favorite']
should be$args['favorite']
no capital F !so
/*BBPRESS Favourite Filter*/ function rkk_subscribe_link($args) { $args['favorite'] = esc_html__( 'Favourite', 'rkk' ); $args['favorited'] = esc_html__( 'Unfavourite', 'rkk' ); return $args; } add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
In reply to: Link back to forum from individual Topic post pagesorry, I don’t know what didn’t work, the whole thing or the link?
In reply to: bbPress & ProfileGridsorry, I have no working knowledge of profilegrid, so cannot help.
In reply to: Show topic & reply count on user admin screen?added in the ‘sundry’ tab in style pack 5.1.8
In reply to: Repair tool with cronsorry, I can’t say why that would not work.
In reply to: Link back to forum from individual Topic post pagewp-content/themes/%your-theme-name%/bbpress/content-single-topic.php
glad you are fixed and thanks for posting your solution 🙂
In reply to: Repair tool with cronYou need to get this working within Cron.
2 choices
1. pay someone to write a plugin specifically for you to use cron to do this
2. use a cron plugin such as https://wordpress.org/plugins/advanced-cron-manager/ and add the tasks in thereI suggest you go for option 2 – free and would probably be much better
Apologies, I didn’t spot that this was not a front end template.
you would amend functions in that template by using filters. Which function do you wish to amend?
example for loop single repy:
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.phptransfer this to your pc and edit
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.phpbbPress will now use this template instead of the original
it is not very clear (I’m not a bbpress author), but the ‘stick (to front)’ is actually 2 links, if you click the ‘stick’ part it makes it sticky, if you click the ‘(to front)’ part it makes it super sticky.
In reply to: Show topic & reply count on user admin screen?I’ll look to add this to my style pack plugin in the next day or so
I suspect that they made the topic ‘super sticky’ which means it appears on every forum.
go to dashboard>topics and find ten topic and edit and check it’s type in the top right and under topic attributes
In reply to: last message, unread, no answer ?it would involve lots of template alterations, so not one I would add to my plugins directly. It could be done with a separate plugin, but time-consuming to do, so beyond free help and not cheap.
In reply to: Fix register page layoutwordpress and bbpress registration do not have a password option or Detalles del perfil, so the layout is not from worpdress or bbpress.
It may be your social login is doing this, so layout would be with that.
In reply to: Fix register page layoutyou are not using the bbpress registration, or wordpress one, so you have something some custom registration maybe using your theme or a plugin
In reply to: Fix register page layoutI suggest this might help
#buddypress .standard-form #profile-details-section { float: left !important; }
put this in your theme’s custom css, or in the custom css of bbp-style-pack
In reply to: Youtube Embedlink to a live example please
In reply to: bbpress topic link outputare you talking about your site or this site???
In reply to: bbpress topic link outputok, it just shows as an underlined link in both cases on my test site.
May be related to theme or another plugin.
do you have a link to an example on your site please
In reply to: How to link to Topics, Replies, Subscriptions?yes, sorry I’ve been out all day.
I’ll email you back later 🙂