Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 29,801 through 29,825 (of 64,518 total)
  • Author
    Search Results
  • #118034
    midian42
    Participant

    perfect! thank you so much! will get on it when i get back home. thx again!

    #118033
    Pippin Williamson
    Participant

    Sorry, I definitely told you wrong before.

    Setting a forum to private will make it so only logged-in users can view it. Logged-out users will get a 404 error.

    You can also adjust the permissions that any individual user has for the forums by going to the user’s profile editor in the admin, as shown in the screenshot below:

    user permissions

    #118032
    midian42
    Participant

    one last q and i promise i wont bug you anymore. Do you know if making it a private forum will at least provide some amount of privacy or will it make the forum not function properly? sorry for the typos, on my phone now.

    #118031
    Pippin Williamson
    Participant

    That is not possible out of the box, only with custom modifications.

    #118030
    midian42
    Participant

    Fantastic! Do you happen to know how I can make it so only forum registrants can view posts? Or is that not possible?

    Thanks so much for your help. I’ve been spinning in circles for 2 hours so you’ve been a Godsend!

    #118029
    Pippin Williamson
    Participant

    See the attached image. It’s the Global Access setting you want to adjust.

    enter image description here

    #118028
    midian42
    Participant

    I can’t see that setting anywhere. I would like to make it so only forum registrants can use the forum, not all users on my website. I’m sure I’m probably just missing it but I’m still missing it. Can you tell me exactly where it would be?

    #118027
    BobHatcher
    Participant

    Here is the contents of my child theme. Is this correct?

    Theme Name: Twenty Ten bbpress Child
    Theme URI:

    Description: Child theme for the Twenty Ten BBpress theme
    Author: Bob
    Author URI:

    Template: bbPress (Twenty Ten)
    Version: 0.1.0
    */

    @import
    url(“../bbPress (Twenty Ten)/style.css”);

    In the last line, should it read the name of the subdirectory, i.e. bbp-twentyten or the name of the actual theme, bbpress (Twenty Ten) ???

    #118026
    BobHatcher
    Participant

    I know how to create child themes in WordPress, but given that bbpress uses a special theme within the plugins subdirectory I am confused as to where it goes. Can someone please tell me where to put it?

    Does the child theme go in this directory?
    /Clean_Test/wp-content/plugins/bbpress/bbp-themes

    Or, here:
    /Clean_Test/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/bbpress

    Or, some other place?

    #118023

    In reply to: Persian BBPress

    BBP-Persian
    Participant

    There Has No Reply To This Topic ?!!
    Thanks A lot for You Best Support In World.

    #118021
    luke@mobiah.com
    Participant

    This was the previously mentioned link with “legacy” in it: https://codex.bbpress.org/legacy/themes-and-templating/ – this references a templates directory which I believe has been taken out of the plugin architecture.

    #118020
    luke@mobiah.com
    Participant

    Hidy ho,

    I’m working on creating a child theme for a site and am looking for the right tutorials. I found this link below: http://codex.bbpress.org/legacy/step-by-step-guide-to-creating-a-custom-bbpress-theme/ and was pretty sure this was the most current. Can anyone confirm this is the most up-to-date information for child theming bbpress?

    I found and followed a different tutorial that also had “legacy” in the slug – so any help you can offer here would be appreciated.

    Thank you.

    Luke

    #118018
    Pippin Williamson
    Participant

    There is an option in Settings > Forums to control which user types have access to post in the bbPress forums.

    When a user is created in bbPress by registering, they are always added to WordPress.

    #118017
    Pippin Williamson
    Participant

    Are you trying to append to the content of the main topic content (the lead), or to all replies within a topic?

    #118016
    Pippin Williamson
    Participant

    Are you using a custom background image feature from your theme, or the built-in background feature provided by WordPress?

    q5sys
    Participant

    Current site:
    Wordpress V 3.4.2
    bbpress V 2.1.2
    Buddypress V 1.6.1

    Old site:
    Wordpress 1 user
    phpbb v 3.10 40 users

    I converted my forums over to bbpress. Everything went fine.
    All the threads and users where there.
    I installed buddypress as well and that works fine.
    buddypress automatically synced up with all of the existing users.

    I’m building the site up though so the activity on the site is low. However I’ve noticed something. All of the buddypress features work perfectly. However with bbpress no one can post or reply. In fact the only way admin can do anything is to do so through the dashboard. If admin is broswing the forum he cant reply or create a new topic.
    The edit box is there, but when you click ‘submit’ it just reloads the page and nothing happens. I’ve tried this with users at all levels.

    I wanted to integrate bbpress into buddypress, but the only way I can do that and retain my existing data is to choose group forums with existing install, but that wont work because i dont have a bb-config.php

    I have completely disabled buddypress and the problem still exists. Somewhere something in my bbpress configuration must be messed up. any help?

    #118013
    Philip John
    Participant

    I’m trying to add featured images to forums. I have successfully filtered the register_post_type call like so;

    /**
     * Add thumbnails to forums
     */
    function ys_forum_featured_images( $post_type ) {
         $post_type['supports'][] = 'thumbnail';
         return $post_type;
    }
    add_filter( 'bbp_register_forum_post_type', 'ys_forum_featured_images' );
    

    That did not, however add the meta box to the post edit page so I further used the following;

    /**
     * Add featured image meta box
     */
    function ys_bbp_featured_images(){
        add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', 'forum', 'side', 'low');
    }
    add_action('add_meta_boxes', 'ys_bbp_featured_images', 100);
    

    The meta box then appears but in the image details I see the “Insert into post” button and “Delete” link but no “Use as featured image” link.

    Any idea how I get that added?

    The only thing I could find were these tickets talking about the link appearing when it shouldn’t:
    http://bbpress.trac.wordpress.org/ticket/1633
    http://core.trac.wordpress.org/ticket/18669

    BobHatcher
    Participant

    Does there exist anywhere a listing of each file and what it does? How in the world do we newbies figure out which file does what?

    Any thoughts?

    Bob

    #118007
    ickzorn
    Participant

    I’m playing around with different htaccess rules for a while now and can’t figure out, how this should work. I think I don’t get the clue how this will work with htaccess.

    The condition has to rewrite just the URL from http://www.domain.com/forums to forum.domain.com. So all bbPress stuff isn’t redirected within the database etc. I think this is what I need. Am I right?

    #117994
    mpriola
    Participant

    I continue to have problems with the sidebar showing up below my content.

    In looking at the code generated by bbpress, I have noticed that on certain forum pages (the affected ones), bbpress is leaving out the opening body tag.

    My forum is at: http://www.cormacmccarthy.com/forums. Click down into any of the forums, and you’ll see:

    –All the sidebar content is below the main forum table, which expands to fill the whole screen.

    –The header and top menu content is disorganized and not properly styled.

    –When you view the source code for the page, you’ll notice the missing tag.

    I’ve done plenty of troubleshooting myself, but an absent body tag, together with a not-closed head tag, needs to be addressed before I can really do anything else–given the reliance of most style sheets on the presence of those tags.

    Any thoughts?

    #117985
    brandy42
    Participant

    Hello,

    When I viewed the bbpress.org demo forums my expectation was that my forums landing page would look the same as the demo after installation but in fact it does not.

    Could someone please help me with a solution exactly the same as the bbpress forums landing page which shows the latest topics with the exact same information displaying?

    • Topic (ex. bbPress 2.2)
    • Voices (ex. 14)
    • Replies (ex. 14)
    • Freshness (ex. 2 weeks, 4 days ago (avatar) (name of member who last posted)

    From my understanding the widget called (bbPress) Recent Topics already has this functionality but is lacking the information to display Voices, Replies and (avatar) (name of member who last posted) .

    What is the easiest way to implement this? Modify the widget? Create a new widget? Implement the code into the Forums landing page itself?

    Any help would be greatly appreciated!

    Thanks very much!

    #117982
    Pietro
    Participant

    Hi Guys…
    Please. I have a little problem. My wordpress theme has backgrounds in every page, but in bbpress pages I have not the possibility to set one. Could You help me explaining me how to add at least 1 background for ALL the bbpages ?? Thank You.
    Pietro

    #117981
    kraigg
    Participant

    I’m also looking for a solution to this, without hacking the core bbPress files.

    The forward and back arrows (‘←’ and ‘→’) are not very accessible to people who use screenreaders.

    #117980
    hixsonb
    Participant

    I really hate to open a new topic since there seems to be several on the subject I have in mind. Which involves issues when trying to import a bbPress 1.1 installation to WordPress 3.4.2 using the bbPress 2.1.2 plugin.

    I have read the other topics but I am still not getting something right or I am just overlooking a step.

    As stated, I have a current bbPress 1.1 installation that is integrated to my WordPress installation.

    When I fill out all the fields in the Import Forums section, it starts the process but I receive a message “No forums to convert”, “No topics to convert” and etc. However, there are no errors.

    I looked in the WP_Options table for the bbp_converter_query option to see if it provided any information but that option was not there.

    After everything completes, I do run the Repairs and Recounts to no avail.

    Quite honestly, to me… it looks like the plugin is not connecting to the database even though I know the settings are correct.

    Any assistance would be very much appreciated.

    Thanks much,
    Bert

    Nuno
    Participant

    Anything new about this?

Viewing 25 results - 29,801 through 29,825 (of 64,518 total)
Skip to toolbar