Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 1,801 through 1,825 (of 32,481 total)
  • Author
    Search Results
  • #219408
    Robin W
    Moderator

    ‘If it is set to perfection more and more users will use it and the plugin will be active.’

    I agree, but this is free software that I write in my spare time, I get no income for doing this, and have limited time to write code 🙂

    you should find the topic/reply in the dashboard if you have not permanently deleted it.

    #219403
    nayanboost
    Participant

    And another thing, there are shortcodes on many pages. Just haven’t done anything with the profile page template.

    #219399
    Robin W
    Moderator

    just yours, everyone’s, are you using a shortcode on a page?

    #219391
    healtemple21
    Participant

    When I paste the register code into the page, nothing shows up. When I duplicate the same window for the forum-index, that works, in the wp bakery software (changing only the code), nothing happens.

    I hope this helps to clarify. Let me know, thank you for your help
    Roman

    #219385
    healtemple21
    Participant

    Good Day, the shortcode bb-register , login and lost password aren’t working for me on WPBakery. Other bb shortcodes do work, such as bb-topic-index. Thank you for any assistance you can offer.

    #219383

    In reply to: Automatic subscribtion

    Julia
    Participant

    You can customze two file form-reply.php and form-topic.php .

    bbress> templates > default > form-topic.php at line 170

    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> />
    ↓
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> />
    

    bbress> templates > default > form-reply.php at line 104

    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    ↓
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    

    Then the topic and reply are automatically subscribed simply.
    But the participant can uncheck the checkbox about subscription by himself.
    If you do not want participant uncheck the checkbox, you can delete checkbox by CSS.

    Put these customized files in your child theme’s folder-bbpress.

    #219368
    Ricsca2
    Participant

    When topics are created in the forum this is the writing they have of defoult.

    %excerpt<br />[See the full post at: <a href="%url">%title</a>]

    Could you replace like this for all in the next plugin update which with extra space and bold is more visible?

    %excerpt ...<br /><br /><b>See the full post at: <a href="%url">%title</a></b>

    Thank you

    #219358
    juventino199
    Participant

    Thank you very much, the code works perfectly after placed in my child theme.

    #219357
    Robin W
    Moderator

    this (untested) should work

    add_filter ('bbp_after_get_the_content_parse_args', 'change_rows') ;
    
    function change_rows ($args) {
    	if ($args['context'] == 'reply' ) {
    		$args['textarea_rows'] = '6' ;
    	}
    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

    Code Snippets

    quix8
    Participant

    Hello,

    I want to add a back link to get back to the page where the bbp-single-forum shortcode was implemented. I currently still have the defaults settings and the forum root is “forum”. So I will only see the single forum but not the page I implemented the shortcode in.

    I have more than 1 page with a forum, so I would need to define the wordpress root page for each forum, if it is not possible to detect this dynamically I guess.

    Thanks for any help!

    – Dennis

    #219342

    In reply to: Automatic subscribtion

    Julia
    Participant

    How about this code?

    
    type="checkbox" ⇒ type="checkbox"checked
    

    You can customize the form-reply.php and form-topic.php .

    
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    

    You can change the code simply and put both files in your child theme’s bbpress folder.

    #219341
    Julia
    Participant

    Your code works quite well. How simple they are!
    I tried to customize it , but I couldn’t. I couldn’t get strpos code.

    Thank you for your kindness.

    #219335
    Robin W
    Moderator

    without getting complicated, this will work quite well

    add_filter ('bbp_get_topic_subscribe_link' , 'julia_unubsribe') ;
    
    function julia_unubsribe($retval) {
    	if (strpos($retval, 'Subscribe') !== FALSE) {
    		$retval = '' ;
    	}
    return $retval ;
    }

    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

    it will let someone unsubscribe from a topic, but does let them re-subscribe if they stay within that topic (so if they click by mistake, they can unclick immediately) once they leave that topic, then they can’t subscribe, and they can’t subscribe to a topic that they are not subscribed to in the first place.

    #219330
    Julia
    Participant

    ‘reply page’ means content-single-topic.php .

    
    <?php bbp_topic_subscription_link(); ?>
    

    includes> topics > template.php

    
    function bbp_topic_subscription_link( $args = array() ) {
    	echo bbp_get_topic_subscription_link( $args );
    }
    
    	/**
    	 * Get the topic subscription link
    	 *
    	 * A custom wrapper for bbp_get_user_subscribe_link()
    	 *
    	 * @since 2.5.0 bbPress (r5156)
    	 * @since 2.6.0 bbPress (r6308) Add 'redirect_to' support
    	 */
    	function bbp_get_topic_subscription_link( $args = array() ) {
    
    		// Defaults
    		$retval      = false;
    		$user_id     = bbp_get_current_user_id();
    		$redirect_to = bbp_is_subscriptions()
    			? bbp_get_subscriptions_permalink( $user_id )
    			: '';
    
    		// Parse the arguments
    		$r = bbp_parse_args( $args, array(
    			'user_id'     => $user_id,
    			'object_id'   => bbp_get_topic_id(),
    			'object_type' => 'post',
    			'before'      => '&nbsp;|&nbsp;',
    			'after'       => '',
    			'subscribe'   => esc_html__( 'Subscribe',   'bbpress' ),
    			'unsubscribe' => esc_html__( 'Unsubscribe', 'bbpress' ),
    			'redirect_to' => $redirect_to
    		), 'get_topic_subscribe_link' );
    
    		// Get the link
    		$retval = bbp_get_user_subscribe_link( $r );
    
    		// Filter & return
    		return apply_filters( 'bbp_get_topic_subscribe_link', $retval, $r, $args );
    	}
    
    #219301
    Robin W
    Moderator

    bbpress has an ID not a class (you don’t need to know what this means!) , so try

    body#bbpress .memberoni_breadcrumbs {
    display: none;
    }
    #219300
    bobcrawford
    Participant

    Quick question regarding styling the pages made by bbpress. Inside the forum I’m using the bbpress breadcrumbs and they work wonderfully. My theme uses breadcrumbs, and I use them for the rest of my site, (non-forum pages)… but they don’t work properly within the forum. I have the option of disabling my theme’s breadcrumbs on a page by page basis, but it only disables them on the page I inserted the breadcrumbs in. I’m assuming this is because the rest of the forum pages are generated by bbpress.

    So basically, I want to disable my themes breadcrumbs on all forum pages and let bbpress handle breadcrumbs there. My theme’s developer shared this with me…

    “I think the easiest way to do this would be to hide the breadcrumbs on the required pages. I believe all bbpress pages have a body with the class “bbpress” so this should be doable with some simple CSS (you can add this to your child theme’s style.css file):

    body.bbpress .memberoni_breadcrumbs {
    display: none;
    }”

    But this doesn’t work for me. I’ve tried to inspect the page using chrome to see what I’m doing wrong, but can’t seem to figure it out.

    Any help would be appreciated!

    #219286
    Robin W
    Moderator

    for registration, set up a pages called whatever you wish and use the relevant shortcodes

    [bbp-login] – Display the login screen.
    [bbp-register] – Display the register screen.
    [bbp-lost-pass] – Display the lost password screen.

    #219268
    mtissington
    Participant

    Thanks – however isn’t there some code which reads the status value and appends it – so something like

    $class = “status-” . $status = get_status (id) ??

    #219250
    Robin W
    Moderator

    if you’ve cloned the forum widget, you can set a class – the test is

    if ( bbp_is_forum_closed(forum_id)) ...

    and

    if ( bbp_is_topic_closed (topic_id)) ...

    #219249

    In reply to: BBP_Forums_Widget bug

    Robin W
    Moderator

    interesting..it looks ok on my test site, but I can see it doesn’t on yours.

    I should state that I am just a bbpress user who helps out here, not the plugin author.

    2 choices

    1. amend the actual widget file – yes that is said by many to be bad practice, but bbpress does not do frequent releases, and if it is your site and you know what you changed, is probably the quickest and easiest answer

    2. clone the widget to your theme’s child functions file. so take the whole function that starts

    class BBP_Forums_Widget extends WP_Widget {

    Now you’ll need to rename it, so change BBP_Forums_Widget wherever quoted to something unique, and change names/title in these lines

    
    public function __construct() {
    		$widget_ops = apply_filters( 'bbp_forums_widget_options', array(
    			'classname'                   => 'widget_display_forums',
    			'description'                 => esc_html__( 'A list of forums with an option to set the parent.', 'bbpress' ),
    			'customize_selective_refresh' => true
    		) );
    
    		parent::__construct( false, esc_html__( '(bbPress) Forums List', 'bbpress' ), $widget_ops );
    	}
    
    	/**
    	 * Register the widget
    	 *
    	 * @since 2.0.0 bbPress (r3389)
    	 */
    	public static function register_widget() {
    		register_widget( 'BBP_Forums_Widget' );
    	}

    you can then amend the offending line.

    #219233
    mtissington
    Participant

    In the main forum/topic view the css is updated with status-closed.

    However the Forum and Topic widgets do not update the status.
    I would like to change this.

    Where does the existing code set status-closed for both Forums and Topics.

    Hopefully you can see what I’m wanting to show here

    #219230
    mtissington
    Participant

    The html <a> link for the list of forums is wrong – it include white space in the front.
    If you don’t think it’s a bug, then where do I place a modified widgets.php in my theme to fix the issue?

    this is from BBP_Forums_Widget

    				<a class="bbp-forum-title" href="<?php bbp_forum_permalink( $widget_query->post->ID ); ?>">
    						<?php bbp_forum_title( $widget_query->post->ID ); ?>
    					</a>
    

    and this is from BBP_Topics_Widget which displays correctly with no leading white space.

    					<a class="bbp-forum-title" href="<?php bbp_topic_permalink( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a>
    
    #219229
    patdunn
    Participant

    The bbPress codex explains that when bbPress is installed it creates three new menu items in the WordPress backend. These are Forums, Topics and Replies.

    I do not have the Forums topic. Is there some way that I can add it in?

    force73
    Participant

    Hi guys,

    i have found the file “class-bp-core-login-widget.php” and I need to add an additional link to the users direct messages “https://url/username/messages&#8221; right under the users name within the widget (after a user is logged it).

    I am able to do in the code but this is not a correct way (break on update), so please help me, is there a way to add this simple link to the widget?

    Thanks,
    Christian

    #219193

    In reply to: Remove profile field

    apr0424
    Participant

    Well, if i click on help it directs met here: https://codex.buddypress.org/administrator-guide/extended-profiles/

Viewing 25 results - 1,801 through 1,825 (of 32,481 total)
Skip to toolbar