Forum Replies Created
-
yes, that’s an issue with 2.6.x where bbpress uses a min file – they are working on a fix, but in the meantime put this in the custom css tab of the style pack plugin
#bbpress-forums .status-closed, #bbpress-forums .status-closed a { background-color: #fdd !important; }
link to the site and an example please
I think the premium does attachments
presume this is using bbp style pack ?
is your site public ?
In reply to: Notifications for New Topicyes, that should work fine
In reply to: Topic Export returns 0 recordsjust tested it – seems fine.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, 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.
Then come back
In reply to: Hide Breadcrumbs on Forum Home Page Onlyif your site is visible, please post link
it exists in both.
Then original exists in the bbpress folder, and is updated by bbpress updates
The amended sits in your child theme folder
In reply to: Default image topichmm….I took a look at that theme, but it is complicated and beyond free help – sorry !
In reply to: Hide Breadcrumbs on Forum Home Page OnlyPut this in the custom css tab of style pack or your theme’s custom css area
.forum-archive div.bbp-breadcrumb { display : none ; }
In reply to: Notifications for New TopicIn reply to: Layout change 2 or 3 columns instead of 1 columnsBeyond free help, but start with
templates/default/bbpress/loop-forums.php and loop-single-forum.php
In reply to: bbpress control bargreat – thanks for posting the final solution 🙂
In reply to: bug in 6.x – how has this not been found?probably because it is not a bug in version 6.x!!!
it will be theme or plugin related
Themes
As a test switch to a default theme such as twentyfifteen, 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.
In reply to: bbpress control barshould do !!
In reply to: bbpress control bargreat – come back if you need further help !!
In reply to: EXCESSIVE SPAMonce your forum gets known to spammers, then it is passed around in lists as an easy target, and you may well get bombarded.
because you allow anonymous posting, there is not much a spam filter can do to differentiate between a real post and spam, as it doesn’t know what your website is about.
In reply to: Group website stats API on BuddyPressmaybe post on the buddypress support forum?
In reply to: Remove “Link to Existing Content”?the code is for a previous version of bbpress.
try this :
#wp-link p.howto { display: none; } #search-panel { display : none ; }
In reply to: bbpress control barok, so the first bbpress file (there will be another for replies) that we need to filter is :
incudes/topics/templates.php
if you open and look at the file on line 2425 you’ll find the function that does the edit topic link.
Within this is a function that bbpress uses to let us filter parameters (called bbp_parse_args)
it looks like this
// Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'edit_text' => esc_html__( 'Edit', 'bbpress' ) ), 'get_topic_edit_link' );
you’ll see the word ‘Edit’ is contained in the ‘edit_text’ parameter, so it is this that we need to amend.
we can use a filter to change what this says, so we don’t need to amend that file- so this code put in your child theme functions file
add_filter ('bbp_before_get_topic_edit_link_parse_args' , 'my_edit_topic_filter', 10 , 1 ) ; function my_edit_topic_filter ($args) { $args['edit_text'] = 'this' ; return $args ; }
will change ‘EDIT’ to ‘THIS’
The parameter is effectively output on line 2455 in
$retval = $r['link_before'] . '<a href="' . esc_url( $uri ) . '">' . $r['edit_text'] . '</a>' . $r['link_after'];
so if $r[‘edit_text’] outputs the icon, then you are on the way. If the icon is an image, then using html img etc. in the function above should be good.
let me know that you make progress with this approach – or come back.
If you fix that one, I’ll help you work out the rest 🙂
In reply to: bbpress control barok, I’m hoping you are quite good at editing files, and some php?
do you have a child theme?
do you know how to add stuff to a child theme functions file?
In reply to: Layout change 2 or 3 columns instead of 1 columnshow is this related to bbpress ?
In reply to: Stop forum posts from showing on feedso have you tried that ?
In reply to: Default image topicnot as easy as it might sound.
I suspect your blog is using the featured image of the post for other blog items – yes ?
If so, the easiest would be to change the blog.php file for your theme
what theme are you using? do you have a child theme? do you know how to edit files? do you know how to ftp files ?
In reply to: Stop forum posts from showing on feedlink to your site please ?