Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,826 through 14,850 (of 64,454 total)
  • Author
    Search Results
  • #163564
    #163561
    RemcoH
    Participant

    Hi, thnx.

    I tried this but it doesn’t have any effect. I think its because of the hierarchy. Entry is above the #bbpress-forums.

    #163558
    jethron5000
    Participant

    Hi Stephen,

    here are my versions:

    BBPress: Version 2.5.7
    News SEO: Version 2.2.5

    #163557

    Topic: Double Slugs

    in forum Troubleshooting
    kjgbriggs
    Participant

    Since installing BBPress and BuddyPress, the main forum slugs (setup in wp-admin/edit.php?post_type=forum) have had URL’s such as this:

    http://www.example.com/forums/forum/General-Discussion

    Why do I have the word forum twice and how can I get rid of it?
    When I go into a thread in General Discussion it only appears like this:

    http://www.example.com/forums/topic/hi

    First of all, I would like the thread link to say the forum before the topic, so for example:

    http://www.example.com/forums/general-discussion/hi

    And secondly, I would like to get rid of the double slug in the first example.

    #163551

    In reply to: User ranking system?

    Stagger Lee
    Participant

    I did not ooked for User ranking/Voting system. I needed simple star systems for posts count. If User has so many posts/comments give him/her one additional star (under avatar).

    So here is my code. Maybe it could be reduced in lines, made better. I have brain blocade right now.

    // bbPress User post count
    function display_counts () 
    {
    		
    		$user_id=bbp_get_reply_author_id( $reply_id ) ;
    		$topics  = bbp_get_user_topic_count_raw( $user_id);
    		$replies = bbp_get_user_reply_count_raw( $user_id);
    		$post_count   = (int) $topics + $replies;
    		echo "<div class=\"user-comments-count\">" ;
    		echo "<strong>" . "Comments: " . "</strong>" ;
    		echo $post_count ;
    		echo "</div>" ;
    		// echo "</br>" ;
    		//if ($post_count > 1) {
    //	    echo '<i class="svg-icon all-stars"></i>'; 
    //	    }
    		
    		if ($post_count >= 1 && $post_count <= 20) {
    		echo '<div class="all-stars"><i class="svg-icon one-star"></i></div>'; 
    		}
    		elseif($post_count >= 21 && $post_count <= 50) {
    		echo '<div class="all-stars"><i class="svg-icon two-star"></i></div>';
    		}
    		elseif($post_count >= 51 && $post_count <= 100) {
    		echo '<div class="all-stars"><i class="svg-icon three-star"></i></div>';
    		}
    		elseif($post_count >= 101 && $post_count <= 500) {
    		echo '<div class="all-stars"><i class="svg-icon four-star"></i></div>';
    		}
    		elseif($post_count >= 501 && $post_count <= 1000) {
    		echo '<div class="all-stars"><i class="svg-icon five-star"></i></div>'; 
    		}
    		elseif($post_count >= 1001 && $post_count <= 2000) {
    		echo '<div class="all-stars"><i class="svg-icon six-star"></i></div>';
    		}
    		elseif($post_count >= 2001 && $post_count <= 5000) {
    		echo '<div class="all-stars"><i class="svg-icon seven-star"></i></div>';
    		}
    		elseif($post_count >= 5001 && $post_count <= 10000) {
    		echo '<div class="all-stars"><i class="svg-icon eight-star"></i></div>';
    		}
    		elseif($post_count >= 10001 && $post_count <= 50000) {
    		echo '<div class="all-stars"><i class="svg-icon nine-star"></i></div>';
    		}
    		echo "</br>" ;
    		}
    add_action ('bbp_theme_after_reply_author_details', 'display_counts');

    CSS, needed for this snippet:

    .svg-icon,
    .all-stars {
      font-family: 'Your SVG Web Font';
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      text-align: center;
      text-transform: none;
      width: 1em;
      }
      
    .one-star:before,
    .two-star:before,
    .three-star:before,
    .four-star:before,
    .five-star:before,
    .six-star:before,
    .seven-star:before,
    .eight-star:before,
    .nine-star:before,
    .all-stars:before {
      left: 12px;
      position: absolute;
    }
    
    .one-star:before {
      content: '\28b';
    }
    .two-star:before {
      content: '\28b''\28b';
    }
    .three-star:before {
      content: '\28b''\28b''\28b';
    }
    .four-star:before {
      content: '\28b''\28b''\28b''\28b';
    }
    .five-star:before {
      content: '\28b''\28b''\28b''\28b''\28b';
    }
    .six-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .seven-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .eight-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .nine-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    
    .all-stars:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
      color:#ddd;
    }
    #163537
    thoracic
    Participant

    I’ve a site that I’ve been generating on a temp domain. I started building the ‘live’ site on another domain.
    On the test site, bbpress integrated quite nicely, placing itself in the ‘main’ column, leaving the sidebars as they were (left & right).
    On the live site, the sidebars disappear on any of the forum pages.
    (???)
    Using the latest WP (4.2.2), bbpress (2.5.7) & a raindrops child theme (1.0.1435411886)
    any help greatly appreciated

    #163536
    webappdesigner
    Participant

    answered my own question….

    For anyone that has the same problem, bbpress -> includes -> extend -> buddypress -> groups.php

    on line 151 change

    public function display() {
    to
    public function display($group_id = NULL) {

    #163535
    webappdesigner
    Participant

    Hi, Firstly thanks for making such a great plugin, which once I can get working, will really change the lives of so many people.

    I have clean install on XAMMP of just the following;
    WordPress 4.2.2
    BuddyPress 2.3.2.1
    BBPress 2.5.7

    However when both BuddyPress and BBPress are activated i get the following error message across the top of most screens

    “Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in C:\xampp\htdocs\wordpress\wp-content\plugins\bbpress\includes\extend\buddypress\groups.php on line 28″

    If I deactivate either BBPress or BuddyPress it goes away…

    I have no other plugins install as only just started trying to use them.

    I have seen some old previous messages about this same issue with a patch, however they see to be talking about the very different file structure to what this BuddyPress has…

    Thanks in advance

    JustATraveller
    Participant

    wordpress version: 4.2.2
    bbPress version: 2.5.7
    Normally after activation of bbpress, I would be directed to a new page and 3 items (forums, topics, replies) would show up. The new website site I am currently working on (with X theme installed), however, doesn’t happen to do so. What happens is that right after I active the bbpress, it stays on the plugin page and says the plugin is activated. But there are no items showing up on left menu bar and also in the setting I do not find bbpress. All other plugins work well except for bbpress…

    #163523
    Robkk
    Moderator

    Check out the screen shots to see what I was talking about

    https://wordpress.org/plugins/bbpress-report-content/screenshots/

    #163519
    Stephen Edgar
    Keymaster

    Looks like it is a bug, can I get you both @matthewstephens and @jethron5000 to list the versions of the plugins you are using, i.e. What version of bbPress? What version of News SEO?

    #163517
    Robkk
    Moderator
    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: 0;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    sorry made a little mistake haha writing it here.

    #163516
    Robkk
    Moderator

    @lilmisskatie

    Its the themes CSS causing an issue with the input box for the topic title.

    This custom CSS should do it.

    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: none;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    Tell your themes support this too.

    If you feel like donating you can do so here

    About Me

    #163502
    lilmisskatie
    Participant

    This is the response I received from the support.

    I just checked your page and there are no js errors coming from debug.

    I’m not sure what to tell you really, no one else has reported this issue and since this is just a demo, we don’t use bbpress. Perhaps if they could’ve been more specific on what is conflicting?

    …any ideas as to what else it could be? Thanks.

    #163494
    sharongraylac
    Participant

    Hi Robkk!

    I was hoping I might hear from you! 🙂

    I’ve actually had this problem long before I installed Buddypress (which was just a couple of days ago).

    I do use the “Private Groups” plugin, however, this problem seems to be directly linked to BBPress. The Private Groups plugin only hides the content after you click on the title link (directing you to a private page). However, since these are full BBPress forum posts, the Private Groups plugin is not kicking in.

    Does that makes sense?

    Thanks!
    Sharon

    #163492
    Robkk
    Moderator

    It might be a javascript issue , I just had to mess with a popular theme framework for a user to fix a bug in bbPress.

    And it was some javascript file from the theme conflicting with bbPress.

    So contact them to see if they can test that out.

    #163489
    stiffmeister12
    Participant

    Hello, I was wondering if I can have the same toolbar that is on my bbpress comments section in my blog comments section? So users can bold, link add images for my blog comments etc… Im not sure if this is a bbpress question or a wordpress question. Thanks

    #163487
    Robkk
    Moderator

    Read this persons answer to another similar topic.

    phpbb3.1.3 to bbPress – Installation database error

    #163481

    In reply to: BackupBuddy Question

    Robkk
    Moderator

    All of bbPress’s default plugin files are in the bbPress plugin folder.

    #163480
    Robkk
    Moderator

    This could be from some security/spam plugin.

    Go through these troubleshooting steps

    Troubleshooting

    #163475
    Robkk
    Moderator

    @mrose74

    You also modify the main template that bbPress uses but this would also require FTP data.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    You should contact your host to find the FTP data you have.

    #163474

    In reply to: Plugin v. built-in

    Robkk
    Moderator

    Read this , This is a frequently asked question so I added it on to here.

    Frequently Asked Questions

    #163473
    Robkk
    Moderator

    search for unread/read posts plugins for bbPress.

    They are listed in here too.

    Feature Plugins Tracking

    #163470
    Robkk
    Moderator

    this might be coming from some other plugin you are using.

    Try the plugin troubleshooting steps here

    Troubleshooting

    you can also try theme too if you have some really advanced theme or something.

    #163469
    Robkk
    Moderator

    The solution to the issue should be in a link in this reply I made.

    Viewing Forum Pages makes Blog Menu Item the current_page_parent

Viewing 25 results - 14,826 through 14,850 (of 64,454 total)
Skip to toolbar