Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 8,501 through 8,525 (of 64,490 total)
  • Author
    Search Results
  • #186211

    Topic: dien hoa ha nam

    in forum Installation
    fpthanam24h
    Participant

    Hi, i want to ask, what plugins is used on bbpress.org forum ?
    I see any plugin on avatars, maybe next plugin to mark title on forum dien hoa ha nam (http://dienhoahanam.net/)

    Can you tell my ? Thanks

    #186210

    Topic: fpt ninh binh

    in forum Installation
    fpthanam24h
    Participant

    Hi, i want to ask, what plugins is used on bbpress.org forum ?
    I see any plugin on avatars, maybe next plugin to mark title on forum FPT Ninh Binh (http://lapmangfptninhbinh.net)

    Can you tell my ? Thanks

    #186209
    peet91
    Participant

    Hi, i want to ask, what plugins is used on bbpress.org forum ?
    I see any plugin on avatars, maybe next plugin to mark title on forum (http://i.imgur.com/8ocaXTG.jpg)

    Can you tell my ? Thanks

    #186207
    locutus1
    Participant

    Just to be clear, I’m using bbPress to make my forums and I assume the big white capital “W” in the blue circle stands for WordPress which is why I think it must be a default login screen.

    #186201
    qwinn
    Participant

    Hello –

    I want my regular blog sidebar to show up on all my forum pages, but for some reason it just won’t appear. If I switch to a different theme, the sidebar appears in most of them, which tells me the bbpress scripts are probably fine.

    In my staging area I added a plugin that adds the sidebar to pages (which is not the default for Twenty Seventeen). That worked fine for regular pages – but still no blog sidebar in the forums. So that’s not the issue.

    My website is: http://qwinnmods.com/

    The forum I’m trying to fix is: http://qwinnmods.com/forums/forum/dragon-age-origins-fixpack-forum/

    As you can see, the forum width is very narrow, plenty of room for a sidebar, but nothing shows up.

    I do have coding experience and am not afraid to try it, I just don’t see how, if the sidebar shows up in the forums when I try it with other themes, why it wouldn’t show up in this theme. So mucking about with child themes or bbpress scripts doesn’t logically seem like it would make a difference.

    Thanks in advance for any help.

    #186192
    TrustedOrb
    Participant

    I have a forum set up and Yoast SEO plugin installed. So, how Yoast work for bbPress? Is there a way to fill out the keyword and meta description fields automatically?

    #186164
    tel-wright
    Participant

    Can you help please. I installed bbpress and buddypress on my wordpress website. Every time someone posts on my forum it is creating a google crawl error.
    I had no crawl errors in google as I fix them as they appear. I now have 140 crawl errors and rising. Please help. Thank you,
    Terry.

    #186162
    baba777
    Participant

    Good day BBpress I am Eze a new BBpress user. I am using BBpress version 2.5.13 and my site is http://haleze.com
    The alignment of my content in BBpress forum is center whereas I want it to be left aligned like regular posts which look attractive.
    I will be grateful if you could be if help. Thank you.

    #186159
    holyemmyjoe
    Participant

    I have the latest wordpress version and bbPress Version 2.5.13.

    My website is https://www.corpa.ng

    I don’t have coding skills and bbPress Sidebar refuse to show on the Forum even after adding it on the widgets.

    Please I need help.

    Thanks.

    #186144
    apd100
    Participant

    Hi, I have bbpress installed but for some reason it automatically tries to display topics before forum list. How can I change this? It’s driving me up the wall! HELP!

    Thank you

    #186137
    willad
    Participant

    Hello, I have also been trying to get a new topic button working for some time. In case it is of help to anyone, this is what seems to work for me.

    I created a wordpress page template “forum.php” and added the following code – it adds a ‘New Question’ button to the forum page but not if it’s the parent forum:

    <?php
    get_header(); 
    
    while ( have_posts() ) : the_post();
    if((($post_type = get_post_type()) == 'forum') ) //make sure we are on a forum
    {
      if(bbp_get_forum_id() != 0) //don't add the button to the parent forum
      {
        ?>
        <a href="<?php echo esc_url( add_query_arg( 'c', bbp_get_forum_id( ), site_url( '/new-topic/' ) ) )?>">New Question</a>
        <?php
      }
    }
    the_content();
    endwhile; // End of the loop.    
    ?>
    <?php get_footer();

    Now when I click the New Question link it opens the page new-topic and the forum I was on when I pressed the button is the forum the new question will be placed in.

    new-topic is a page I created in wordpress, and I gave it a template page-new-topic.php

    It contains the following code:

    <?php
    get_header(); 
    $my_c = get_query_var( 'c' );
    $forum_add_topic='[bbp-topic-form forum_id='.$my_c.']';
    echo do_shortcode($forum_add_topic);
    ?>
    <?php get_footer();

    The line

    <a href="<?php echo esc_url( add_query_arg( 'c', bbp_get_forum_id( ), site_url( '/new-topic/' ) ) )?>">New Question</a>

    in forum.php adds a variable c (which contains the current forum id() -bbp_get_forum_id( ) ) to the url when New Question is clicked.

    In page-new-topic.php this variable c is added to the shortcode [bbp-topic-form forum_id=XXX]

    do_shortcode then runs the shortcode which creates the form.

    I also had to add the following to functions.php to tie the two pages together:

    function add_custom_query_var( $vars ){
      $vars[] = "c";
      return $vars;
    }
    add_filter( 'query_vars', 'add_custom_query_var' );

    You could add this as a plugin if you wish.

    The idea for the shortcode came from this post: post

    How to pass variables through wordpress urls came from this post:

    post-2

    I am new to WordPress and PHP so there may be better ways of doing this but, as I said, this seems to work.

    andrewkusuma
    Participant

    I want to remove/disable totally changing email input value from form-user-edit without using hidden input

    <input type="hidden" name="email" id="email" value="<?php bbp_displayed_user_field( 'user_email', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" />

    I want user only change display name, bio, and password only how to do it?

    #186127
    only4gamers
    Participant

    the problem is when i visiting forum page in admin mode (after login) its showing me:
    “Oops! That page can’t be found.
    It looks like nothing was found at this location. Maybe try one of the links below or a search?”

    and there is nothing in this page.
    but when i visiting same page without login(as normal visitor) its looking good and i can see option to create new topic.

    can you tell me where is the problem ?
    the link is

    Upcoming Games

    my bbpress version is 2.5.13

    #186125
    bullarni
    Participant

    Hi @welshdemon, @reedy

    I have asked about this issue within the 2.6 Release Candidate 3 thread. Have not had a response as yet, however I only asked a couple of days ago. Hopefully someone will respond with positive news soon!

    bbPress 2.6 Release Candidate 3

    Cheers

    #186124
    baba777
    Participant

    Halo Guam, I also have the same issue of bbpress centre alignment. Please assist me. My site is http://haleze.com

    #186122
    Dave
    Participant

    Using the bbpress login widget, after the user logs in, their username is hyperlinked. Does anyone know how to remove this function?

    jeroi
    Participant

    I have newest WordPress and used it to add bbPress. How ever I have added forum as shortcode to my siten page. How ever When is use top menu to add new topic the box where I chose relative parent category till example gaiming, sell, buy does not work. The box is full of those categoires where to put that topic but I cannot select any one of them only no parent stays selected.

    Is there somehow how I cand fix this?

    #186115
    richiwild
    Participant

    Hello guys, i’ve created a website on free hosting. Installed latest version of WP (4.8.1), installed some plugins, theme, everything works perfectly. But, when i installed bbPress 2.5.13, i saw that i wasn’t tested on this version of WB, but i tried. As result: when i go to mydoman.com/forums/ it shows me ERROR 500. Also, when i go in dashboard >> Forums >> List of Forums (maybe it’s named so, cuz i’m using russian version of WP) it also shows me ERROR 500.
    I Decided to downgrade (reinstall) the entire WP without any plugin and theme. I choosed version 4.7.5 as it says that is tested on bbPress 2.5.13. So, i installed WP, installed bbPress, and tried to go to dashboard >> Forums >> List of Forums and it returns me this:

    if image is too small, here’s the link to it: http://i.imgur.com/UPirh3p.png
    Idk what to do and what to try.
    Thanks for helping.

    #186112

    Topic: Easy-to-moderate

    in forum Plugins
    TrustedOrb
    Participant

    Is there any possibility for this?

    I use a bbPress Moderation plugin. When a topic or a reply is held for moderation, I receive a mail (showing the user’s name and the message + heading). Then I need to log in with my admin account, check each and every topic, change the status “Pending” to “Open” and then publish the post.

    This is too difficult to handle is there are a lot of topics and replies. So, are there any ways where I can add a link to the email I receive, so I can read the topic created by the user and directly approve the post by clicking on the link?

    #186109
    Anonymous User 13302461
    Inactive

    Just to confirm this issue exists for me on latest updates,
    Wordpress 4.8.1
    BBpress 2.5.13

    On a long topic (75 pages) exactly the same issue. Only the the most recent replies URLs go to the start of the topic. Older replies URLs work and go to the relevant reply. Sometimes the topic shows 76 pages, other times 75…!

    I thought I was clever and deleted the most recent replies up to the one which was working, all replies links to the correct reply. Then I added one new reply of my own, and voila, broken again and links to my most recent were missing the pagination part of the URL /76/ and clicking the link (despite having /#post-1234545/ in the URL) takes me back to the first page of the topic.

    #186108
    Marcus Quiroga
    Participant
    #186107
    jstuts5797
    Participant

    Hey there guys… there is a specific element on my bbpress forum that I need to customise and I’ve been through the style crib, the bbpress style sheet, and even the bbpress style pack plugin and can’t sem to find in the code anywhere that will help me customize this element. I have a screen shot but now I realize I can’t use screen shots here. The element is the Reply To: element. I know how to make it non transparent… but I can’t figure out where to set that text color at all. The actual text “Reply To” needs to be a different color so it can be seen. I also think there is a glitch in the boarder as well. Any help would be awesome. Here is a link to my screenshot: http://fjrmbfans.us/wp-content/uploads/2017/08/FORUMscreenshot.jpg you’ll see my issue in the bottom portion. Thanks again for all your help!

    #186105
    nobita
    Participant

    Hi I have same error

    PHP7.1
    bbpress2.5.13

    bbpress/includes/forum/functions.php line:1800

    PHP Fatal error: Uncaught Error: [] operator not supported for strings

    			//$post_stati[] = bbp_get_public_status_id();
    			$post_stati = (array) bbp_get_public_status_id();
    

    It worked for me

    #186103
    nilsm1990
    Participant

    Hello,

    i jsut got into WordPress and wanted to use bbPress.
    So I installed bbPress and it lets me change my Preferences under Preferences–> Forum.
    I also can create new Forums and they show up in my bbPress Widgeds.

    However everytime i open the Forum Page an Error occurs. (I copyed the entire Errormessage below).
    I use WordPress on my xampp Server (localy) for testing.

    Also i deactivated all other plugins and changed my theme to wordpress-standard. No Luck though. Im using shapely Theme

    If anyone could help it would be highly aprichiated.

    Fatal error: Uncaught Error: [] operator not supported for strings in C:\xampp\apps\wordpress\htdocs\wp-content\plugins\bbpress\includes\forums\functions.php:1800 Stack trace: #0 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-hook.php(298): bbp_pre_get_posts_normalize_forum_visibility(Object(WP_Query)) #1 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #2 C:\xampp\apps\wordpress\htdocs\wp-includes\plugin.php(515): WP_Hook->do_action(Array) #3 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-query.php(1683): do_action_ref_array(‘pre_get_posts’, Array) #4 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-query.php(3248): WP_Query->get_posts() #5 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp.php(617): WP_Query->query(Array) #6 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp.php(735): WP->query_posts() #7 C:\xampp\apps\wordpress\htdocs\wp-includes\functions.php(955): WP->main(Array) #8 C:\xampp\apps\wordpress\htdocs\wp-admin\includes\post.php(1072): wp(A in C:\xampp\apps\wordpress\htdocs\wp-content\plugins\bbpress\includes\forums\functions.php on line 1800

Viewing 25 results - 8,501 through 8,525 (of 64,490 total)
Skip to toolbar