Forum Replies Created
-
In reply to: Submit Button Editing
generally the styling is part of the theme – the ‘submit’ button has classes of ‘submit’ and ‘button’, so see if you theme lets you change this.
if not try
http://css3buttongenerator.com
this will give you code you can put in your themes custom css area
just change
.btn {to
.button {and
.btn:hover {to
.button:hover {before you paste the code
In reply to: How to insert short codes under topic pages?add_action( 'bbp_template_before_topics_loop' , 'rew_add_shortcode3'); function rew_add_shortcode3 () { echo do_shortcode( '[shortcode here]' ); }In reply to: @mention functionality on forumsif you mean the bits in dashboard>settings>bbp mentions they are in the options table under ‘bmen_settings’
so
get_option('bmen_settings', null)In reply to: Is this a bbpress issue or something else?glad you are fixed
In reply to: Format of the bbPress topic linksCoding to do ID’s is possible I suspect, but I have no idea how to do that 🙂
This article suggests that urls are used for seo ranking
and says
A well-crafted URL provides both humans and search engines an easy-to-understand indication of what the destination page will be about.
Although URLs can include ID numbers and codes, the best practice is to use words that people can comprehend.
Just a thought.
In reply to: bbpress topics for posts@winkelj first version of this that should work with gutenberg is here if you want to test :
so
1. Deactivate the existing bbpress topics for posts plugin (no need to delete it, just deactivate)
2. Go to this site http://www.rewweb.co.uk/download/bbpress-topics-for-posts-v2/ and download the new version
3. Go to dashboard>plugins>add new>upload plugin and upload the zipped file you downloaded in step 2
4. Activate and test.In reply to: bbpress topics for posts@bodybyloud contact me via http://www.rewweb.co.uk/contact-me/
In reply to: bbpress topics for posts@bodybyloud – yes that’s fine.
In reply to: bbpress topics for posts@bodybyloud the old version might work for you if you are not using blocks if you add this
add_filter( 'bbppt_eligible_post_types', 'rew_add_types' ) ; function rew_add_types () { $types = array( 'post', 'page', listings' ) ; return $types ; }Put 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
great – glad you are fixed
and is that for a new reply – the code sets this for new replies
sorry – I’m trying to help, but I don’t use yoast on any of my sites, so I’m guessing a bit.
Where are you getting that bit from – database, something in the dashboard or where?
so is that what it was before?
This should do it if I have the right yoast meta name
add_action ('bbp_new_reply', 'add_yoast_title' , 10 , 7) ; function add_yoast_title ( $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author, $false, $reply_to ) { $topic_title = get_the_title ($topic_id) ; $title = 'Reply to:'.$topic_title ; update_post_meta ($reply_id , '_yoast_wpseo_title' , $title ) ; }Put 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
In reply to: Is this a bbpress issue or something else?Put 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_subscription_mail_headers’ , ‘rew_headers’ ) ;
function rew_headers ($headers) { $headers = str_replace ('hello' ,'\'', $headers) ; return $headers ; }but instead of hello put
& # 0 3 9 ;but without the spaces – sorry wordpress keeps interpreting the code so best way I can get it in hereIn reply to: Hide/Edit Forum from Breadcrumbgreat – glad you are fixed, and thanks for posting back the result
In reply to: Is this a bbpress issue or something else?you are showing a screenshot of what is an incoming email – yes ?
But it is showing bcc info, which incoming emails do not, so is that info in the bcc field or elsewhere in the email?
In reply to: Change of date for freshnessI could dig into it, but as it is working I won’t 🙂 But thanks for posting the answer, if others find the same issue, I’ll look to update.
Glad you are fixed !!
In reply to: Is this a bbpress issue or something else?so no receiving email would list BCC’s, so there are presumably included elsewhere in the email?
In reply to: Is this a bbpress issue or something else?hmm.. that screenshot – where is it from – is it a screenshot on an email being received? and if so in what mailer ?
I suspect it is related to your bcc issue, as this screenshot also shows it.
I’d suggest something is just sending out the email as a stream.
The troubleshooting in the other thread might help identify
In reply to: BCC notifications include visible emailssorry, there are 300,000 users of bbpress and you have found a couple of instances where users found an issue.
In one advice was to troubleshoot the problem, and the user never came back, in the other one user found that it was a wp mail plugin.
I appreciate that you ae frustrated, but ‘this same exact issue 5 and a half years ago? Is this issue still not fixed?’ is not going to endear you to the free support offered for this free product.
As a first instance, please do the troubleshooting :
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbpress topics for posts@bodybyloud I’m most of the way through getting this going – can you test when I am ready?
and do you know the actual post type names you want to add – ie what they are called in the database ?
In reply to: How do I disable the download option in the gallery?sorry, nothing to do with bbpress plugin which is where you posted this
In reply to: Forum theme only works “backwards”sorry, bbpress works on themes that comply with the some old wordpress conventions, and nowadays 90% don’t so most don’t.
No-ones fault, wordpress themes have moved on faster than worpdress 🙂
In reply to: Forum theme only works “backwards”