Forum Replies Created
-
In reply to: How to add and modify .mo file
great – glad you’re fixed !!
In reply to: How to add and modify .mo filetry something web-based – maybe
In reply to: How to add and modify .mo file@alexwilmac no idea what you are trying to do, but you will need to use a proper tool to manipulate and change .mo files.
If you at just after a coupe of changes easier to use ‘gettext’ in a child theme functions file.
Perhaps come back with some further details
great – glad you are fixed !!
you can simply filter this in your theme’s function file.
not tested but
add_filter( 'bbp_number_format', 'rew_number_format', 10 , 5) ; function rew_number_format ($number_format, $number, $decimals, $dec_point, $thousands_sep) { $thousands_sep = '' ; return apply_filters( 'rew_number_format', number_format( $number, $decimals, $dec_point, $thousands_sep ), $number, $decimals, $dec_point, $thousands_sep ); }
In reply to: Problèmes notifications: mails envoyés aux bloquésIn reply to: Forum Index Order by FreshnessI’ve fixed that in the style pack plugin with version 3.7.2
for anyone using the function above it should read
function rew_forum_order_by_freshness ($args) { $args['meta_key'] = '_bbp_last_active_time' ; $args['orderby'] = 'meta_value' ; $args['order'] = 'DESC' ; return $args ; } add_filter('bbp_before_has_forums_parse_args', 'rew_forum_order_by_freshness');
which just changes the order, rather than the previous function which overwrites all the parameters submitted by subscriptions
In reply to: Argghh.. I can’t turn off the indentit’s caused by
#bbpress-forums .reply { margin-left: 0 !important; width: auto !important; }
which says it is inline code.
The width: auto !important needs to be width :100% !important.
Auto makes it only as wide as it needs to be, so for short sentences it truncates.
But I’m also getting an error saying that your “sydney-child-theme/style.css could not be loaded”
In reply to: Post Previewok, I’ve just loaded it to my site, but see nothing different – is there any set-up or what should I see differently on a topic/reply form?
In reply to: Forum Index Order by Freshnessok, let me take a look – but may not be until after xmas !
In reply to: Forum Width and Hide Menugreat – glad you are fixed !
In reply to: My content box textarea not have widgets.hmm… not sure I’m going to be able to help – without a theme to see it is hard to know what is causing it – the theme has turned off that feature
In reply to: My content box textarea not have widgets.ok, what theme are you using?
In reply to: My content box textarea not have widgets.ok, something is preventing this.
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
In reply to: My content box textarea not have widgets.all I see are some blank boxes – sorry but you need to post what part of the site and what you want to see
In reply to: Post Previewthanks – I’ll try and take a look shortly, but xmas may get in the way !!
In reply to: Forums index does not workno problem, glad to have helped
In reply to: Post Previewcan you give me a source for the plugin?
In reply to: Forums index does not workyou can take out one of the forums by
dashobaord>settings>forums>Forum Root Slug>Forum Prefix and untick
In reply to: Create new topic in indexthanks, that was exactly the help I needed to get to the right code 🙂
I’ve just released version 3.7.0 which has a filter you can use to change that link.
If you update and then you add this code to your child theme‘s functions file
add_filter ('bsp_new_topic_button', 'rew_change_button' ) ; add_filter ('bsp_create_new_topica', 'rew_change_button' ) ; function rew_change_button () { $href = 'https://mysite/leden/forum/ledenforum/#bsptopic' ; return $href ; }
then it won’t be affected.
Please come back and confirm that it works for you.
In reply to: Create new topic in indexas it’s very near xmas and I’m pretty tied up, can you show the altered function that you created, which will save me time in finding it.
thanks
In reply to: Just installed bbPressgreat looking site !!
In reply to: Code Tagno problem, glad you are fixed !
In reply to: Forums index does not workI think it is your theme, but of you are only having one forum, then you could create a page called anything and put
[bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
you can find the ID of your forum by looking at the number in the url when esiting it ie in
dashboard>forums>all forums>edit forum
and use this page as your forum page.
It may work, it may not 🙂
In reply to: Forums index does not workok, think I have just had a thought
so you have one forum called ‘forum’ – yes ?