Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,676 through 2,700 (of 26,830 total)
  • Author
    Search Results
  • #209181
    #209178
    manish198530
    Participant

    hello

    i am using bb-press plugin in my theme
    i have to add short code in my page with word-press function like this in .php page
    “<?php echo do_shortcode(‘[bbp-forum-index]‘); ?>”

    it’s not working on .php page
    —————————————
    but when i create page in wordpress admin section and add shortcode on page it’s working

    but on .php page it’s not working
    can you please help me what i am doing wrong

    Thanks 🙂

    #209177
    poco06
    Participant

    Hello,

    I’m using bbpress with the DIVI theme and got an issue : the [bbp-forum-index] shortcode returns only 50 forums end no more !
    I have also tried with the Twenty Twenty theme and got the same issue.

    Any idea how I could display more than 50 forums with this shortcode?

    Wordpress 5.3.2 and bbpress 2.6.4
    Regards
    Pat

    #209162
    Chuckie
    Participant

    In WordPress? Yes, my domain provider has previously given me guidance on that. I try that if it is what you mean?

    #209136
    Robin W
    Moderator

    I just googled ‘A variable mismatch has been detected’ (googling an error is always a good start)

    and got this as a thread

    https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected-6/

    which suggests might be worth you looking at php versions

    #209061

    Topic: Multilanguage

    in forum Themes
    Henry Obrien
    Participant

    Hi I wonder if anyone knows a good template for a multilanguage site? I need both English left>right and Arabic right<left. I tried to have a site in Wix but it didn’t work so I will try WordPress but can’t find a template that can handle both languages without problems.
    thanks for your help!
    Henry

    alexei1966
    Participant

    Dear friends,
    At some point disappeared text from topics. Cannot say exactly at which moment, because it’s not my web-site, but that of a friend of mine.

    All content is present in the database (forums, topics, replies). The TOC of a forum is displayed correctly:

    Фотосъемку

    But when I click on any link to see the topic with replies, I see the following:

    Макросъёмка

    No text, but the rest is displayed well, including images.

    Settings:
    1. bbpress 2.6.4. All other plugins are disabled at the moment (except GD bbPress Attachments, which does not affect). Deleted and reinstalled it from the scratch. Before reinstallation deleted all the settings of bbpress manually from the table wp_options (DELETE FROM on_options WHERE option_name LIKE “bb%”;). No result.
    2. WordPress 4.9.9 with generic theme Twentyseventeen. Change the theme to others – no result either.

    Please help. Thank you in advance.

    #209045
    diana74
    Participant

    I have wordpress site and want to add “accept term and conditions ” to the forum registration form” in bbPress. How to do this?

    #209028
    mddsharp
    Participant

    I am using the latest WordPress and BBPress as of 2/29/2020

    I don’t know if this is intentional or a bug, but I am throwing it out there.

    If you go to the WordPress dashboard, all Topics, and post a new topic with no forum, it will actually post but not show up anywhere. It won’t even show in topics.

    If another user knows the URL of the topic post, he/she can reply. But, that reply won’t show up in replies in the dashboard.

    If you attempt to delete it by going to the URL and clicking Trash, the browser will start processing it but after 45 seconds it says “This page is not working” but it does delete the post.

    #209027
    packzap
    Participant

    Lately, since the first of the year, Akismet has occasionally been flagging valid replies (posts) and topics as Spam. Thus, not publishing the posts until I manually go in and “unspam” them. These false positives are very frustrating. It is doing this to people that have posted in my bbPress forum for years. What gives?

    I am running WordPress 5.32, bbPress 2.64 and no changes to the Twenty-Fourteen theme in years.

    In Akismet, I only see settings to basically run, or disconnect. I am tempted to do the latter.

    #208971
    Robin W
    Moderator

    probably site issue – bbpress just uses WordPress registration

    #208969
    Robin W
    Moderator

    my style pack plugin has an unread section which I think is what you want

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>

    dashboard>settings>bbp style pack>unread posts

    #208968
    Robin W
    Moderator

    my style pack plugin has an unread section which I think is what you want

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>

    dashboard>settings>bbp style pack>unread posts

    #208950
    Robin W
    Moderator

    ok, put this in your child theme’s function file – or use

    Code Snippets

    add_filter( 'bbp_register_topic_post_type', 'rew') ;
    
    function rew ($rew) {
    
    $rew = array(
    				'labels'              => bbp_get_topic_post_type_labels(),
    				'rewrite'             => bbp_get_topic_post_type_rewrite(),
    				'supports'            => bbp_get_topic_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Topics', 'bbpress' ),
    				'capabilities'        => bbp_get_topic_caps(),
    				'capability_type'     => array( 'topic', 'topics' ),
    				'menu_position'       => 555555,
    				'has_archive'         => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false,
    				'exclude_from_search' => true,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_topics_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew ;
    }
    
    add_filter( 'bbp_register_reply_post_type', 'rew2') ;
    
    function rew2 ($rew) {
    
    $rew2 = array(
    				'labels'              => bbp_get_reply_post_type_labels(),
    				'rewrite'             => bbp_get_reply_post_type_rewrite(),
    				'supports'            => bbp_get_reply_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Replies', 'bbpress' ),
    				'capabilities'        => bbp_get_reply_caps(),
    				'capability_type'     => array( 'reply', 'replies' ),
    				'menu_position'       => 555555,
    				'exclude_from_search' => true,
    				'has_archive'         => false,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_replies_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew2 ;
    }
    #208945
    mindylll
    Participant

    Sometimes, in our forums, a post shows up twice or even three times. Is there a fix for this?

    Version 5.3.2 of WordPress
    The most recent version of BBPress

    #208929
    mattpont
    Participant

    Download the zip file in Robin’s link. Upload and activate to your WordPress website as a plugin.

    Sadly it didn’t seem to fix mine though, but has worked for others.

    #208925
    Robin W
    Moderator

    bbpress just uses WordPress login, so the issue is there.

    wordpess doesn’t gave this feature in native mode, so I suspect you have another password/login related plugin that is causing the issue

    #208870

    In reply to: Managing users

    Chuckie
    Participant

    I think you just need to google for the plugins and try them.

    I use Theme My Login for managing the login etc.

    Theme My Login

    I use WP Approve User to add control:

    WP Approve User

    I use WP Security Question for the spam side of things:

    WP Security Question

    I customised my user table to show the security question answers in a new column.

    There are probably other solutions, of which are paid, but the above help me sufficiently (for now).

    artmuns
    Participant

    This is an odd one. I set a topic to Super Sticky but was unable to change to Normal. After Update it would revert back to Super Sticky. I was able to change to Sticky from Super Stick but still can not change to Normal.

    Wordpress 5.3.2
    bbPress 2.4.6

    musiclibraryreport.com

    Thanks for any help.

    #208829
    Robin W
    Moderator

    I think this is what you need

    Private groups

    #208821
    ichameleon
    Participant

    Hi – I have successfully added a bbpress forum (Version 2.6.4) to a new site with a custom theme on WordPress (5.3.2). I’m wondering if anyone can help recommend plugins to tackle some (I think) fairly standard requirements.

    I’ve tried a few combinations myself without complete success so I’d really appreciate some guidance.

    I’m trying to –

    • Allow user registration (sign up, get password, manage profile, password reminder),
    • Admin manually approve/suspend/delete users,
    • Prevent spam,
    • Import users from the previous forum using a csv of username and email.

    Sorry if it all seems a bit basic but I’m tying myself up in knots finding the right plugins.

    #208819
    Robin W
    Moderator

    ok, thanks, got it

    my style pack lets you put then topic title in the last column

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Freshness Display

    #208804
    vinem
    Participant

    Hi there,

    I’m building a website with Elementor Pro and bbPress.
    I created 2 different Headers: a main one for the Landing page and blog, and another one for the forums.
    I used the shortcode to display the forums index on a page I’ve built with Elementor and the Header works fine. But when it comes to the automatically created single pages (topic, reply, search, etc.), it displays the main Header.

    I contacted Elementor support, not knowing if the issue was on their side or on yours, and they told me I had to contact you, explaining me this :
    “For your information, we usually find this happening when creating custom post types where it is excluded from showing in menus via the custom post type’s “show_in_nav_menus” option; this option is found in the post type’s “register_post_type” function used to add it in WordPress and may be set to “false” in this case […] we highly recommend contacting the bbPress support team to help with changing this option to “true”. The solution we suspect would be similar to using the function code mentioned in this bbPress support post but with the ‘show_in_nav_menus’ variable set to ‘true’ > https://bbpress.org/forums/topic/plugin-snippet-hack-to-include-bbpress-topics-in-wordpress-search/

    So, here I am! Can someone help me, please?

    Thank you!

    #208790

    In reply to: Syntax Highlight

    Chuckie
    Participant

    I just wanted to point out that Enlighter is a fantastic plugin for syntax highlighting.

    Enlighter – Customizable Syntax Highlighter

    The current version works with bbPress 2.6 although it has a conflict of interest with one feature. It is discussed here:

    https://github.com/EnlighterJS/Plugin.WordPress/issues/211

    At the moment I don’t really know how I can supress the conflicting CSS styles referred to in the above link.

    I should also point out that at the moment the version 4 beta is not working with bbPress yet. Although, it is supposed to resolve the aforementioned issue concerning conflicting CSS styles.

    Eitherway, I am happy to know about Enlighter. Thumbs up from me!

    #208748
    Robin W
    Moderator

    basically bbpress has the ability to add columns via a filter

    This should do it

    add_filter("bbp_admin_replies_column_headers", 'rew_IP_column_add');
    add_filter("manage_reply_posts_custom_column", 'rew_IP_column_value', 10, 3);
    
    function rew_IP_column_add($columns)  {
    	$new = array();
      foreach($columns as $key => $title) {
        if ($key=='bbp_reply_forum') // Put the forum ID column before the Replies forum column
          $new['rew_id'] = 'IP Address';
        $new[$key] = $title;
      }
      return $new;
    }
    	
    function rew_IP_column_value($column_name, $id) {
    		if ($column_name == 'rew_id') echo get_post_meta( $id, '_bbp_author_ip', true );
    }

    Put this in your child theme’s function file – or use

    Code Snippets

Viewing 25 results - 2,676 through 2,700 (of 26,830 total)
Skip to toolbar