Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'codes'

Viewing 25 results - 51 through 75 (of 1,687 total)
  • Author
    Search Results
  • #236011
    shake1
    Participant

    Questions about customization. I am using a translation tool, so my English may be unnatural.

    In [bbp-single-view id='no-replies'], closed topics are also displayed, so I would like to limit it to open topics, does the following code seem ok? Please advise.

    
    add_action( 'bbp_register_views', 'custom_bbp_no_replies' );
    
    function custom_bbp_no_replies() {
    	bbp_register_view(
    		'no-replies', 
    		__( 'Topics with no replies', 'bbpress' ),
    		apply_filters(
    			'bbp_topic_no_replies_query', 
    			array(
    				'post_parent' => 'any', 
    				'post_status' => bbp_get_public_status_id(),  // Changed to show only open topics
    				'meta_key' => '_bbp_reply_count',
    				'meta_value' => 1,
    				'meta_compare' => '<',
    				'meta_type' => 'NUMERIC'
    			)
    		), 
    		false
    	);
    }
    
    
    #236009
    shake1
    Participant

    Excuse me for asking a question about customization.
    I am using a translation tool, so my English may be unnatural.

    I would like to limit the posts displayed in [bbp-single-view id='popular'] to 7 days.

    
    function filter_bbp_get_view_query_args( $args, $view ) {
        // Check if the view exists
        if ( ! bbp_get_view( $view ) ) {
            return new WP_Error( 'invalid_view', __( 'Invalid view specified.', 'bbpress' ), $view );
        }
    
        if ( 'popular' === $view ) {
            $args['date_query'] = array(
                array(
                    'after' => '1 week ago',
                ),
            );
        }
        return $args;
    }
    add_filter( 'bbp_get_view_query_args', 'filter_bbp_get_view_query_args', 10, 2 );
    
    
    enkoes
    Participant

    Yes, Robin. The codes run without any error. Appreciated your effort in helping me to solve the issue.

    enkoes
    Participant

    Yes. It works beautifully! 🙂

    I just found out something when I thought the issue is solved. The code works well with native bbpress role, but not work with new role created. I have a new role “prime_moderator” created using your plugin, but the code return error when I apply this new role to the codes. Any suggestions?

    Regards.

    enkoes
    Participant

    Hi, I’m using the codes below to remove “Edit” link in reply header without any issue:

    add_filter ('bbp_reply_admin_links', 'rew_remove_edit') ;
    add_filter ('bbp_topic_admin_links', 'rew_remove_edit') ;
    
    function rew_remove_edit ($links) {
    	unset ($links['edit']) ;
    return $links ;	
    }

    My question: If I want the codes to work only for Role A & Role B, but NOT for other roles, how would I amend the code above?

    Regards.

    #235498

    In reply to: Close topic label

    enkoes
    Participant

    Hi, I recently saw this topic and it helps me solve one problem.

    I can finally use this CSS to disable the grey-out effect when the topic is closed:

    #bbpress-forums .status-closed,
    #bbpress-forums .status-closed a {
    color: #000 !important;
    }

    From this previous topic also, CSS can do equally well to add [Closed] label beside the closed topic title in topic list page:

    #bbpress-forums .status-closed > li.bbp-topic-title > a.bbp-topic-permalink:after {
    	content: "[Closed]";
    	text-shadow: 1px 1px 0 #ffffff;
    	color: #ff0000;
    	margin-right: 5px;
    }

    I wonder if we can use CSS (instead of PHP codes) to add another [Closed] label beside the topic title in single topic page. Any solution?
    See https://paste.pics/N5WS0

    Also, I’m still searching for ways to disable the defaulted pink font highlight when the topic is closed. Hope somebody can help.
    See https://paste.pics/N8U5T

    Regards.

    #235131
    enkoes
    Participant

    Brilliant! Thanks for the codes. Just tested and it works like a charm! 😀

    #235118
    enkoes
    Participant

    Hi, I would like to display nickname (and not username) in the whole bbpress forum.

    For topics list, I modified the code from a previous topic Show username instead of full name / display name and it works well so far.

    See https://paste.pics/MVA62

    The modified codes that I use is as follows:

    add_filter( 'bbp_get_reply_author_display_name' , 'rew_reply_change_to_nickname', 10 , 2 ) ;
    
    function rew_reply_change_to_nickname ($author_name, $reply_id) {
    	// Get the author ID
    	$author_id = bbp_get_reply_author_id( $reply_id );
    	$nickname = um_get_display_name( $author_id );
    return $nickname ;
    }
    
    add_filter( 'bbp_get_topic_author_display_name' , 'rew_topic_change_to_nickname', 10 , 2 ) ;
    
    function rew_topic_change_to_nickname ($author_name, $topic_id) {
    	// Get the author ID
    	$author_id = bbp_get_topic_author_id( $topic_id );
    	$nickname = um_get_display_name( $author_id );
    return $nickname ;
    }

    Note: I use Ultimate Member (UM) plugin to display user details.

    However, when comes to user profile, I’m struggling on how to force display nickname right above the avatar. Hope you can help me with that.

    See https://paste.pics/MVA6A

    Note: It’s very tedious to modify “display name publicly as” from the WordPress dashboard for every registered user. Thus hopefully codes may well do the job for me.

    norcom41
    Participant

    In Oct/2022 I found http://www.buddydev.com/restrict-user-from-creating-topic-on-certain-bbpress-forums. I printed out some code to look at it and some comments about it. I put the info in the learn how to use short-code in my notebook to study when I had time. It seemed complicated and only for advanced developers and I haven’t used short-codes as yet. But most of the developer reviews in that place seemed positive. The few negatives had to do with the code being beyond their expertise. I checked the reference in your reply and it seemed to fall into the category of an advanced approach. But I was just wondering if someone by now had figured out an easier way to solve my question because it seems to be a logical requirement to have a solution for. However, in my searching one person said “who would want to do something like that when that’s not what it’s meant for” I’ll have to study it all so I can be more comfortable trying it.

    #235009
    enkoes
    Participant

    Hi, I’m using the codes below to show lead topic:

    function custom_bbp_show_lead_topic( $show_lead ) {
      $show_lead[] = 'true';
      return $show_lead;
    }
     
    add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );

    As shown in the screenshot below,

    https://paste.pics/MQEKW

    My questions are:
    a. Can I hide the header & footer (item 1) right above and below the lead topic?
    b. Can I change the date display (item 2) to freshness display (e.g., 2 weeks, 5 days ago) for all topics/replies?

    Regards.

    #234841
    rinh
    Participant

    Unfortunately I don’t think any of them is close or can just be cloned.

    [bbp-forum-index] – This one works well and can add the forum root anywhere.

    But then there’s Forums or Categories, Sub forums and topics/replies themselves. These pages seem to all be seen as ‘posts’ by WordPress, why making a posts template worked in Elementor for all of them. FSE templates seem to ignore bbPress entirely though.

    [bbp-single-forum id=$forum_id] – This one do make it possible to add single forums anywhere, but not if they’re inside a forum Category. Would also need one page for each forum which would get a little crazy. I don’t know if this one could be tweaked into something more advanced.

    What would be needed is shortcodes for displaying forum Category pages in general, as well as their sub forum pages where the topics are listed. And then all the topic/replies pages too.

    All that sound too difficult to be honest.

    #234837
    Robin W
    Moderator

    presume you are familiar with all these

    Shortcodes

    #234836
    rinh
    Participant

    Oh yes, I use the plugin to be able to display the forum in block themes. Thank you for the plugin by the way and all the work you do on them and this forum 🙂

    This is more about I’d like to put the forum in templates to be able to put additional content, for example I put a welcome message/info as well as a custom made sidebar in the Elementor template.

    I suppose there’s no shortcodes for displaying forums (other than root) as well as one for all topics? 😛

    I can totally understand avoiding getting too deep into FSE. I really appreciate it too, it’s like a mini theme builder. The learning curve do feels steep though.

    #234731
    3dbyte
    Participant

    I tested your codes working without problem. By the way I didn’t use header color. Just footer enough because inside “forum index styling” changing already.
    Sincerely thanks Robin, have a good day.

    #234450
    dnashif
    Participant

    I think you are right. It is showing as a default wp template.

    I wish BBpress had a shortcode to add to a page for the search results. Seems logical since they have other shortcodes that it would be a no brainer for them to create one.

    Or even function code to put in my child theme functions file. I am not a developer so nothing I can do.

    Seen other people commenting about the search results page. Don’t think BBpress cares though!

    Appreciate your looking at this for me wpturk.

    You are a super hero!

    Diana

    #234376
    enkoes
    Participant

    Hi, after struggling some time trying to make profile page full width, I give up.

    The theme I’m using is Magbook. I found that there is only one theme template page that has no sidebar, ie, magbook-template.php. I copied this file to my child theme root directory, and rename it as bbpress.php. However it doesn’t make any changes to the profile page.

    I have read some other similar topics, I guess we need to “inject” custom php codes into the bbpress.php. If this is correct, can you provide me the relevant php codes for bbpress.php that make it works?

    One more thing I have doubt is that, let say bbpress finally adopted bbpress.php as default template, all other forum & topic pages will turn out no sidebar altogether, I presumed, which is against my wish. What I want is profile page FULL WIDTH, forum/topic page WITH SIDEBAR.

    Pls guide me.
    Regards

    #234053
    enkoes
    Participant

    Hi Robin, after spent some time trying to understand the codes, I tried and finally got the results that I wanted.

    For loop-topics.php,
    I change:

    <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic()
    				? esc_html_e( 'Replies', 'bbpress' )
    				: esc_html_e( 'Posts',   'bbpress' );
    			?></li>

    to:
    <li class="bbp-topic-reply-count"><?php esc_html_e( 'Replies', 'bbpress' ); ?></li>

    and for loop-single-topic.php,
    I change:
    <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?></li>
    to:
    <li class="bbp-topic-reply-count"><?php bbp_topic_reply_count(); ?></li>

    Since I don’t have any knowledge about PHP codes, I’m not sure what I did is correct or not, anyway at least work on my browser.

    Regards

    #233827
    Robin W
    Moderator

    ok, based on that I have no idea what you mean by embedding.

    bbpress does not have a ‘login page’ it has shortcodes and widgets.

    the template used by bbpress for login is

    bbpress\templates\default\bbpress\form-user-login.php

    to customise :

    find
    wp-content/plugins/bbpress/templates/default/bbpress/form-user-login.php

    transfer this to your pc and edit as desired

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/form-user-login.php

    bbPress will now use this template instead of the original

    #233683
    enkoes
    Participant

    Hi, I’m thinking of hiding some items in forum & topic page as follows:

    Forum page:
    1) to hide forum information
    2) to hide topic viewing information
    see screenshot: https://paste.pics/KS7KD

    Topic page:
    1) to hide topic information
    2) to hide post viewing information
    3) to hide topic header (author & posts)
    see screenshot: https://paste.pics/KS7MF

    Are there any CSS codes that can achieve that?

    enkoes
    Participant

    Hi Robin, where do I specify the FORUM ID in the codes given?

    #233450
    Mauricevdh
    Participant

    Hello,

    I would like to have an area under the topic and above the first reply. This area can be used for html or shortcodes. Best should be able to give the input per topic.

    Is there a plugin available (did extended search without results) or can somebody program this for me?

    http://www.zwembadforum.eu

    #233446
    dasword
    Blocked

    Thanks, how about see only author function (specific user reply filter), my blog subscribers very like to create long story(novel) in the forum under a topic, but they will split those stories into many chapters as update, for example, one of them post one chapter once a week, when he posted a chapter, there are many comments. I would like a function that can filter specific user reply under a topic, so reader can see the full story more clearly. Is there anywhere to add these this function to bbpress forum? Either Plugin or filter hook code or other codes, cherish your replies.

    #233441
    dasword
    Blocked

    I’m here for looking 2 functionalities for bbpress. First of them is quote, it is quite common function I think, if you click the quote function under the reply, it will copy the whole thing of the reply and paste in your textarea, this make people easy to deal with complicated answer sometimes. Second is see only author function, my blog subscribers very like to create long story(novel) in the forum under a topic, but they will split those stories into many chapters as update, for example, one of them post one chapter once a week, when he posted a chapter, there are many comments. I would like a function that can filter specific user reply under a topic, so reader can see the full story more clearly. Is there anywhere to add these 2 functions to bbpress forum? Either Plugin or filter hook code or other codes, thx for helping.

    #233319
    Asiqur Rahman
    Participant

    Hope this helps. put these codes into your theme functions.php file.

    
    add_filter( 'bbp_get_reply_author_url', 'lp_member_profile_links' );
    add_filter( 'bbp_get_topic_author_url', 'lp_member_profile_links' );
    add_filter( 'bbp_get_author_url', 'lp_member_profile_links' );
    function lp_member_profile_links( $url ) {
    	if ( ! empty( $url ) ) {
    		return $url . 'profile';
    	}
    	
    	return $url;
    }
    
    #233152
    bobjgarrett
    Participant

    I am using WordPress 6.1.1 and bbPress 2.6.9.
    I have a forum where if I use the standard forum page e.g. mysite.com/forum/members-forum there are no problems and pagination of the large number of topics works correctly producing a URL of say mysite.com/forum/members-forum/page/3/
    However, I wish to have a page with some other content at the to so are using a short-code to list the forum topics. The URL for that page is mysite.com/members-forum. However, on this page pagination does not work. The URL for the third page is mysite.com/members-forum/page/3/ but this produces an error 404.
    I have tried various solutions found from others having a similar problem including: using a standard theme, resaving the permalink setting, adding a bp-custom.php file with some code in it etc. but it still fails.
    Can anyone suggest a solution?

Viewing 25 results - 51 through 75 (of 1,687 total)
Skip to toolbar