Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 3,276 through 3,300 (of 6,813 total)
  • Author
    Search Results
  • #143614
    Robin W
    Moderator

    “deactivating all plugins tangentially related to bbpress ”

    The plugin conflict has nothing to do with whether the plugin is related to bbpress – any plugin can cause a conflict.

    This is because conflicts are often with common variable names such as $user, where one plugin may set it to be x and the other uses it expecting it to be y.

    Disable all plugins, and switching to a default theme proves that both wordpress and bbpress are correctly installed (ie not corrupt). From there you can add back themes and plugin to work out which is causing the conflict.

    “There are a number of related threads about this issue on the forum but none have any real solutions provided.”

    There are tens of thousands of plugins, and thousands of themes, and conflicts will occur with combinations of these. There is not one common problem here, the symptoms are the same but the causes many, so “real” solutions are individual. In the last few weeks solutions for many including a caching plugin and a theme have been posted.

    Your problem is individual to you.

    Try again with getting to a root cause by disabling all plugins and going to default theme, and come back if you still have a problem, we’ll try to help you to resolve this.

    #143583
    Robin W
    Moderator

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    #143575
    rlitts
    Participant

    I posted about this issue that I had a couple of weeks ago without any resolution. So I thought I would start at the beginning. I installed a fresh copy of WordPress (3.8.1) with the default themes on a newly created directory. Second I installed BBpress (2.5.3) and kept all the default settings. Upon completion I added the BBpress login widget and tested the login function. When I do this it hangs up on /wp-login.php page with nothing but a single period on the page.

    Is anyone else having this same issue? I need help!!!!

    #143571
    Robin W
    Moderator

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    #143548
    mjpg
    Participant

    OK – thought it was a roles problem.
    I reset: Remap existing users to default forum roles
    Now I have access, and it looks fixed.

    Tim Hardy RRC
    Participant

    Is there a way to filter search results for non-logged-on users of the website so their results don’t display the contents of private forums which then go to a redirect loop when we try to follow the links?

    An example from our testing site:

    http://www.resourcescentreonline.co.uk/tim_play/?s=fisticuffs

    The search results don’t include topics that have individually been made ‘private’ but I can’t find a way to set this to default for topics within a private forum – I can batch edit them afterwards but it would be good if, failing a solution to the search problem, this could happen automatically.

    We’re running WordPress 3.8.1 and BBPress 2.5.3 (as part of a Commons In A Box setup) on an entirely custom theme.

    If there’s any more information I need to provide, please let me know – thank you.

    edit: glaring typo

    #143536
    BuckyOHare
    Participant

    Yeah I did. It’s been so long though I’m trying to remember what I had to do. I know that I ended up not using the BBPress login widget and instead went with the “WP Login Box” widget. I had to do some configuring on the settings I think but was able to set the whole thing up to where users were only able to login to their BBPress account and not have backdoor access to the wordpress site itself.

    I think it had something to do with wordpress making an update where they screwed up default cookie configurations. I went looking in my wp-config file and found that I put this there. Truth is I can’t remember if this was for the same problem or something else, it’s been a while since I was last working in wordpress. Try putting this in your wp-config.php file after your last set of “defines” near the top. Hope that helps.

    /**wordpress 3.x cookies error solution**/
    define(‘ADMIN_COOKIE_PATH’, ‘/’);
    define(‘COOKIE_DOMAIN’, ”);
    define(‘COOKIEPATH’, ”);
    define(‘SITECOOKIEPATH’, ”);

    #143508

    In reply to: Order of Topics

    Stephen Edgar
    Keymaster

    This should work…

    function custom_bbp_has_topics() {
      $args['order'] = 'ASC'; // 'ASC' (Ascending), 'DESC' (Descending, Default)
      
      return $args;
    }
     
    add_filter('bbp_before_has_topics_parse_args', 'custom_bbp_has_topics' );
    
    #143499
    Robin W
    Moderator

    If you’re ok with editing file, then the template file being used is

    bbpress/templates/default/bbpress/form-topic.php

    Create a new directory in your theme file called bbpress and copy this file to there.

    bbpress will now use that file instead

    You can then edit out the notify – starts around line 155

    #143467

    In reply to: User Profiles

    NovaSev
    Participant

    Just tried using the $curauth params within the bbPress user-profile.php, didn’t work out so swell. Little lost on this one so any help would be appreciated. Even if I can do this in a reverse way – where the bbPress profile will link to the WP profile instead. Either way works for me.

    I guess a simple question would be – the bbPress default template php files are located in the plugin directory … if those files were in the theme folder would bbPress pick them up that way?

    #143465

    Topic: User Profiles

    in forum Themes
    NovaSev
    Participant

    I’m trying to figure out a few things – I’ve done a search and read through a couple dozen or so items without much luck.

    I’d like to incorporate some more info into the bbPress user profiles – I know I can probably do this using the $curauth params but want to make sure. I also want to make authors/contributors/etc link to the bbPress profiles as well. Is there a quick piece of code I can use to do this within my WordPress theme files?

    I have this function to return an author profile page when the name is clicked on:

    function new_comment_author_profile_link(){
    
        /* Get the comment author information */
        global $comment;
        $comment_ID = $comment->user_id;
        $author = get_comment_author( $comment_ID );
        $url    = get_comment_author_url( $comment_ID );
    
        /* Return the default WordPress comment author link if comment author is not
        a registered user */
        if ($comment_ID == 0){
            if ( empty( $url ) || 'http://' == $url )
                $return = $author;
            else
                $return = "<a href='$url' rel='' class='author-url'>$author</a>";
        } else {
        /* Return the link to the comment author's profile page if otherwise */
            $return = '<a href="'.home_url().'/?author='.$comment_ID.'">'.$author.'</a>';
        }
    
        return $return;
    }

    Can I plug in some line/piece of code to direct it to the bbPress profile instead? If so, what piece?

    Wordpress & bbPress are latest versions – website is http://www.novasev.com
    Appreciate the feedback.

    #143447
    Robin W
    Moderator

    suggest you try:

    Repair Forums

    Dashboard>tools>forums>repair forum and run one at a time

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    #143402
    Robin W
    Moderator

    Ok, I think I understand

    BBpress doesn’t have a “theme”, it uses your theme to get many of it’s display elements.

    If you simply want to just use bbpress, then pick a wordpress theme, and off you go !

    It’s only if you want to alter how bbpress forums look or behave that you need to copy files.

    bbPress uses “templates” to order and decide what to show, and a bbpress.css file to style bbpress specific elements.

    Therefore you should use a wordpress theme.

    Within that wrodpress theem, you create a bbpress folder for any templates you want to alter, BUT only for those, so if you don’t want to alter, then you need do nothing.

    If you wish to alter the bbpress.css, you’d create a css subfolder in your theme and copy the default bbpress.css into their and then alter it, or simply add styling to your themes style.css.

    #143401
    maverickjohn
    Participant

    public_html/forums/wp-content/plugins/bbpress/templates/default/bbpress
    i pasted that folder into
    public_html/forums/wp-content/themes/options
    Thats the bbpress folder i copied into my theme.
    in my dashboard i go to
    appearance-> themes – error message displays
    “Broken Themes

    The following themes are installed but incomplete. Themes must have a stylesheet and a template.

    Name Description
    Options Template is missing.”

    #143396
    maverickjohn
    Participant

    Hey guys, i would like to change my theme on bbpress, but everytime i follow the guides it doesnt seem to work.
    I created a folder with my theme in wp-content/themes/*my theme*/and then copied the bbpress folder from the default folder into here as well.
    but it keeps saying my template is missing in the themes section of my dashboard.

    #143379
    Robin W
    Moderator

    Interesting – I’m not sure why askimet has got so upset with your user!

    You can switch off Askimet JUST for your forum, which might be a better idea whilst you work out how to get him working again. Then at least your main site will still be protected

    Go into Dashboard>settings>forums and you’ll see a setting at the bottom.

    It could also be if they are posting a topic/reply with several links…

    There is a setting in Dashboard>setting>discussion that says “Hold a comment in the queue if it contains 2 or more links. (A common characteristic of comment spam is a large number of hyperlinks.)” The ‘2’ is the default number that you can alter.

    That would get him held as potential spam.

    #143361
    Robin W
    Moderator

    The forums list display comes under the template

    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php

    There are many hooks in this

    Line 44 does the sub forum display

    #143354
    Robin W
    Moderator

    “I needed to add the form, topic and forum manually [bbp-topic-index] [bbp-topic-form][bbp-forum-index] and have not found a manual solution for the login ([bbp-topic-login] didn’t work..))”

    See the documentation for set up details including login in sidebar

    Step by step guide to setting up a bbPress forum – Part 1


    and

    Layout and functionality – Examples you can use


    for setting up menu and modal logins

    As for your 404 error, I presume that the urls are correct, for instance

    http://www.hightearecepten.nl/recipe/vijgencompote/

    works with bbpress deactivated, but not when it is activated?

    I’d check first whether there is a plugin conflict, and then a theme conflict viz ;

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    If it is Themeforest, I’d raise it with them, as it is a paid theme, and with over 1 million bbpress downloads they should have seen it, or know what to do. I have seen some comments that some themeforest themes do not support bbPress, but don’t know about this one.

    #143349

    In reply to: Forum Question

    Robin W
    Moderator

    ok, so create the forum as ‘private’ – you see a visibility setting on the forum page when you create it.

    Then drop this code into your (child)themes functions file.

    //code to add tutor role 
    
    function add_tutor_role( $bbp_roles )
    {
    	/* Add a role called Tutor */
    	$bbp_roles['bbp_tutor'] = array(
    		'name' => 'Tutor',
    		'capabilities' => custom_capabilities( 'bbp_tutor' )
    		);
    	return $bbp_roles;
    }
     
    add_filter( 'bbp_get_dynamic_roles', 'add_tutor_role', 1 );
    
    function tutor_role_caps_filter( $caps, $role )
    {
    	/* Only filter for roles we are interested in! */
    	if( $role == 'bbp_tutor' )
    		$caps = custom_capabilities( $role );
     
    	return $caps;
    }
     
    add_filter( 'bbp_get_caps_for_role', 'tutor_role_caps_filter', 10, 2 );
    
    function custom_capabilities( $role )
    {
    	switch ( $role )
    	{
    		 
    		/* Capabilities for 'tutor' role */
    		case 'bbp_tutor':
    			return array(
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => false,
    				'moderate'              => false,
    				'throttle'              => false,
    				'view_trash'            => false,
     
    				// Forum caps
    				'publish_forums'        => false,
    				'edit_forums'           => false,
    				'edit_others_forums'    => false,
    				'delete_forums'         => false,
    				'delete_others_forums'  => false,
    				'read_private_forums'   => true,
    				'read_hidden_forums'    => false,
     
    				// Topic caps
    				'publish_topics'        => false,
    				'edit_topics'           => false,
    				'edit_others_topics'    => false,
    				'delete_topics'         => false,
    				'delete_others_topics'  => false,
    				'read_private_topics'   => true,
     
    				// Reply caps
    				'publish_replies'       => false,
    				'edit_replies'          => false,
    				'edit_others_replies'   => false,
    				'delete_replies'        => false,
    				'delete_others_replies' => false,
    				'read_private_replies'  => true,
     
    				// Topic tag caps
    				'manage_topic_tags'     => false,
    				'edit_topic_tags'       => false,
    				'delete_topic_tags'     => false,
    				'assign_topic_tags'     => false,
    			);
    			break;
     
    		default :
    			return $role;
    	}
    }
    

    The set any tutors up with the tutor role in dashboard>users> user and at the bottom of the set up you’ll see forum role.

    If any of that’s not clear or beyond your knowledge, do come back, and I’ll help further

    #143321
    mshane8
    Participant

    Hi Robin –

    I am too far along. That is not an option.

    Do you know where bbPress places the database tables. What is the default table prefix?

    I am not sure why this is so complex. I have imported through WP/Dashboard/Tools/Import – Forums, Topics and Replies individually through xml files.

    I have a static page that calls the forum index using the shortcode : [bbp-forum-index]

    This page displays OK. It will show the # of topics but when I click on the forum itself it opens up the forum but shows 0 topics. All the topics, forums and replies are in the WP Dashboard assigned to the proper author.

    #143316
    Robin W
    Moderator

    suggest you start with the usual…

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    #143310

    Topic: Buddypress child theme

    in forum Themes
    GMarco24
    Participant

    Something is wrong when you try to use child theme.
    I am using child theme of Buddypress default theme. I have:
    plugin-bbpress.php in both folders (parent and child)
    bbpress.php in both folders
    and still I don’t have correct template.

    I have id=”content” and id=”content-wide” in my theme, depends do I have 1 or 2 sidebars on that page. I’ve searched&replaced id=”content” in my child theme with id=”content-wide” and still on page there is id=”content”. I am guessing it loads some template from parent folder somehow.

    Somebody has any idea what’s a problem here?

    Thanks

    #143264

    In reply to: No toolbar available

    Robin W
    Moderator

    ‘I have probably checked 100 times if this is ticked’

    Thanks, but always worth asking.

    ‘This is the default bbPress theme. ‘

    No I meant the wordpress theme you are using. switch to one such as twenty eleven to see if that makes a difference

    #143260

    In reply to: No toolbar available

    Liberty
    Participant

    This is the default bbPress theme. I just used CSS to change the style of the forum. I commented the CSS part for the bbPress forum out but nothing happened.

    Dashboard>settings>forums> forum features have you ticked “Post formatting” to enable this toolbar?

    I have probably checked 100 times if this is ticked. 😀

    #143232

    In reply to: Creating a new forum

    Robin W
    Moderator

    then check for a plugin or theme conflict

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

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