Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 2,226 through 2,250 (of 32,466 total)
  • Author
    Search Results
  • #215680
    Robin W
    Moderator

    dashboard>settings>bbp stylepack> forums index styling and just change all tne font sizes to what you want

    or

    bbPress Styling Crib

    jveld
    Participant

    Dear all,

    Since a couple of months I am using a BBpress forum (and BBpress Attachments) on my WordPress (5.5.3) page (TopMag 2.0.2 theme) related to http://www.amrwr.nl

    I’ve got a very strange thing going on: everytime I (or a different user) start(s) a new thread and insert a Youtube or blogspot link, a download is prompted (a pop-up with ‘open’ or ‘save as’ appears) and the message itself is not posted.

    When I then open the downloaded file, the following code is displayed:

    <!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 2.0//EN”>
    <html><head>
    <title>503 Service Unavailable</title>
    </head><body>
    <h1>Service Unavailable</h1>
    <p>The server is temporarily unable to service your
    request due to maintenance downtime or capacity
    problems. Please try again later.</p>
    </body></html>

    This currently happens in the following browsers: Mozilla Firefox, IE, Edge, Chrome, DuckDuckGo. Untill very recently, IE and Firefox did not have this problem…

    I have done all the troubleshooting I could (given the knowledge I have) and are now quite lost as to how to solve this problem.

    Any help would be much appreciated!

    Regards,

    Jascha

    #215573
    Stephen
    Participant

    Hi there All,
    I have enabled new registrations, by creating a registration page. and use the shortcode [bbp-register].

    however, when I test this in incognito, I do received the email to complete my registration but it only contains

    Username: john###
    Email: john###@gmail.com

    is there ment to be a password, or a link to create a password?

    WordPress 5.5.1
    bbPress 2.6.5

    #215556
    Robin W
    Moderator

    How can I solve this without adding custom code somewhere or adding more plugins for minor issues like this?

    you can’t without doing one of the two. Given that every page rendition of a site without caching involves the parsing of many thousands of functions, and execution of several thousand, adding a plugin or some code to so this will add no perceivable delay to your site.

    plugin wise

    bbp style pack

    code wise

    https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#4-turning-off-or-changing-breadcrumbs item 4 to turn off homepage

    #215555
    cashcreatorsclub
    Participant

    Hi,

    The breadcrumb shows the title of the homepage instead of Home. How can I solve this without adding custom code somewhere or adding more plugins for minor issues like this?

    I use elementor pro as a theme framework.

    Thanks.

    Greetings

    #215553
    Robin W
    Moderator
    add_action( 'bbp_template_after_single_topic' , 'rew_add_shortcode2'); 
    
    function rew_add_shortcode2 () {
    	echo do_shortcode( '[shortcode here]' );
    }
    #215552
    truth4vahid
    Participant

    I want put a html code under the reply form like the area shown in the picture. Could you give me such a code?
    area

    #215535
    AndyHenderson
    Participant

    Thanks for spotting that. I’d assumed it was something I had done to disrupt BBPress but I hadn’t spotted the page was being refreshed and that it cleared the Javascript error from the console.

    Until the issue is fixed, a better work-around is to add a filter to functions.php rather than modify the BBPress code directly. That way the fix should survive a BBPress update. I used…

    // Prevent reply button in forums from executing a refresh of the page
    add_filter('bbp_get_reply_to_link', 'ctcFixReplyToLink', 10, 3);
      function ctcFixReplyToLink( $link, $r, $args ) {
        return str_ireplace( '"return addReply', '"event.preventDefault(); return addReply', $link );
      }
    #215532
    dasr94
    Participant

    i have a website with elementor, astra, learndasg and bbpress, when i do a new replie from a topic i dont have problem that show the replie like a thread but in a other page that have inserted the topic with shortcode i dont add a new replies like a thread, appears like a new replie, i can show images if you want

    mkbond
    Participant

    Hello, there!

    We work with BuddyBoss but with a primary focus on forums/topics with bbPress.

    So I’m having issues with the hierarchy of forums and discussions and… I’m trying to have a page for each forum — with all of the discussions listed as a post grid (not BuddyBoss’ Forum Grids, need this to vary from page to page). So with regards to taxonomy and filters, I want to have the parent category defined as a particular forum, and the children categories to be the discussion within that same forum. Example: Need different pages for Recipes, and need a page for Desserts (forum) that shows all the different desserts (discussions/topics), not showing all the other forums (Desserts, Main Dishes, etc.) and their discussions (turkey, asparagus, etc).

    I’ve been playing with Beaver Builder and Gutenberg blocks, but it seems that some plugins have issues reading Custom Post Types, which is what forums and discussions/topics are. And the ones that can, like Beaver Builder, will only let you show the Post Type as Forums, and then you can filter to what forums you want to show, but if you only pick one, then it’s just one lone block. And if I set the Post Type to Discussions, then I have to list each discussion, one by one to display on the page (so each time someone creates a new topic/discussion, it would have to be added to this list).

    We are currently using Beaver Builder but I’m definitely open to other ideas for this. Here’s the Beaver Builder post I made if any of you are familiar with it: Standard Posts Module to Display Category’s Sub-Categories (Child)

    Any ideas or methodologies? I have a web app dev background and am not afraid to modify the functions.php or other files on the backend. See below for what I attempted based on Beaver Builder’s documentation. The second argument for ‘post_parent’ didn’t take, but the post_type did, if I’m not mistaken… leadershipx being the id for the Posts module, but I’ve been looking into wp_query as well (never coded anything yet with wp_query, but happy to learn).

    function fl_builder_loop_query_args_filter( $query_args ) {
      if ( 'leadershipx' == $query_args['settings']->id ) {
        $query_args['post_type'] = array( 'topic' );
        $query_args['post_parent'] = array( '4773' );
      }
      return $query_args;
    }
    add_filter( 'fl_builder_loop_query_args', 'fl_builder_loop_query_args_filter' );

    WordPress v5.5.1, BuddyBoss v1.5.3 (I don’t know where to find bbPress version inside BuddyBoss, but we have the most up-to-date version of BuddyBoss, so I would assume it’s the most recent version of bbPress)

    Site: https://www.mycionetwork.com/

    #215485
    Robin W
    Moderator

    just tried that code on my test site and it works fine.

    where are you putting it ?

    #215482
    Robin W
    Moderator

    ok, try this

    add_filter( 'bbp_before_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
    
    function my_bbp_filter_search_results( $args ){
        $forum_id = 1715;
    
        if( $forum_id && is_numeric( $forum_id ) ){
     
           $args['post_parent'] = $forum_id ;
        }
    
        error_log('Dedicated forum = ' . $forum_id);
     
        return $args;
    }
    
    #215479
    talbotp
    Participant

    Hey Robin, Thanks for the reply, really appreciate it. I added this to my themes functions.php (from the article above), but hardcoded in a forum_id, just to test it out, and it doesn’t seem to work.

    
    function my_bbp_filter_search_results( $r ){
        $forum_id = 1715;
    
        if( $forum_id && is_numeric( $forum_id ) ){
     
            $r['meta_query'] = array(
                array(
                    'key' => '_bbp_forum_id',
                    'value' => $forum_id,    // 1715 x , 11 , 1717 , 
                    'compare' => '=',
                )
            );
             
        }
    
        error_log('Dedicated forum = ' . $forum_id);
     
        return $r;
    }
    add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
    

    the error log is coming through when the page is loaded, but i’m still getting discussions from other forums in the search results.

    #215472
    Robin W
    Moderator

    from a very quick look, that code looks like it should work, and not seen anything else that does this, so try it, and if it doesn’t work, come back

    Robin W
    Moderator

    your theme or elementor is doing this

    it has a css entry

    .has-sidebar:not(.error404) #primary {
    	float: left;
    	width: 58%;
    }

    you could change this to 100% in your custom css ie put this in your custom css

    .has-sidebar:not(.error404) #primary {
    	width: 100% !important;
    }

    but it might affect other parts of your site, so try it and see

    #215470
    Robin W
    Moderator
    #215469
    Robin W
    Moderator

    sorry, this one slipped by

    add this code, changing ‘shortcode here’ to the actual shortcode you wish to execeute

    add_action( 'bbp_theme_before_reply_form' , 'rew_add_shortcode'); 
    
    function rew_add_shortcode () {
    	echo do_shortcode( '[shortcode here]' );
    }

    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

    truth4vahid
    Participant

    How can I insert short codes under/above each topic page or whole topic and reply page?

    #215457

    In reply to: Customization

    wenlu
    Participant

    Can I fix the problem by changing its codes in the specific files ?
    If yes, due to I’m a new to WordPress, I don’t even know where should I edit the code.

    #215448

    In reply to: Customization

    Robin W
    Moderator

    this still works as far as I know

    How to Add WordPress Conditional Content to Sidebar Widgets

    so you would use

    !is_bbpress()

    against the my posts – so that will only show on non bbpress pages

    #215442
    samtime
    Participant

    Hi Robin, thank you for the code.
    I replaced my existing code with what you pasted here, unfortunately it didn’t fix the issue.
    Tried replacing the “WooCommerce” part with “woocommerce”, but still no luck.

    Thanks for the reply. If you have any other ideas, it would be greatly appreciated.
    I’ll keep searching.

    Thanks again,
    Sam

    Here’s the website btw:
    https://funkytime.tv/forums/

    cgauthey
    Participant

    Hello,
    I have a problem here my forum is small when I look at it on the index I would like to take the full width of the page.

    How to do what code I will be able to enter in the CSS

    See here https://perso-blog.fr/buisness-strategie/forums/

    #215425
    Robin W
    Moderator

    there are several plugins that do this eg

    CB Change Mail Sender

    or you can google for code

    #215413
    Robin W
    Moderator

    ok, a couple of thoughts just looking at that code

    The first would be to break it into a function, nested stuff can sometimes fail so

    add_action('init', 'rew_check_bbpress_moderator') ;
    
    function rew_check_bbpress_moderator(){
    	if(class_exists('WooCommerce') && function_exists('bbp_get_user_role') && is_user_logged_in()){
    		$current_user = wp_get_current_user();	
    		$user_id = $current_user->ID;	
    		$bbp_get_user_role = bbp_get_user_role($user_id);
    
    		if($bbp_get_user_role == 'bbp_keymaster' || $bbp_get_user_role == 'bbp_moderator'){	
    			add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
    			add_filter( 'woocommerce_disable_admin_bar', '__return_false' );
    		}
    	}
    }

    Secondly I think woocommerce is all lower case so

    if(class_exists('WooCommerce')

    might need to read

    if(class_exists('woocommerce')

    Let us know if either of these help

    #215402
    samtime
    Participant

    Hi,
    After updating WooCommerce to the latest version (4.6.1), the plugin is now hiding the WordPress admin bar for bbPress moderators and keymasters. Making it harder for them to moderate the forums.

    The following code in my functions.php file used to resolve the issue, however it no longer works:

    add_action('init', function(){
    if(class_exists('WooCommerce') && function_exists('bbp_get_user_role') && is_user_logged_in()){
    
    $current_user = wp_get_current_user();	
    $user_id = $current_user->ID;	
    $bbp_get_user_role = bbp_get_user_role($user_id);
    
    if($bbp_get_user_role == 'bbp_keymaster' || $bbp_get_user_role == 'bbp_moderator'){	
    add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
    add_filter( 'woocommerce_disable_admin_bar', '__return_false' );
    }
    }
    });

    I posted this question to the WooCommerce forums and am also posting it here in case anyone else is having similar problems?

    Any help or ideas greatly appreciated.
    Thank you,
    Sam

    WordPress 5.5.1
    bbPress 2.6.5
    WooCommerce 4.6.1

Viewing 25 results - 2,226 through 2,250 (of 32,466 total)
Skip to toolbar