Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 2,326 through 2,350 (of 32,481 total)
  • Author
    Search Results
  • #214913
    LeadGuitarMx
    Participant

    Hello,

    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 text

    But on the textarea it looks like:

    text text text
    text text text
    text text text
    text text text

    Somebody have a clue of how to solve this? 🤔

    Thanks for any help : )

    #214911
    LeadGuitarMx
    Participant

    Hi, 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

    #214887
    Robin W
    Moderator

    ok, 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

    #214888
    Robin W
    Moderator

    ok, 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

    #214886

    In reply to: Log In page

    Robin W
    Moderator

    if you can wait until next week, I’ll come back with some code

    Robin W
    Moderator

    the code should work – try form a PC/phone that has never accessed the site

    ginaginagina
    Participant

    Thanks 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!

    #214878
    Robin W
    Moderator

    this 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

    Code Snippets

    #214875
    Robin W
    Moderator

    from 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

    Robin W
    Moderator

    no 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% total

    #214872
    Angelo Rocha
    Participant

    Yes, 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.

    Robin W
    Moderator

    put this is the custom css section of your theme

    .bbp-forum-freshness {
    display : none !important ;
    }
    #214869
    Robin W
    Moderator

    um…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'...']

    #214864
    Angelo Rocha
    Participant

    Hi Robin W.
    This solution allow Model Viewer Tag, but bbpress editor keeps converting my shortcode to html, how to solve this?

    Thanks.

    #214837
    laetee
    Participant

    BUMP

    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?

    #214831
    uksentinel
    Participant

    Had 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 ?

    #214829
    graugart
    Participant

    First 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"]

    #214826
    uksentinel
    Participant

    The 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)

    #214818
    purityboy83
    Participant

    Hi

    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 same

    my 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 apply

    current my bbq topic form image
    https://t1.daumcdn.net/cfile/tistory/99B813465F7315C530

    Thanks
    Best Regards,
    Hyunho

    #214817
    Mark Smith
    Participant

    Use this plugin for the search results.
    “Search & Filter
    By Designs & Code”

    #214814
    Robin W
    Moderator

    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

    Code Snippets

    #214810
    Robin W
    Moderator

    html 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

    Code Snippets

    #214802
    Angelo Rocha
    Participant

    Eg:

    On insert topic:

    On Edit topic:

    #214801
    Angelo Rocha
    Participant

    When i insert a shortcode in bbpress topic editor, when editing the topic it converts the shortcode to HTML, how to solve this?

    #214772
    Robin W
    Moderator
    add_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 ;
    }
Viewing 25 results - 2,326 through 2,350 (of 32,481 total)
Skip to toolbar