Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 3,826 through 3,850 (of 6,813 total)
  • Author
    Search Results
  • #134571
    lmabe10
    Participant

    A client of mine uses a bbPress/BuddyPress site with a decent sized user base (400+) and out of the blue (seemingly) we are getting a 404 – Page Not Found on any Child Forum page. Topics still work, Parent Forums still work and it is the same no matter the User Role (Admin, Participant, Moderator, Keymaster…). All plugins are up to date. We did just upgrade to the latest bbPress and noticed the problem shortly after, but not 100% sure that was the cause.

    WordPress 3.5.1
    bbPress 2.3.2
    BuddyPress 1.7.2
    s2Member® Pro v130513

    I am NOT using any Role/Capability Plugins.
    Haven’t added any new plugins recently.
    I tried:

    • Re-saving Permalinks
    • Changing Permalinks
    • Flushing Rewrites
    • Remapping Roles to Default
    • Adding some Capability Hacks (removed after they didn’t work)
    • Checking/Unchecking “Auto Role”
    • Changing Archive Slugs and Single Slugs
    • There have not been any new Pages added

    I’m at a bit of a loss and my client is getting frustrated. Please help if you can!

    #134555

    In reply to: Allow HTML from users

    If you need to alter the tags allowed, see this code snippet:

    Modify/change the default allowed tags for bbPress

    That should get you started.

    #134494

    Hmm, first of all the bbPress stylesheet shouldn’t be loading on sites that do not have bbPress activated. If it is, then there is a problem some where, because it shouldn’t be.

    If you want to customize the bbPress CSS, you’ll want to:

    Copy:

    wp-content/plugins/bbpress/templates/default/css/bbpress.css

    to:

    wp-content/themes/[YOUR-THEME]/css/bbpress.css

    When bbPress runs, it will load your theme’s bbpress.css instead of it’s own.

    #134459
    Steven ter Horst
    Participant

    Hi, sorry for kicking up this thread. But I have the same issue or related with disabling the group forum and the link above seems to be down.

    I have the latest version of everything. Installed BBPress and BuddyPress. Enabled group forums. I now want to disable group forums. This seems a piece of cake. But when I disable group forums, on the frontpage the link to the group still tries to open [group]/forum. And this provides a notice” page doesn’t exist”.

    It seems the group forum is disabled. How can I change the group link so that it doesn’t open to the forum by default, but (for example) the activity stream of the group?

    Even when I open a new group without a forum, it still tries to open a forum for this group.

    #134446

    In reply to: Forums Menu Gone

    Jeff Hester
    Participant

    Here’s the solution:

    Once I went to Settings / Forums / and ticked the check box:

    “Automatically assign default role to new, registered users upon visiting the site.”

    then saved, the ‘Forums’, ‘Topics’, and ‘Replies’ admin menus showed up.

    #134444
    Jeff Hester
    Participant

    Here’s the solution:

    Once I went to Settings / Forums / and ticked the check box:

    “Automatically assign default role to new, registered users upon visiting the site.”

    then saved, the ‘Forums’, ‘Topics’, and ‘Replies’ admin menus showed up.

    #134440
    Andrea Gandino
    Participant

    Hi there,

    in relation to the “ERROR: Are you sure you wanted to do that?” error, we can confirm that changing the port from 8888 to default (80) one fixes the issue on MAMP Pro.

    #134395
    guylabbe
    Participant

    Hi,
    This seems very simple to do but I couldn’t get it working. I want the default bbpress theme but wrapped with my theme.

    I added the CSS file in my theme and I added a forum index shortcode in the main forum page. Right now the forum index renders OK (the forum index is the content, everything is correctly wrapped by my theme, interpreted by page.php I guess).

    But as soon I get to a topic page, it’s the single.php or page.php that is used, without any bbpress template file (no breadcrumbs, etc., there is only the post).

    I don’t want to customize bbpress, just want the bbpress template to appear in my theme content templates. Any way to do this easily? I would like to avoid customize all pages one by one and keep built it theme integrity…

    #134376
    chuckingit
    Participant

    Hi – i just wanted to follow up with a recent workout of success in that David Chandra over at ThemeHybrid.com posted a thread that helped me greatly to get bbPress working 100% beautiful with my Shell child theme thus share as follows in case this helps …

    turns out that not only were my default forum and topics permalinks blown out, but also so were the author and topic tag defaults — meaning if i was in a forum and clicked a forum tag or a forum author, i would get a forum page that did not look like a forum but a generic blog post …

    so i ended up creating four custom child theme bbPress files and placed them in a bbpress sub directory off my child theme root … the four files were archive-forum.php, archive-topic.php, single-user.php, and taxonomy-topic-tag.php … i found that these four files worked if placed in my child theme root or if placed in my child theme bbpress sub folder but thought it best to keep in bbpress sub folder …

    the whole wierd bbPress create a topic form thing went away too given David Chandra’s approach … which was to use replace the child theme shell_get_atomic_template section with the bbp_get_template_part (see his example below) …

    BIG kudos to WP community of forums and those who share … viva the bb’s 🙂 cordially, chuck scott

    ==============
    From this post David Chandra wrote -> http://themehybrid.com/support/topic/shell-bug-with-bbpress-forum-index-page#post-79074

    you can just use bbp_get_template_part to replace shell_get_atomic_template.

    1. create archive-forum.php in child theme,
    2. copy the content of index.php from shell theme to your child theme
    3. change shell_get_atomic_template( ‘content’, true ); with bbp_get_template_part( ‘content’, ‘archive-forum’ );

    if you need to modify the default bbpress template bbpress content-archive-forum.php you can copy the files from wp-content\plugins\bbpress\templates\default\bbpress and add it in your child theme in bbpress folder.

    for example you can add it in your-child-theme/bbpress/content-archive-forum.php, you can copy and files in wp-content\plugins\bbpress\templates\default\bbpress in your child theme if you need to override it and load it using bbp_get_template_part(); function.

    i usually just copy everything to my child theme, but it’s not really future proof, since bbpress tend to delete/add new functions in every release, so full bbpress template override might broke your site. just override the template you need to modify.

    your archive-forum.php in your child theme may be something similar to this:

    
    <?php
    /**
     * bbPress Archive Forum Template
     */
    get_header(); // Loads the header.php template. ?>
    
    	<?php do_atomic( 'before_content' ); // shell_before_content ?>
    
    	<div id="content">
    
    		<?php do_atomic( 'open_content' ); // shell_open_content ?>
    
    		<div class="hfeed">
    
    			<?php do_atomic( 'open_hfeed' ); // shell_open_hfeed ?>
    
    			<?php if (!is_singular() ){ shell_get_atomic_template( 'loop-meta' ); } // atomic context template, in "loop-meta" directory  ?>
    
    			<?php if ( have_posts() ) : ?>
    
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    
    				<?php endwhile; ?>
    
    			<?php else : ?>
    
    				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
    
    			<?php endif; ?>
    
    			<?php do_atomic( 'close_hfeed' ); // shell_close_hfeed ?>
    
    		</div><!-- .hfeed -->
    
    		<?php do_atomic( 'close_content' ); // shell_close_content ?>
    
    		<?php shell_get_atomic_template( 'loop-nav' ); // atomic context loop template, in "loop-nav" directory ?>
    
    	</div><!-- #content -->
    
    	<?php do_atomic( 'after_content' ); // shell_after_content ?>
    
    <?php get_footer(); // Loads the footer.php template. ?>
    
    #134366
    Pippin Williamson
    Participant

    If your forums are located at http://yoursite.com/forums (this is the default), just go to Appearance > Menus and add a new Custom Link to one of your menus with the /forums URL.

    #134363
    Pippin Williamson
    Participant

    Looks like some of the files didn’t get uploading/installed. The CSS file is missing completely: http://www.svendborgjudo.dk/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.3.2

    Try reinstalling.

    #134347

    @aleXka – you have a error in your js – http://cl.ly/image/2G3o3V3g1X25

    As mentioned, if your editor is screwing up, it’s likely a JS issue (like I just pointed out above).

    Deactivating your plugins should help find the culprit or switching themes back to a default WP theme.

    #134342
    chuckingit
    Participant

    Hi – i’m experiencing similar strangeness as Sami in that my child theme on a multisite network shows the bbPress forums and topics great except when going to the default permalinks of forums and topics … in those cases, the forums go away and turn into a default blog page with the forums as psuedo excerpts appearing with page numbering at bottom – even a featured image gets inserted somehow to boot … none of the other site content gets mixed into this “blog page” – just all the forums run together without looking like forums (but like excerpts) and with no links to forums or topics …

    thus mydomain.com/forums = broken as is mydomain.com/topics … yet mydomain.com/forums/my-forum-01/ and/or mydomain.com/forums/my-forum-01/topic-01 are great …

    i tried rolling bbPress versions back to 2.2.1 and 2.2.4 but earlier versions have same effect as current 2.3.2 … and while i could create a hack by creating an archive-forum.php file and placing it in my child theme root (based off the archive-forum.php in the templates\defaults\extras folder) it lost a ton of info – e.g., the alerts like “the forum is empty” is gone as are the other alerts like “Oh bother! No topics were found here!” and ditto with the corresponding “Create a New Topic” form …

    actually in thinking about themes were bbPress works fine, part of me wonders why the create a topic form even shows on the default forums page – meaning, i have 14 forums and only two of them have test topics yet when looking at the /forums/ default page, it is asking me to create a new topic for forum #2 which is the first forum that is empty (note forum 1 and 3 have test content, forums 2, 4-14 are empty) … maybe that is fine but my point is still valid …

    thus with a theme that is having issues, the form and the alerts do not make it in my archive-forum.php file (even the css is a bit different) so i believe there is something fishy with topics and forums defaults that is getting in the way with some themes ..??.. note i tested this with Theme Hyrbrid Prototype and Twenty Twelve with no problem but with Theme Hybrid Shell Responsive Child theme is when my problems stemmed … and i know Sami has created some themes over at Theme Hybrid as well … thus i share his pain :>) (theme compat wise that is)

    thanks in advance for any pointers, insights, help that can be shared … cordially, chuck scott

    #134294
    Stephen Edgar
    Keymaster

    1. can more than 110 000 users be imported

    This should not be a problem.

    2. My website runs a specific version of phpbb SEO for allowing permalinks for every forum – will this be imported ? (so that there is not a lot of redirect)

    No, these will NOT be imported and you will need to manually set your permalinks and make some redirects using .htaccess

    3. My website stores custom profile fields for every user (more than just ICQ, but also custom ones). How could I have the same kind of functionalities using bbpress ?

    Currently when importing from phpBB we are importing and storing the default phpBB user fields as outlined here. You could modify the import script to include any of your custom user profile fields so they also get stored in wp_usermeta.

    After that you would need to find a WordPress plugin that supports extended user profile fields to utilize that data. I am not sure of any specific plugin that can really do that out of the box with bbPress at the moment but at least you ‘would’ have all of your users advanced profile data stored.

    4. What about performance – will it be better than phpbb. I know bbpress is very powerful for small forums, but I have no idea regarding huge ones. Can wp caching plugins work for bbpress as well ?

    There are some large sites running bbPress and I would suggest you setup a test site to see how it works for yourself personally.

    As to caching it appears that ‘WP Super Cache’and ‘W3 Total Cache’ do not work well with bbPress as discussed in this topic though there is ‘Lite Cache’ which appears to work with bbPress as per this topic.

    5. Is the entire UI translated in French – it doesn’t seem to me, but maybe I’m wrong.

    The current status of the French translation is at 11% translated with 879 strings untranslated though 734 of those strings have been translated and are waiting for the fr_FR translation validator to validate the translations.

    https://codex.bbpress.org/bbpress-in-your-language/

    6. Can I use any plugins writter for wp for bbpress ?

    I am not sure what you mean for this question

    Any more questions please ask away…

    kitchin
    Participant

    I added a bbpress subdirectory to my theme and got a blank screen. I was using a “silence is golden” index.php file in the subdir and removing that fixed it. I guess the subdir acts as a subtheme or something (though it has no style.css file).

    Interesting thing is I could also fix it by dropping in the files from plugins/bbpress/templates/default/extras to my main theme directory, following the instructions here: `http://codex.bbpress.org/theme-compatibility/

    Posting this in case it helps anyone else.

    sonnymanou
    Participant

    bbpress 2.3.2 and WordPress 3.5.1. Link to site.

    Hello,

    I have a multi-site set up and a problem with users automatically being added to other blogs (sub-sites) on their network. Upon visiting a sub-site, the user gets assigned a “participant” role. This is then shown in their “My Sites” drop down in their Admin bar.

    In the forum “settings”, there is a check box with this next to it:

    Automatically assign default role to new, registered users upon visiting the site.

    I have toggled this off and on several times, in the hope that it would fix my problem. It doesn’t.

    Please help: why is my multi-site installation still adding users (“participants”) to every sub-site they visit?

    Thank you.
    Sonny

    Dan Knauss
    Participant

    It’s definitely WAMP, most likely the ‘W’ part. (I tried this on Windows 7) XAMPP has even more trouble. Apache is being disrupted and crashed at times, probably because of Windows User Account Control (UAC) security settings and/or IIS. You should get a warning about this when you install XAMPP on Windows. I haven’t test to see if that’s the cause, but it seems likely.

    See: http://answers.microsoft.com/en-us/windows/forum/windows_xp-windows_programs/i-am-trying-to-install-xampp-win32-177-i-get-a/0b44bd10-2fff-49ac-bb48-30dfc4ae9c44?msgId=0c558024-e8e2-47b2-a9f7-ee102b62aec9

    What does work is LAMP, so just do the migration on your webserver or localhost. I’ve had no problem doing it all on Nexcess.net’s WordPress hosting with over 61,000 posts and 1100 users converted with the default settings of 100 rows at a time with a 1s delay.

    #134211
    asdseed2
    Participant

    My WordPress is: WordPress 3.5.1. (Russian language pack)
    Theme: Emphaino
    You are using bbPress 2.3.2.
    also installed Akismet (upgraded)

    after installs and activates “all in one seo”, I have same trouble:

    1. Then “all in one seo” activated – bbPress is dont works well:

    1.1. Then I try to create new post, I have an error: “ERROR: You do not have permission to create new topics.” bug1
    1.2. Then I try to go http://catstock.ru/wp-admin/index.php?page=bbp-about – I have about the same error in Russian Language – “Dont have permission”. bug2
    1.3. Then I in Plugins menu in admin panel, and I click “settings” (http://catstock.ru/wp-admin/options-general.php?page=bbpress) – I see the same error – “Dont have permission”

    1.4. I stil see the bbPress widget in Console (http://catstock.ru/wp-admin/index.php)

    2. Then I deactivate “all in one SEO”:

    2.1. Right after deactivation – I start see “Forums, Topics, Replies” in the admin left panel.
    2.2. http://catstock.ru/wp-admin/options-general.php?page=bbpress2 – start works correct, bug3
    2.3. Now I may correctly add new topic or reply at page http://catstock.ru/?forum=test_forum

    3. Now I activate “all in one SEO” again, and all goes back to &1.
    3.1. In “All in one SEO” settings using “Reset to default” dont help any.

    #134209
    sixf00t4
    Participant

    ok, i fixed mine in a different way. Since I was using the default bbpress template, there was no folder for it in the directory listed in the bbpress codex page you linked to.

    What i did, was open the CSS editor under theme editor and pasted your line into the pretty much empty box.

    #134198
    ZachMatthews
    Participant

    More info:

    my host requires a jitinera_ prefex before the database name (JaguarPC and itinerantangler.com = jitinera).

    So my database is jitinera, and the actual phpbb database is _phpbb, etc.

    Here’s how I have filled out the blanks to produce the error:

    Select Platform is the previous forum software: phpBB
    Database Server IP or hostname: localhost
    Database Port Use default 3306 if unsure: 3306
    Database Name Name of the database with your old forum data: jitinera_phpbb
    Database User User for your database connection: jitinera_[user name witheld]
    Database Password Password to access the database: [password withheld]
    Table Prefix (If converting from BuddyPress Forums, use “wp_bb_” or your custom prefix): bb_

    Anyone see anything wrong with that?

    #134186
    aleXka
    Participant

    I found an answer for 2 – In the last bbPress version it is disabled by default. It can be activated by using following plugin:
    https://wordpress.org/extend/plugins/bbpress-enable-tinymce-visual-tab/

    After installation of the plugin I got Visual redactor on New topic and Replay. It forks fine but in case of Replay, Text mode still hasn’t buttons: http://pumpshooter.com/qH7GGcxR

    So, please help me to fix it.
    Thx,.

    Laughing Cat
    Participant

    I managed to fix the issue in a strange way… Went to bbpress plugin settings, temporarily set default role to keymaster (was still showing there), updated options – from then on, I was able to see “keymaster” role also in edit users panel. I assigned “Keymaster” to my admin and problem was fixed.

    tomodaore
    Participant

    env
    WP 3.5.1 / bbpress 2.3.2 / PHP5.4.14 / IIS 5.1 / WinXP SP3

    Hello.
    My WP site looks working well and I can post a blog entry or a comment.
    After creating a topic on dashboard and subscriber tried to submit Reply, an error occuerred.
    “HTTP 405 – Resource not allowed”
    I googled around and found something about XML-RPC, but from WP3.5 it is already turned on in default.
    I also checked my IIS settings and confirmed PHP is mapped to GET/HEAD/POST.

    Any ideas to solve this?

    Tom

    #134125

    Copy

    wp-content/plugins/bbpress/templates/default/content-archive-forum.php

    to

    wp-content/themes/[your-theme]/bbpress/content-archive-forum.php.

    Edit as you see fit. You’ll likely want to place whatever before <div id="bbpress-forums">.

    You can copy any template elements that you want/need to change to a bbpress folder inside your theme and bbPress will automagically use those template files instead of the default ones.

    #134093

    What you want to do is tweak the bbPress CSS. However you don’t want to tweak the copy in the plugin because when you update it will get overriden. Here’s what you’ll want to do.

    Copy:

    wp-content/plugins/bbpress/templates/default/css/bbpress.css

    to:

    wp-content/themes/[YOUR-THEME]/css/bbpress.css

    Then edit and make tweaks to the bbpress.css as needed to match your theme.

Viewing 25 results - 3,826 through 3,850 (of 6,813 total)
Skip to toolbar