Forum Replies Created
-
In reply to: Load scripts when using shortcode
you could just enqueue it
bbp_enqueue_script( bbpress-editor-always, 'js/editor.js', array( 'jquery' ), '2.6.4', true );
thanks for the update, and yes please come back if you get any further
thanks – I’m just a user who helps out here, not a bbpress author.
so
1. can you confirm that the above plugin is not necessary – bbpress already does this ?
2.
can you try this code
add_filter( 'wpseo_metadesc', 'rew_meta_desc' ); function rew_meta_desc( $content ) { global $post; if ($post->post_type == 'reply' ) { $order = $post->menu_order ; $post_parent = $post->post_parent ; $title = get_the_title ($post_parent) ; $content = $title.' '.$order ; } return $content; }
Put this in your child theme’s function file – or use
In reply to: [bbp-topic-form] too wide when not logged in.theme specific, bbpress just uses the width your theme gives it.
In reply to: How To Turn off Link Button in Forumput this is the custom css part of your theme
#qt_bbp_reply_content_link { display : none ; }
In reply to: “No Topics” issue on forum pageif you have style pack installed, can you enable
dashboard>settings>bbp style pack>bug fixes>fix Last Active Time
and let us know whether this makes a difference
this code is from a bbpress convertor – no idea why it is running.
suggest you delete the user and recreate them
In reply to: Wrong Post Numberbbpress is just a custom post type, so in the database entry 2448 just happens to be a topic, 2447 could be a WordPress post, a wordpress page, a revision or another custom post type.
They’re all just database numbers
In reply to: Wrong Post Numbersorry I don’t understand the question?
In reply to: How to paste text to discussion forumyou could enable the visual editor
either
or
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form
In reply to: Notifications – Date Received = “Sometime Ago”one possibility (that is a workaround) would be to display as the actual date/time rather than ‘ago’
for instance my style pack plugin has the ability to change that.
once activated go to
dashboard>settings>bbp style pack>Freshness Display
In reply to: Notifications – Date Received = “Sometime Ago”great – thanks for posting the answer – and do come back if you work it out.
In reply to: 2.6 doesn’t recognise existing WP forum roleswithout knowing what then fatal error is, hard to help further – can you switch debug on ?
In reply to: How can I change the yellow background?no idea what the ‘reference to what I’m talking about’ link is trying to show
In reply to: 2.6 doesn’t recognise existing WP forum rolesok, thanks for the update.
I loaded your code in my test site and it works fine – eg I can allocate someone to warlord.
what plugins do you have on your site?
It is all quite doable, but sorry, you well into design and beyond free help in a support forum.
In reply to: 2.6 doesn’t recognise existing WP forum rolescustom roles work on my test site under2.6
I’ll load your code onto my test site later and see if it works there.
In reply to: How can I change the yellow background?ok, site specific issue, without being able to view the site, I can’t really help further
In reply to: Last reply author’s name in loop-single-topic?great – glad you are fixed
In reply to: Last reply author’s name in loop-single-topic?ok, understand
if you just want that then
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); function rew_bbpress_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( 'Reply To:' => 'Svar till:', ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }
Put this in your child theme’s function file – or use
great – glad you are fixed
In reply to: Make Forum Full WidthI saw that you had changed it.
that’s fine, if I am the last remark, then I know it needs no further action.
we leave topics open in case others want to add their views 🙂