Search Results for 'code'
-
AuthorSearch Results
-
October 1, 2020 at 10:19 pm #214913
Topic: Problem Editing Posts
in forum TroubleshootingLeadGuitarMx
ParticipantHello,
I’m having a problem when I try to edit a post the textarea called by
bbp_the_content( array( 'context' => 'topic' ) );The textarea is not respecting the line breaks.
On my DB the content looks like:
text text text text text text text text text text text text textBut on the textarea it looks like:
text text text text text text text text text text text textSomebody have a clue of how to solve this? 🤔
Thanks for any help : )
October 1, 2020 at 7:55 pm #214911In reply to: Users reporting issues posting
LeadGuitarMx
ParticipantHi, I solved this problem by adding this to my bbpress-functions.php
add_filter( 'bbp_bypass_check_for_moderation', '__return_true' );The problem is that bbpress is sending the posts to moderation but it doesn’t show any advice to the user or admins. I don’t know why 🤷♂️
Hope it helps
September 30, 2020 at 4:52 pm #214887In reply to: Topic editor turn shortcode in HTML
Robin W
Moderatorok, thanks I now understand.
Sorry, that’s the way WordPress works – not a loot I can do to help.
The shortcode is rendered when you publish, and when you edit I think it does not like that you ared using html – maybe a permission issue.
I cannot really help further
September 30, 2020 at 4:52 pm #214888In reply to: Topic editor turn shortcode in HTML
Robin W
Moderatorok, thanks I now understand.
Sorry, that’s the way WordPress works – not a loot I can do to help.
The shortcode is rendered when you publish, and when you edit I think it does not like that you ared using html – maybe a permission issue.
I cannot really help further
September 30, 2020 at 3:53 pm #214886In reply to: Log In page
Robin W
Moderatorif you can wait until next week, I’ll come back with some code
September 30, 2020 at 3:52 pm #214884Robin W
Moderatorthe code should work – try form a PC/phone that has never accessed the site
September 30, 2020 at 1:18 pm #214879ginaginagina
ParticipantThanks for this, Robin. I’ll play around with it; for some reason, it’s not changing anything at the moment when I insert the code above (none of the columns or titles in those columns shift) but I’m sure I can play with it a little to see what might be happening. 🙂
Thank you so much for your help with solving the biggest issue! I am sure your fix will help our nonprofit encourage people to connect. So appreciated!
September 30, 2020 at 1:11 pm #214878In reply to: How to hide the author of posts for unlogged users.
Robin W
Moderatorthis should hide it, but test to make sure you don’t find any exceptions !
add_filter ('bbp_get_author_link' , 'rew_hide_author', 30 , 3 ) ; add_filter ('bbp_get_reply_author_link' , 'rew_hide_author', 30 , 3 ) ; add_filter ('bbp_get_topic_author_link' , 'rew_hide_author', 30 , 3 ) ; function rew_hide_author($author_link, $r, $args) { if (!is_user_logged_in()) $author_link='' ; return $author_link ; }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
September 30, 2020 at 12:46 pm #214875In reply to: Topic editor turn shortcode in HTML
Robin W
Moderatorfrom your image, it is because you have not use the CODE in your post.
so you show
[model_viewer...etc]when if you do not want wordpress to translate this you should have
`[model_viewer…etc] with a second tick at the end, then when you edit it will stay as the code
September 30, 2020 at 12:41 pm #214874Robin W
Moderatorno need to edit files, you can do all that with css
so
.bbp-forum-freshness { display : none !important ; width : 0px ; } li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-topic-reply-count, li.bbp-topic-voice-count { width: 20%; } li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 55%; }will fill the freshness space up.
you can play with the percentages, above is 20% + 20% + 55%
just make sure they don’t go over 95% totalSeptember 30, 2020 at 12:08 pm #214872In reply to: Topic editor turn shortcode in HTML
Angelo Rocha
ParticipantYes, I’m inserting the shortcode, but when editing the topic, bbpress converts the shortcode to HTML, see the images, I don’t know why that happens.
September 30, 2020 at 11:52 am #214870Robin W
Moderatorput this is the custom css section of your theme
.bbp-forum-freshness { display : none !important ; }September 30, 2020 at 11:47 am #214869In reply to: Topic editor turn shortcode in HTML
Robin W
Moderatorum…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'...']September 30, 2020 at 11:34 am #214864In reply to: Topic editor turn shortcode in HTML
Angelo Rocha
ParticipantHi Robin W.
This solution allow Model Viewer Tag, but bbpress editor keeps converting my shortcode to html, how to solve this?Thanks.
September 29, 2020 at 2:49 pm #214837In reply to: Trying to get nested replies and pagination to work
laetee
ParticipantBUMP
How do the developers expect users to continue using and positively rating this plugin if nobody will answer troubleshooting questions? Not to mention there is not direct troubleshooting email to engage with.
Your plugin comes with many issues, some that are years old, that need to be fixed. I’m thinking of changing to a completely new plugin because of the lack of communication from developers.
I have tried every code possible from the community and none of them have fixed my issue. I need contact with a developer for help. How do we go about doing this?
September 29, 2020 at 11:05 am #214831uksentinel
ParticipantHad a look and cannot find anything obvious
For testing purposes, Create a test page with [bbp-forum-index] shortcode and see if Freshnesh and then Latest Post appears, if it does not then a conflict it maybe ?
September 29, 2020 at 10:29 am #214829graugart
ParticipantFirst open this URL to bypass the “coming soon”: https://www.defensivebjj.com/?bypass=turtlez
Then here is a page that should display the topics index: https://www.defensivebjj.com/members-forum-test/
These are the shortcodes I am trying (both bbstyle pack and bbpress)
[bsp-display-topic-index show=”20″ forum =”611″ search=”no” breadcrumb=”no”]
[bbp-single-forum id="611"]
September 29, 2020 at 10:03 am #214826uksentinel
ParticipantThe shortcode I use for BBPress is [bbp-forum-index] and it shows freshness for myself.
Try this on a test page to see if this works ?
(I am not an expert, so bare-with)
September 29, 2020 at 7:15 am #214818In reply to: how to increase to topic writing form size(height)
purityboy83
ParticipantHi
Thank you for support
code insert follow your’s guide
but does not change….
cache(opcache ,wp cache etc..) purge and purge all browser connection info
and reconnect , recheck but text area(write area) height size is samemy sub theme function code is
////////
add_filter (‘bbp_get_title_max_length’,’change_title’) ;Function change_title ($default) {
$default=120 ;
Return $default ;
}add_filter (‘bbp_before_get_the_content_parse_args’ , ‘rew_rows’) ;
function rew_rows ($args) {
$args[‘textarea_rows’] = 20 ;
return $args ;
}/////////////
change_title <== is Has been applied, subject size increase to 120
but rew_rows function does not applycurrent my bbq topic form image
https://t1.daumcdn.net/cfile/tistory/99B813465F7315C530Thanks
Best Regards,
HyunhoSeptember 29, 2020 at 7:11 am #214817In reply to: Search result topic excerpt specification
Mark Smith
ParticipantUse this plugin for the search results.
“Search & Filter
By Designs & Code”September 29, 2020 at 6:31 am #214814In reply to: how to increase to topic writing form size(height)
Robin W
Moderatorsorry, 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
September 29, 2020 at 3:43 am #214810In reply to: Topic editor turn shortcode in HTML
Robin W
Moderatorhtml 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
September 28, 2020 at 4:37 pm #214802In reply to: Topic editor turn shortcode in HTML
Angelo Rocha
ParticipantEg:
On insert topic:

On Edit topic:
September 28, 2020 at 4:31 pm #214801Topic: Topic editor turn shortcode in HTML
in forum TroubleshootingAngelo Rocha
ParticipantWhen i insert a shortcode in bbpress topic editor, when editing the topic it converts the shortcode to HTML, how to solve this?
September 27, 2020 at 10:00 am #214772In reply to: Exclude the replies from search results
Robin W
Moderatoradd_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 ; } -
AuthorSearch Results