Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 4,226 through 4,250 (of 26,877 total)
  • Author
    Search Results
  • #186639
    Robin W
    Moderator

    my style pack has a setting for this

    bbp style pack

    dashboard>settings>topic/reply form>item 9

    #186614
    Vinod Dalvi
    Participant

    The shared Elegant Themes support topic page is not accessible for us as it is members only.

    As this functionality works fine with default WordPress 2015 theme so it is not bbPress plugin issue. This seems conflict issue with Divi theme, may be due to not following WordPress standards so please contact the theme author to resolve the issue in the theme.

    #186612

    In reply to: Blank Pages

    Vinod Dalvi
    Participant

    Could you please post here what version of PHP you are using on your server?

    Can you please try temporary enabling WP_DEBUG mode? To do this, just go to wp-config.php include this:

    define('WP_DEBUG',true);

    You might already have a line for WP_DEBUG, so just make sure it’s set to true.

    Let me know what errors if any you are getting when you face this issue.

    Vinod Dalvi
    Participant

    It doesn’t seem bbPress issue but the Image Upload for BBPress Plugin related so please contact Image Upload for BBPress Plugin author regarding this.

    You can contact him here https://wordpress.org/support/plugin/image-upload-for-bbpress

    #186606
    Vinod Dalvi
    Participant

    You can achieve this using below custom code in your site and editing the text “This is custom text” to whatever you want to display.

    function vvd_add_notice_before_topic_form() {
        ?>
            <div class="custom-text">
              <p>
                <?php _e( "This is custom text." ); ?>
              </p>
            </div>
        <?php
     }
     add_action( 'bbp_theme_before_topic_form_notices', 'vvd_add_notice_before_topic_form' );

    You can add that code either in the functions.php file in child theme or in small custom plugin.

    juliettem
    Participant

    Hi there,

    I am currently using the below versions of WordPress and BBPress:
    BBPress version 2.5.12
    Image Upload for BBPress Plugin version 1.1.14
    WP version 4.8.1

    My website is myfertilityfocus.com (the forum is for members only).

    When I originally installed the ‘Image Upload for BBPress’ plugin, there was an option for setting the dimensions of the image that was being uploaded to a post. Now this seems to have disappeared. If a member wants to post an image, there is no way for them to set the dimensions. Do you know what has happened here? Images are ending up way too big on members’ posts!

    #186575
    Vinod Dalvi
    Participant
    #186571
    injili
    Participant

    Hello, please help, I have same problem. Please contribute to https://bbpress.org/forums/topic/allowenable-all-users-create-groups-under-bbpress/

    I need contribution of your ideas please. I have a wordpress site that I am designing and I am stuck. I would like to allow/enable all users to be able to publish/create groups under bbpress.

    I would like to do this urgently. Your ideas are needed.

    Thank you.

    #186570
    injili
    Participant

    Hello great team,

    I need contribution of your ideas please. I have a wordpress site that I am designing and I am stuck. I would like to allow/enable all users to be able to publish/create groups under bbpress.

    I would like to do this urgently. Your ideas are needed.

    Thank you.

    #186566
    Vinod Dalvi
    Participant

    This can be your theme issue used on your site so to confirm it just temporary use the any default WordPress theme like Twenty Seventeen theme on your site. If everything works fine then it’s theme issue.

    #186562
    moejonet
    Participant

    If you are logged in as Administrator and there are private/hidden forums, on the forums page there are listed all available post statuses in wordpress even if there are no posts.

    This is caused by the filter ‘bbp_pre_get_posts_normalize_forum_visibility’.

    IT checks for

    $_REQUEST['post_status'])

    but initial this variable is not set.

    Please fix that. I made a temporary fix including condition

    ( isset( $_REQUEST['post_status']) || current_user_can( 'administrator') )

    #186559
    Vinod Dalvi
    Participant

    I have tested it on my test site and it’s working fine for me using latest version of bbPress plugin.

    Please make sure you are using latest version of bbPress plugin.

    This can be your theme issue on your site so to confirm it just temporary use any default WordPress theme like Twenty Seventeen theme. If everything works fine then it’s your theme issue.

    Also this can be due to plugin conflict on your site so please try temporary deactivating all plugins except Unyson plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.

    Could you please share me your site URL where it’s happening so that i can troubleshoot it?

    #186558
    zopfan
    Participant

    I’ve just started my forum on WP. And made two forums with 1 or 2 topics/posts.

    When I tried to search any word (which I know is there in the topics/forums) in ‘Forums Search’ widget, what I get is my latest WP blog post. Doesn’t matter whether that blog post has that ‘searched word’ in it or not.

    Can anybody tell what’s going on here?

    P.S. My wordpress search is going as it should.

    #186550
    Vinod Dalvi
    Participant

    It’s hard to help you without accessing your site but please try using below CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/ to reduce spacing.

    #bbpress-forums .bbp-forum-info .bbp-forum-content {
        margin: 0 !important;
    }
    #186548
    Vinod Dalvi
    Participant

    Please make sure you have uploaded files to /wp-content/languages/bbpress/ of your WordPress installation. If the /wp-content/languages/ and /wp-content/languages/bbpress/ folders do not exist, create them.

    Also please rename each file of the files to bbpress-language_COUNTRY.extension

    eg. bbpress-plugin-pt-br.po to bbpress-pt_BR.po
    and bbpress-plugin-pt-br.mo to bbpress-pt_BR.mo.
    Note: Ensure you use the – and _ in the correct place per the above example.

    #186534
    emmypong
    Participant

    Hello,
    installed buddypress on my wordpress site and the forum section gives me that error please how can i fix?

    Error displayed

    #186527
    hannibalherman
    Participant

    Hi, i really want to change my language from English to Danish. In my wordpress Settings > i have changed the wordpress language to Danish. But it docent work in bbpress.
    I have the newest version of bbpress, and wp-content > languages there are bbpress-2.4.x-da.po and mo.
    what to do?

    #186521

    In reply to: Post template

    Vinod Dalvi
    Participant

    You can just hide it using below custom CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/

    #bbpress-forums fieldset.bbp-form label[for="bbp_anonymous_website"],
    #bbpress-forums fieldset.bbp-form #bbp_anonymous_website {
        display:none;
    }

    Or you can overwrite following bbPress template file in your child theme and remove website field code from it.

    /bbpress/templates/default/bbpress/form-anonymous.php

    #186504
    Vinod Dalvi
    Participant

    It seems you are getting 500 Internal Server Error so please try fixing it as described on the following page.

    Fix WordPress Issue “Internal Server Error”

    #186500
    jomo
    Participant

    Well we’re all waiting for breaking news for bbPress release or rc4 but online timesheets it is not. And seeing as user onlinetimesheets’ system is built on Microsoft ASP.Net 4 it seems unlikely to make much use of bbPress..

    Now, could we get the bbPress on wordpress.org to add the Plugin name (Forum title) to the email alerts? It’s tiring getting all the alerts with no context about which plugin they refer to.

    Something like this should do it:

    
    function add_the_plugin_name_please( $message, $reply_id, $topic_id ){
      $topic_title  = strip_tags( bbp_get_topic_title( $topic_id ) );
      $forum_title = bbp_get_topic_forum_title($topic_id);
    
      $messageheader = sprintf( __( 'New post in Forum "%1$s", Topic "%2$s".', 'wordpress-org' ),
        $forum_title,
        $topic_title
      );
      $messagefooter .= "\r\n" . "\r\n" . __('Thankyou for participating on wordpress.org', 'wordpress-org' );
        
      return $messageheader . "\r\n" . "\r\n" . $message . "\r\n" . $messagefooter;
    }
    add_filter( 'bbp_subscription_mail_message', 'add_the_plugin_name_please', 10, 3);
    #186477
    jacklii
    Participant

    hello,every budy:
    Now i have a wordpress site, i feel it’s comment editor is not strong, can’t upload image and other files. I found the summernote can meet my requirements. Summernote is very powerful, style is also very beautiful. But it is not a plugin, the need to introduce JS / CSS file, and add the appropriate HTML to normal use. Now i have introduce the js/css files, and i want to replacement bbpress native editor, but don’t know how to do it? Can you help me? Give me some advice and help?
    In this regard, I will be very grateful!
    Best Regards!

    #186465
    michaellanfield
    Participant

    Hello. My new site is not up yet, so I cannot give a link, however, what I would like to know is that on the main page of the bbpress forum, the category name and description for all the forum, has too much space in between them. I would like to reduce the spacing in between all category names/description. How to do this?

    When you look at the screenshot of the website page in particular, you will notice the spacing is large between New and Updates and the description and also between the other categories and their description. I want to be able to see more categories on the page and compact the line spacing. Thank you.

    Wordpress version – 4.8.1
    bbpress version – 2.5.13
    screenshot – https://ibb.co/hZysHQ

    #186453
    Robin W
    Moderator

    install my private groups plugin and enable topic permissions

    Private groups

    #186438
    dcrayon
    Participant

    NAGC Forums


    I am using the latest version of WordPress and BBPress and Divi theme with the Membership works plugin.
    When you click on a topic the “feed” goes out of the theme and there is no way to reply. I have turned off most plugins to see if that was the conflict.

    I have also tried bbpress on a different divi themed site and it worked right away.

    Thanks

    #186417

    Topic: Create main menu

    in forum Installation
    grainosalt
    Participant

    Hello,
    I am using the newest versions of both wordpress and bbpress. My website is forum.campexpo365.com. My question is, how do I add a menu to my site that appears on every page of my forum. I want the menu have options to take you back to the home page, contact page, about page, and to link to the main site page which is in a different location (campexpo365.com).

Viewing 25 results - 4,226 through 4,250 (of 26,877 total)
Skip to toolbar