Forum Replies Created
-
if you want a more technical solution, you need to have a child theme, and know how to ftp files.
If so come back and I’ll tell you how to do it
put this is the custom css section of your theme
.bbp-forum-freshness { display : none !important ; }In reply to: Topic editor turn shortcode in HTMLum…that’s what shortcodes are for ???
if you just want the shortcode displayed without bbpress interpreting it, then use the ‘code’
eg
[model_viewer ID'...']In reply to: bbpress show first post from each topic via popupbetter version will come next week
In reply to: Trying to get nested replies and pagination to workI appreciate that you are trying to use levers to get a resolution, but you are assuming that someone who has developed a free piece of software has some need to not have any negative feedback.
I am not a bbppress author, I just help out here, but having written several plugins including the style pack, there are what they are – you hope that others find them useful, but it makes no financial difference to you if no-one uses them.
Berating the authors for not offering a one to one response service on a product that has 300,000 users is perhaps asking too much.
I sincerely hope that you get to a resolution, but nested replies has never been a great feature within bbpress, and if that makes you choose another free product, then I will be sorry, but understand.
In reply to: Forum directory display problemit 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.
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
In reply to: how to increase to topic writing form size(height)ok, it works in my test site, so I cannot explain why it is not working for you
In reply to: how to increase to topic writing form size(height)sorry, I had misunderstood your question – this code will do that :
add_filter ('bbp_before_get_the_content_parse_args' , 'rew_rows') ; function rew_rows ($args) { $args['textarea_rows'] = 20 ; return $args ; }and adjust the 20 to what you want
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: Topic editor turn shortcode in HTMLhtml is not allowed for security purposes, but if you want to enable all or some then
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' ); function ntwb_bbpress_custom_kses_allowed_tags() { return array( // Links 'a' => array( 'class' => true, 'href' => true, 'title' => true, 'rel' => true, 'class' => true, 'target' => true, ), // Quotes 'blockquote' => array( 'cite' => true, ), // Div 'div' => array( 'class' => true, ), // Span 'span' => array( 'class' => true, ), // Code 'code' => array(), 'pre' => array( 'class' => true, ), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'class' => true, 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ), // Tables 'table' => array( 'align' => true, 'bgcolor' => true, 'border' => true, ), 'tbody' => array( 'align' => true, 'valign' => true, ), 'td' => array( 'align' => true, 'valign' => true, ), 'tfoot' => array( 'align' => true, 'valign' => true, ), 'th' => array( 'align' => true, 'valign' => true, ), 'thead' => array( 'align' => true, 'valign' => true, ), 'tr' => array( 'align' => true, 'valign' => true, ) ); }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: how to increase to topic writing form size(height)In reply to: Edit post redirect to Root Forumsgreat – thanks for posting the solution which will help others
In reply to: Exclude the replies from search resultsgreat – glad you are fixed !
In reply to: Documented import from snitz access databaseok, not sure what to suggest next
In reply to: Documented import from snitz access databasehave you followed step 1 in the first thread on changing date format ?
In reply to: Exclude the replies from search resultsadd_filter ('bbp_before_has_search_results_parse_args' , 'rew_topics_only') ; function rew_topics_only ($args) { $args['post_type'] = array (bbp_get_topic_post_type(), bbp_get_forum_post_type()) ; return $args ; }In reply to: Exclude the replies from search resultsthis code should do that
add_filter ('bbp_before_has_search_results_parse_args' , 'rew_topics_only') ; function rew_topics_only ($args) { $args['post_type'] = bbp_get_topic_post_type() ; return $args ; }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: bbpress show first post from each topic via popupcontact me via
In reply to: bbpress show first post from each topic via popuphmm….let me have a think…I’ll come back
In reply to: Freshness is way offgreat !
In reply to: Freshness is way offtry dashboard>tools>forums>repair forums
and run as needed.
this may get it back, and then use
once activated go to
dashboard>settings>bbp style pack>bug fixes and use that fix.
In reply to: bbpress show first post from each topic via popupnothing I know of, could be coded, but requires someone with the time to do this
suggest you ask the plugin authors
https://wordpress.org/support/plugin/yet-another-related-posts-plugin/
In reply to: Forum and topic links lead to empty pagessorry, I don’t understand – can you come back with a series of steps (press this, click that) that lead to the problem
In reply to: Admin cannot logouthmm… I cannot replicate this and have seen no change in behavior in bbpress that would explain.
what other bbpress or login related plugins are you using ?
In reply to: Admin cannot logoutyou can use
http://mysite.com/wp-login.php?action=logoutto logout