Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 4,126 through 4,150 (of 6,788 total)
  • Author
    Search Results
  • royho
    Participant

    I am using bbPress 2.2.2 on WordPress 3.4.2. My permalinks are set to /%category%/%postname%/ and bbPress base is default. Another words, I didn’t change any permalink structure in bbPress.

    And I am see the issue on http://domain.com/forums/

    #120840
    rsanchez1
    Participant

    You are not using a unique page template yet?

    What bbPress does is that it looks for certain template files in the theme’s directory. If it finds them, it uses them. If it doesn’t find them, then it uses default fallbacks. The template file for the forum front page is “forums.php”. You could add this file to your theme and have it not include a sidebar. When you install the bbPress plugin, it has twentyten-compatible template files that would be a good starting point to look at.

    royho
    Participant

    Thanks for the reply however I don’t have such dropdown. The only dropdown I see is the default WordPress role dropdown and not one specific for bbPress.

    royho
    Participant

    So I just installed the latest bbPress 2.2.2 and see that all my users have no role set for the forum so I then proceed to use the remap tool to set them a default of participant. This all worked fine however, it also switched my admin account to participant also instead of keymaster. So my question is how do we apply the keymaster role back to the admin?

    #120777
    padekan
    Participant

    Ok , so it’s a bit of physician heal thyself but here’s how I fixed in case other people are having the problem.

    I found this:

    https://codex.bbpress.org/theme-compatibility/

    which shows how to create a custom bbpress.css in 2.0 and later.  Then I changed line 62 to be:

    list-style-type:   inherit /* was ‘none’ */;

    (basically took out the none override for basic list elements).

    Seems like overkill to have a complete copy of bbpress.css just to change one line but I could not find another place to override it.  Tried playing around with trying a skeleton bbpress.css that @import’ed the default one but didn’t have much success with that.

    Anyways, issue has been resolved, thanks!

    regards, Paul

    #120775
    Shane Gowland
    Participant

    bbPress is now a plugin for WordPress. That means that it doesn’t run without an install of WordPress.

    As for the design; that’s entirely up to you. You can go with the default bbPress styles, use a WordPress theme that overrides them or apply your own CSS and make the forums totally original. I recommend having a good read of the bbPress 2.0+ documentation.

    #120766
    Michael
    Participant

    Okay, I’ve made some further progress with method #3 above (hooking into bbp_get_bbpress_template ).  Here’s the general approach I’m taking:

    add_filter( 'bbp_get_bbpress_template', 'my_add_page_template', $templates );
    function my_add_page_template( array $templates ) {
      $page_template = get_post_meta( $post_id, '_wp_page_template', true );
      if ( $page_template != 'default' )
        array_unshift( $templates, $page_template );
    return $templates;
    }

    The only issue I have right now is that $post_id is difficult to extract if the archive pages (Archive Base and Topics Base) are being displayed. Right now I am hard wiring it to the post_id of the Archive Base page (getting it from the editor), and it works okay but not what I want.

    Since these pages (archives) are custom post types, I haven’t found an easy way to find their post_id’s, and querying globals like $post->ID and calling functions like get_the_ID() and url_to_postid() don’t work for custom post IDs ($post->ID and get_the_ID() return 0).

    QUESTION: For a bbPress page that is currently being built for display, is the post_id of the page being stored somewhere in a bbPress global?

    Michael

    #120734
    Michael
    Participant

    Okay, I’ve been doing some digging and perhaps as expected, the theme Template page.php (the default WP Template) is being called to build the Archive Base page.  I can edit the page.php in my child theme and customize from there (where it eventually calls the_content(), which apparently executes content-archive-forum.php to display the Forum “front page”), but that’s a brute-force method since page.php is the default Template for all pages. I want to create a Template explicitly for bbPress pages, which means I need a way to specify the Template to use on a per-page basis.

    Normally this would be done by simply creating a Template (like page.php) and put it in your child theme directory, then select it for a specific page you want to apply it to using the wp-admin Edit Page -> Page Attributes -> Template pull down, save it and voila, your page uses your custom Template.

    But with bbPress pages that are “partnered with a WordPress page” (per this topic discussion), this doesn’t work for the partnered page.  The Template setting seems to be ignored, and only for bbPress pages partnered this way.

    This may not be a show-stopper for me, but may be for others looking to customize the overall page Template for their bbPress pages.  Is it a bbPress bug?  I can’t tell, and hopefully I’m missing something painfully obvious, being new to installing/using bbPress.

    Seems like there must be some kind of code frag in the plugin that does something like:

    if (request to display (Archive Base | Topic Base) {
      if ((Archive Base | Topic Base) is partnered with WP page) {
        point the_content() at (content-archive-forum.php | content-archive-topic.php);
        call default page Template;
      }
    }

    JJJ or someone else in-the-know, can you comment on how the “partnering with a WordPress page” works? Where is this performed? Sorry if the question is naive, I’m just having trouble understanding how this partnering works at the Template execution level.

    Many thanks.
    Michael

    Halo Diehard
    Participant

    I’m just recently testing bbPress, my theme is dark and the default editor doesn’t look well with it. Perfect solution? The editor color options available through Ultimate Tinymce! 😀

    So, my question is: Do I have to rename “foo”, or will it work if I just paste that into my functions.php?

    Signed,
    Complete and Utter php Newb

    #120713

    In reply to: bbPress 2.2.2 released

    sunflyer
    Participant

    on my installation I want to use the default theme, but it looks like its appearing with no style sheet attached. Also when I make a new topic its kind of “invisible” to the public and me. It says this forum has no posts or topics but it does! What could be wrong ?

    #120703
    Halo Diehard
    Participant

    Yeah, I made sure that phpBB was selected. I was just now re-checking over everything again and I see that my database has two User ID’s, one attached to the database and one for FTP. Assuming this process works like FTP I then made sure to run it again with the user name I have for accessing via FTP and I get the first message:

    “Repair any missing information: Continue

    Conversion Complete

    No replies to convert

    No tags to convert

    No topics to convert

    No forum parents to convert

    No forums to convert

    No passwords to clear

    No users to convert

    Starting Conversion

    I’ve even tried it by replacing “localhost” with my database’s Host Name. Same result. I double-checked that Database Port is the default, 3306, yep.

    Do you know which User Name I’m supposed to be using? The one that has my database id in it, or the one I use for FTP?

    Also, does anybody know what it does if your FTP password is incorrect?

    #120702
    Michael
    Participant

    For what it’s worth, I’m looking for whatever function is calling content-archive-forum.php.  I can edit this file in my child theme per the Codex, but I’m trying to figure out which function is calling this, and in particular, what function generates the code above the <div id=”bbpress-forums”> at the start of content-archive-forum.php.

    Does bbPress simply use the default post display template, and if so, where is the call to load and execute content-archive-forum.php  made?

    I tried a grep for content-archive-forum in the entire wordpress tree from wp-content on down, and I can’t find where this is called from.

    Many thanks

    Michael

     

    and not just this template file

    #120698
    Michael
    Participant

    Hi there — I’m running WP 3.4.2, bbPress 2.2.2 & buddypress 1.6.1.  Overall, I’m quite happy with the installation, and I’ve done a fair amount of customization on my site  to give it a nice L&F.  I’ve been using a child theme to do all customization, and it’s been reasonably straightforward, but not trivial.  That said, many thanks to all the bbPress folks who are putting lots of time in on this plugin — it’s a great platform.

    Onto my question:  How is the main forum archive page generated?  I want to create my own template to generate this page, and I’ve been stumped trying to trace the sequence of files/calls used to create it.

    For context, I have the Forums Base set to “member-area/forums” in Settings -> Forums. I can go to http://mysite/member-area/forums and see the standard listing of all the forums in a table.  Perfect, just what I want.

    That said, how exactly is this page created?  Which files & calls in the plugin create it?  I’ve found loop-forums.php in …/plugins/bbpress/templates/default/bbpress/which is used to create the table within the page (apparently called as the_content() somewhere), but I can’t find the code blocks that create the header, footer, etc.  Is there a single template page used to create the Archive Base page?

    Apparently this page is generated regardless of whether there is an existing page (permalink) to the same permalink used as Archive Base.  Nifty, but I want to use my own template (the whole thing) for creating the Archive Base page.

    Even when I create a page with a permalink address the same as Archive Base and insert a  [bbp-forum-index] in the post content, I can’t seem to select a Template from the Page Attribute pull down that has any effect on the creation of the Archive Base page.  It’s like it’s hard wired to use a very specific template — that I can’t find in the directory tree.

    Long winded, but I hope that conveys what I’m trying to do.  In short, I just want to create my own template for creating the Archive Base page.  Any pointers are appreciated.

    Cheers,

    Michael

    #120675
    sunflyer
    Participant

    Look at this link. It looks weird and why is that ? Its just the default theme and v2.2 and where can I change theme now? I don’t see the option anywhere anymore!

    http://www.truckstop24.no/forums/

    #120657
    nickzee
    Participant

    Thank you for the prompt reply.

    I was able to create a child theme and activate it.

    Not sure how to make the bbpress css primary over the default theme css since at the beginning of the child theme I import the default theme css. With the child activated it looks the exact same.

    Thank you again for your help. Is there any way to donate a gift for helping me out?

    #120653

    In reply to: How to rollback

    LabSecrets
    Participant

    In many of our client custom setups, the fix was on line 78 of the default css:

    See our post here for potential quick fix to the CSS:

    bbPress 2.2.2 released

    #120652

    In reply to: bbPress 2.2.2 released

    LabSecrets
    Participant

    Between 2.2.1 and 2.2.2, we found that the profile pages suddenly “vanished” (but the code was still there). It was a CSS issue.

    For our clients and personal sites, the fix was on line 78 of the default css:

    We changed “clear:none” to “clear:both”


    #bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic, #bbpress-forums #bbp-user-wrapper ul.bbp-topics, #bbpress-forums #bbp-user-wrapper ul.bbp-forums, #bbpress-forums #bbp-user-wrapper ul.bbp-replies, #bbpress-forums #bbp-user-wrapper fieldset.bbp-form {   clear: both; }

    padekan
    Participant

    I updated to bbPress 2.2.1 last night and had the same problem with Ultimate TinyMCE plugin. The plugin sued to work beautifully with bbPress, now I get the default fancy editor. I’m not a PHP guru so I’ve been trying to avoid messing around in the code as Michael suggests. Is there any other option to get that editor enabled (it does show up in the dashboard versions of new Topic and I miss the table drawer)

    regards, Paul

    #120618

    In reply to: permalink

    It’s not that crazy. bbPress has used this pattern for almost 9 years now.

    • /forums/ is your root
    • /forums/forum/slug/ is a single forum
    • /forums/topic/slug/ is a single topic
    • /forums/users/slug/ is a single user

    Regarding your theme, a quick read through some topics here will help you. Try with a default theme, refresh your permalinks, etc…

    Shane Gowland
    Participant

    This editor used on bbPress.org is essentially the same as the one that will appear by default. The only difference is the tabs have been changed into textual links and added to the toolbar.

    I agree that an interface to hotlink (or upload) images would be a welcome addition. There are some good plugins that will give you this functionality, including bbPress Post Toolbar and GD bbPress Attachments.

     

    #120585

    Revert back to a default WordPress theme. Update your permalinks.

    #120579
    bbuser12345
    Participant

    Fair enough. If I have to pay someone more than $20 to use the provided migration wizard I will. (FWIW, on oDesk people are free to bid whatever they are willing to bid to do the project.) I have been trying this conversion on and off myself for about 6 months, I’d pay $100 if someone who knew what they were doing would help me out. (Why it would take anything like 20-40 hours for someone to figure out what I need to fill in on a web form in order to get the wizard to work is beyond me.)

    This should be simple right? I have a BBpress standalone and I want to convert the database to be used by the plug-in. This is the simplest case. I know how to set everything up all I need to know is what set of magical things to put in the form fields to get the converter to actually work.

    I know how to back up my database, and I use mySQL all the time in my daily work. I write programs for a living that access and analyze massive data bases. If I knew what needed to be done to the data base to make it work with the plug-in (that is what the wizard is doing under the hood) I could do the migration myself with an R script or something similar. However, there is no place where it is documented what needs to be done to convert the database.

    The statement that: “Once you have the right tools and become relatively proficient, it’s actually pretty easy.” is tautological. However, it is the sentiment one gets when trying to follow the BBpress’ documentation: “If you already knew how to do this, here is how you would do this”.

    Here are a few of the issues:

    Half of the replies in the forums say to follow this plan:
    https://codex.bbpress.org/import-forums/

    The other replies say to use the plugin:
    https://wordpress.org/extend/plugins/bbconverter/

    Which is it? Why are there two different ways? Is one applicable to one situation and the other to another?

    Of course neither will work for me (and many others apparently). The support page at http://bbconverter.com is dead and so there is no information there. The other page contains very sparse information about what one should put in the form fields.

    ***Here is the biggest issue. The console on the wizard does not give any information that would help you diagnose what step in the process has failed.

    For example I just get:

    ==========================================
    Please don’t forget to update your counters HERE

    WordPress database error: [Table ‘databasebbpress.forums’ doesn’t exist]
    SELECT convert(forums.forum_id USING “utf8”) AS forum_id,convert(forums.forum_parent USING “utf8”) AS forum_parent,convert(forums.forum_name USING “utf8”) AS forum_name,convert(forums.forum_slug USING “utf8”) AS forum_slug,convert(forums.forum_desc USING “utf8”) AS forum_desc,convert(forums.forum_order USING “utf8”) AS forum_order FROM forums AS forums LIMIT 0, 100

    No forums to convert-
    Not clearing default passwords-

    Not Converting users Selected-

    No data to clean-

    Starting Conversion…

    ==============================

    I am left to wonder, is the problem logging in to the server?
    If so:
    Is the problem the server name?
    Is the problem my password?
    Is the problem my username?

    Is the problem connecting to the database?
    If so:
    Is the problem the database name?
    Is the problem a permission?
    Is the problem my password?
    Is the problem my username?

    I am just told that the database does not exist. Well it does, I can log-in using myPhp and there it is.

    I will continue to search for “the right tools” and to become more “proficient”. In the meantime I will continue to try to find someone who know enough about the guts of BBpress and WordPress to tell me why my database that does exist, does not exist in the eyes of the converter.

    Martin ( Martin_C )
    Participant

    In case a user change his display name to be diffrent from his username, you cannot use @someusername to mention someone since you do not know what the users username is.

    Would be nice to be able to optionally include an @someusername just below the link to a reply or topic authors profile.

    Perhaps the best way of doing this would be to add an extra argument to the args array for the bbp_get_reply_author_link function. The current args are:

    $defaults = array (
    'post_id' => 0,
    'link_title' => '',
    'type' => 'both',
    'size' => 80,
    'sep' => ' ',
    'show_role' => false
    );

    But could be changed to:

    $defaults = array (
    'post_id' => 0,
    'link_title' => '',
    'type' => 'both',
    'size' => 80,
    'sep' => ' ',
    'show_role' => false,
    'show_mention' => true,
    );

    I know having the user name visible is kind of a security issue, but since the user name already is visible in the profile URL…

    Also, a setting for this in the backend would be nice.

    fuzzybee
    Participant

    Once can check “Use the fancy WordPress editor to create and edit topics and replies”, yes.
    However, the problem is such editor confuses people.
    (I don’t suppose majority of my audience recognise, not to mention knowing how to use HTML)

    1) “Visual” and “HTML” what the heck?
    2) They don’t intuitively know that they need to switch to the “HTML” editor to insert images.

    The editor used here is not fantastic but it is much better than the default WordPress one, for forums.

    #120523
    Stephen Edgar
    Keymaster

    I haven’t got a fix for you though hopefully @jjj can do some magic.

    The issue relates to how your user profiles /users/admin/ are including ‘recent topics’ on that same page rather than the default bbPress /users/admin/topics/, thus if you go to /users/admin/topics/page/2/ everything is perfect.

    In your custom template file user-details.php you have added lines 16-33 but this is causing bbPress to generate the pagination links for the current /user/admin/ URL.

    I know I have found the problem, but a solution, nope, I’m stuck, my PHP skills are not quite there yet 😉

    References: Changeset 4322 and /includes/topics/template-tags.php#242 bbp_is_single_user_topics pretty permalinks.

    Your site is awesome to say the least and I see you have pimped it…

Viewing 25 results - 4,126 through 4,150 (of 6,788 total)
Skip to toolbar