Forum Replies Created
-
not sure why you need the second bit of code?
if it works, code looks fine, but I haven’t looked at in detail 🙂
In reply to: Indent forumsforums are not open without registering
In reply to: Theme Page Title contains “bbPress Forums”🙂
In reply to: Indent forumslink to your site and example please
In reply to: Theme Page Title contains “bbPress Forums”put this in the custom css part of your theme
.archive-description { display : none !important ; }In reply to: ArchiveYes I understand – your theme is doing that, not bbpress.
In reply to: Archiveif that does not work, then your theme is adding the ‘archive’
In reply to: Archiveit should work, try
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { return 'forum-diskusi' ; }In reply to: ArchivePut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { Return 'Forum' ; }nice plugin !!
In reply to: Archivesorry, I cannot see that word on the page above
In reply to: Archivelink to the forum on your site please
In reply to: IN BBP STYLE PACKso have you followed the advice in the tab ‘ not working’ and if so what did it say
In reply to: user profile link giving a 404 errorgreat – do report back any progress 🙂
In reply to: IN BBP STYLE PACKso have you looked at the tab called ‘not working ? ‘
In reply to: WP REST API V2don’t know the answer off hand, but tis might help
In reply to: Sort topics in a Forumgreat – glad you are fixed
In reply to: CSS Selector for BBpress forum pages#bbpress-forumsis the ID for forums – suggest you ask here on how to hide breadcrumbIn reply to: Forum topics fail🙂
In reply to: Embed Forum – subscribe not workingso is the permalink of the page the same as the forum slug in
dashboard>settings>forums>forum root ?
In reply to: Sort topics in a ForumPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter('bbp_has_replies_query', 'rew_modify_replies_query'); function rew_modify_replies_query($bbp_r) { $bbp_r['order'] = 'DESC'; return $bbp_r; } add_filter('bbp_show_lead_topic', 'rew_show_lead_topic'); function rew_show_lead_topic () { return true ; }In reply to: Sort topics in a Forumso not the order the topics show in the forum list – BUT the replies to a specific topic to show first – yes ?
In reply to: Sort topics in a Forum