Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,151 through 1,175 (of 11,654 total)
  • Author
    Search Results
  • #213314
    bobwhallz
    Participant

    Hi
    I have a transparent header built with Astra theme and Elementor page builder. I am also using BuddyPress on my site.

    I would like to change all the bbpress forum pages header to a different background color, none white, so the header menu can display properly.

    What css codes should i use?
    Bbpre Version 2.6.5 on latest WordPress installation
    Thank you

    #213304
    fl3xtra
    Participant

    Excellent. Fixed.

    Second: It looks like if they try to edit it more than once? I’ll do some tests today to get an exact answer.

    Tobias Claren
    Participant

    Hello.

    I have installed WordPress.

    For testing, also MyBB in /forum.
    I ask myself the question, is BBpress an alternative to extra forum scripts now?
    A few years ago, BBPress was quite rudimentary, wasn’t it? Did this change?
    Can BBpress keep up with all available plugins in the range of functions with forum scripts such as SMF, MyBB, phpBB etc.

    Is there a good clear list of all plugins for BBPress?
    Possibly with usage ranking. There will be a reason if certain plugins are used very often.
    But also curated recommendations.
    The plugin list here is very “simple”.
    21 pages with 10 plugins each, not sortable, no recommendations or rating based on usage (not quality rating) …
    I saw user avatars. But there may be different plugins for the purpose.
    Or a map with the members.
    I don’t know where to start.
    And doesn’t want to try out hundreds of plugins.
    E.g. such an insignificant little thing as using homemade forum icons.

    #213182
    chaosfranklin
    Participant

    I watched tutorials of the setup and see people testing the registration. They showed new users were required to activate their accounts by email.

    Unfortunately, I cannot give the url due to the mature nature of the content. I don’t want to get ban.

    I am using this plugin to to hide the administration login.

    Hide login page, Hide wp admin – stop attack on login page

    #213173
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #213115
    Robin W
    Moderator

    not tested (I manually approve new users, but that is just because of the type of sites I run) but this might help

    Stop Spammers

    #213103
    Robin W
    Moderator

    ok, without getting heavily involved in coding a solution for you (which is my paid day job 🙂 ) I guess that you have hooked to ‘template redirect’ which fires on everypage, so when WordPress displays the test-page it looks again for a value of topic_id, which on the test page does not exist, so returns zero.

    if your code is working in that it redirects to test page, then you could try appending the topic id and picking that up in $_REQUEST

    eg (untested)

    wp_redirect('/test-page/?topic_id='.bbp_get_topic_id());

    and then on test page use the code

    if (isset($_REQUEST['topic_id'])) $topic_id = $_REQUEST('topic_id') ;

    #213100
    nayanboost
    Participant

    I am writing this code in functions.php and when I am trying to dump data using
    print_r (bbp_get_topic_id());

    It is returning 0.

    When the above mentioned condition is met I will redirect to another page.

    function test_rdr (){
        if (bbp_get_topic_forum_id(bbp_get_topic_id()) == ‘ID of the Parent forum’){
            wp_redirect('/test-page');
            exit;
        }
    }
    add_action('template_redirect', 'test_rdr')

    Please help me to get over with it.

    #213078
    Robert
    Participant

    Here’s the link to the test blockquote…

    Question 3 – Best tabletop role-playing game?

    #213052
    renatoscarvalho
    Participant

    Hi, I’m having a problem with threaded replies. When I try to reply a post, instead of the new post being nested, it creates a new post at the same level of the previous.

    I have tried two bbPress installs, with different themes, and they both show the same problem.

    I have also tried installing bbp Style Pack and checking “bbPress Bug Fixes/Fix Threaded Replies Jump” with no success.

    You can try here and see the problem: rescola.com.br/bbpresstest02/index.php/forums/topic/hi-this-is-a-forum

    #213004
    kevvyb
    Participant

    Hi

    I have just installed bbPress on my site. I craeted a test user to see how it works. I was horrified to see that the email included a url for registration that is the admin url I use. I have changed this from the default for reasons of security and do not realy want to be sending out my wp admin login url to everyone who registers on the site. Is there a way around this or is it a wordpress thing?

    #213002
    cassel
    Participant

    I just found the same one! And it works well too! (just tested it)
    Happy user here!

    #212960
    kriskl
    Participant

    yhm,
    I will try on another test site
    maybe some plugin conflict..
    here is some code above and below

    //ONLY BBPress below
    //create vertical list subforum layout
    function custom_bbp_sub_forum_list() {
      $args['separator'] = '
    ';
      return $args;
    }
     add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );
     
    
    function ra_bbp_increase_pagination($args) {
        $args['end_size'] = 0;
        $args['mid_size'] = 3;
        return $args;
    }
    add_filter( 'bbp_topic_pagination', 'ra_bbp_increase_pagination' );
    
    function rk_hot_topics() {
       $reply_count = bbp_get_topic_reply_count();
      
       if ( $reply_count > 5 )
          echo '<span class="hot">HOT</span>';
    }
      
    add_action( 'bbp_theme_before_topic_title', 'rk_hot_topics' );
    #212959
    Robin W
    Moderator

    hmm end works with 0 on my test site !

    #212925
    forehanded5
    Participant

    I just installed bbPress through the plugin panel and added some test forums. It seems like there is a very large empty DIV that I don’t know how to get rid of causing a large space between the forum header and the forums. Any ideas on how to get rid of it?

    It’s only showing up on the main forums home page and not any other pages when you navigate into the forums or posts.

    Currently using the Uncode theme. WP, plugins, themes, etc are all up to date.

    Forums are at: http://foxtrotbattleline.com/forums

    kriskl
    Participant

    Hi,

    I would like to remove the last page numbers in pagination,
    is there any function code to do this?

    at the moment, on latest topics on a big forum.. it shows like this..

    1 2 3… 8432 8442 8445 →

    Thanks
    kris

    #212906
    wiebke.wetzel
    Participant

    Hello Robin,

    I created an open and public testforum for you:

    Testforum

    Can I somehow send you login credentials for a test user in a private message? I have opened the forum for guests without accounts, but apparently they cannot edit their posts anyway.

    Thanks for your support!
    Wiebke

    #212854
    Mike8857
    Participant

    Thanks for the response. My test site is:

    http://escwebmaster-001-site3.itempurl.com/

    Membership>>Members Only>>Member Discussion Forum

    Uername: bbpress
    Password: bbpress

    Thank you

    #212824
    teichhorst
    Participant

    Hi there,

    there have been two posts that kind of go into this topic, but the solutions offered there didn’t help (yet). Maybe I did something wrong, idk.

    I’ll back up a little. Here are the steps and error(s):

    1. Click on registration
    2. Type in the username to be used
    3. Type in the e-mail address
    4. Hit submit
    5. Loading until ERR_TOO_MANY_REDIRECTS

    Funny thing is that even if I didn’t fill in the required fields, the registration runs into the error.

    What I tried so far:
    – De- and re-activating plugins
    – looked in the error.log and Plesk Protocols
    – Updated the permalink structure
    – … maybe more

    but nothing’s to be found, nothing’s changed. Latest versions of WordPress, Avada (Theme) and bbpress are installed. There also are no SSL or htaccess problems that I know of.

    Hopefully there’s someone who knows a solution to this issue.

    Thanks and best regards
    Tim

    #212756
    kenaustin3rd
    Participant

    Okay, I have been experimenting quite a bit and so far I have everything tested and working…thank you very much for the help…there is just one item I cannot figure out…changing the color of the individual post replies (headers/body/footers) the code I ended up with when I inspected was:

    div#post-133.bbp-reply-header

    then following that there is a much longer one that says it’s a loop item. Surely I am looking at the wrong items and there is a parent to those somewhere to change it once…any ideas?

    #212754
    Chuckie
    Participant

    Have you tried:

    input#bbp_anonymous_author,
    input#bbp_anonymous_email,
    input#bbp_anonymous_website,
    input#bbp_topic_title,
    textarea#bbp_topic_content {
     background-color: #313131;
    }

    I have not tested it.

    #212736
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #212661
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #212659
    Robin W
    Moderator

    the latest version changed some phrases and they have yet to be added into the translations.

    you can use

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>translations

    #212631
    franpeppe
    Participant

    Hello,
    Here is the root page where is possible to try:

    https://www.eyecadvr.com/home-community/

    this page is under elementor and with shortcodes it should display 5 forum roots but instead it displays just 1. As you can see at the right side is empty but before there was “Latest Posts” and “Thread Tag Cloud”.
    By clicking on that first forum root folder, it will redirect to another page that is completely without CSS and without other functions; But once inside, clicking on the sub folder it will redirect in the right page where everything becomes perfect and correct as it should be in every page.

    Hope that these informations can help you in order to help us.
    Thanks.

Viewing 25 results - 1,151 through 1,175 (of 11,654 total)
Skip to toolbar