Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,776 through 14,800 (of 64,515 total)
  • Author
    Search Results
  • #163877
    ccarlow
    Participant

    New install of bbpress v2.7.5 on wordpress v4.2.2

    Question: How can I redirect to /forum after login? I have forum page set as a private page. bbpress forums need to be private and only accessed by registered users.

    I have searched for info on how to login/register and then redirect to a forum and haven’t been successful in finding a simple solutions. Some solutions look too complicated regarding writing code. I would assume there is a simple solution here.

    I have tried a redirect plugin (peter’s) and doesn’t work for bbpress users set with any bbpress role but does work if I login in as wp-admin with wp admin rights.

    SakuSama
    Participant

    Sorry but I don’t know what and where to add something. In the widget.php I have this :

    <?php		if ($show_user) :
    
    			echo '<div class="bbp_show_user">by <span class="topic-author">' . $author_link . '</span></div>';
    
    		endif;
    
    		if ($show_forum) :
    
    			echo '<div class="bbp_show_forum">In: <a href="' . bbp_get_forum_permalink($forum_id) . '">' . bbp_get_forum_title($forum_id) . '</a></div>';
    
    		endif;
    
    		if ($show_date) :
    
    			echo '<div class="bbp_show_date">';
    
    			bbp_topic_last_active_time($topic_id);
    
    			echo '</div>';
    
    		endif;
    
    		if ($show_detail) :
    
    			echo '<div class="bbp_show_detail">';
    
    			bbp_topic_excerpt($topic_id);
    
    			echo '</div>';
    
    		endif; ?>

    I think that I have something to do with the bbp_get_forum_permalink to go to the last page of the topic.

    I have tried to add this to the .php of the widget but it’s not working

    I’m a noob in php … I just know where to find the files on my ftp and to edit if someone know what I could add to the files. I have tried the widget “last posts” but it show all the last posts even if the lasts were in the same topic. It doesn’t display the news topics if nobody reply into them.

    #163875
    Robkk
    Moderator

    see if the note left here can help.

    Kunena (Joomla)

    and also if this topic helps.

    Kunena converter for bbPress 2.4

    #163874
    ghoush
    Participant

    It was https://thedomain.com/ for wordpress and bbpress was standard, so https://thedomain.com/forums/

    For the path, it was standard for WP Engine:

    /nas/wp/www/cluster-1234/thedomain/

    The log was just getting spammed with that error until I added that array(). But it wasn’t the big problem, so I wouldn’t have looked or noticed it unless I was having some other unrelated issue.

    #163872
    Robkk
    Moderator

    instead of this on single forums

    bbpress.org/forums/forum/pimp-your-press/

    you would have this.

    bbpress.org/forum/pimp-your-press/

    And if you create a category for some forums you could have

    bbpress.org/forum/design/pimp-your-press/

    #163871
    Robkk
    Moderator

    not yet but there are plans to include something to list moderators

    https://bbpress.trac.wordpress.org/ticket/459#comment:41

    #163868
    ghoush
    Participant

    Nope, its on WP Engine. I went to look through the logs because I was having the capabilities problem. I couldn’t access any of the wp-admin bbpress screens without permissions errors. I used User Role Editor, and hit reset to fix that.

    Then looking through the logs the were just filled with the same error from the same line as this person who started this thread. Changed the path to HIDDEN here:

    Warning: in_array() expects parameter 2 to be array, null given in HIDDEN\wp-content\plugins\bbpress\includes\common\functions.php on line 1446

    Going into functions.php and changing the second parameter to be wrapped in an array() call fixes it.

    #163864
    Robkk
    Moderator

    You can try flushing your permalinks and see if that works

    Navigation Links Return 404s Errors

    #163863

    In reply to:

    Robkk
    Moderator

    How to install bbPress.

    Installing bbPress

    The search box I am not sure what you are after really, bbPress comes with its own forum wide search though.

    #163852
    howl2154
    Participant

    WordPress 4.2.2
    bbPress Version 2.5.7
    s2Member Pro Framework Version 150311

    From Users when using Bulk Actions to change an s2Member Role (from e.g. Free Subscriber to Level 1) bbPress Forum Role changes from e.g. Participant to No Role.

    Updating Role 1 User at a time (clicking Username then Edit User) bbPress Forum Role remains Participant. So no problem updating Users 1 at a time.

    #163841
    Qeelin
    Participant

    I have searched the webernets tirelessly for an answer to this problem with no luck. I was checking out the example forums you list here bbpress.org/about/examples/ when I came across a site called tamrielfoundry.com/ and I noticed that they break up groups of forums. If you look at the first section “General Discussion” and click on one of the forums you will notice that the URL changes from tamrielfoundry.com/forums/ to tamrielfoundry.com/forum/general/general-discussion/ If you click on the top forum in the next section you jump from tamrielfoundry.com/forums/ to tamrielfoundry.com/forum/classes/class-discussion/ They seem to have the ability to have more than one single forum. Is this even possible with bbpress or has this site changed to a different forum? If this isn’t bbpress, is this kind of thing even possible. I would love the ability to break up sections of forums even if I have to somehow create a main forum page and build it by hand. Any help would be greatly appreciated.

    WordPress version 4.2.2
    bbPress version 2.5.7
    http://4nerdsgaming.com

    #163838
    gorets
    Participant

    I want to use forums as a main page of web site, I did it. But forum itself seems to be conflicting with some one, and I cannot find the problem, please help.
    site is here http://www.zibi.ru
    I’m using Spacious theme.

    WP version: 4.2.2
    BBPress: 2.5.7

    #163831
    Robkk
    Moderator

    Your theme is causing the issue , especially its styles for WordPress comments.

    Try this custom CSS

    #bbpress-forums .reply a {
      font-size: inherit;
      line-height: inherit;
      margin: 0;
      padding: 0;
      float: none;
      color: #c1052c;
    }
    
    #bbpress-forums .reply a:hover {
      color: #42a202;
    }

    Also in your CSS your links do not really have a defined color to them. There is this CSS, but it should be something like this #c1052c

    p a, a {
      color: c1052c;
    }
    #163828
    ovbg
    Participant

    Update: For anyone else who has the same issue, this plugin seemed to solve it for me.

    https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/

    #163825

    In reply to: CSS..?

    Uncle Jimmy
    Participant

    @Robkk

    First off, thank you! for pointing me to files Rob, that’s always my first battle. And thanks for giving me the clues to the solutions.

    I got notified right when you replied, on Sunday no less! And was SO excited! Thanks for responding on your personal time.

    Now I’m just trying to sort out your recommendations..lol! Seeing what files to work on helps me focus my learning curve.

    The avatar on the left (in the Edited View of above image) is going to hook back to the authors Buddypress Profile. Seeing that the file is structured in an unordered list helps me understand what’s happening with the php a little better.

    I have too much to learn! lol!, I wish there was a forum where services could be traded. :o)

    Here is how I sorted it out;

    First
    This article provided a snippet example that showed me the correct statement to put into a <li></li> right above the top li in loop-single-topic.php, I only had to add the class="bbp-topic-author-link" to the li, and then tell it to float-left/padding-0,10 in the child-theme/bbPress/css and voila! Wooohoooooo!!! Sorry, I get excited when things go right! lol!

    Second
    I commented out the Forum Titles – Voices/Freshness in loop-topics.php like this

    <!-- 			<li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li>
    			<li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
     -->

    ..and then move the reply count over & under Freshness, (again, with css)

    Third
    I’ll be back, I like to keep a record in my Topics here, cause I know!, I’ll forget! lol!

    michaela222
    Participant

    I have a problem with importing Kunena Forum to bbPress forum. I do import through the import function in bbPress. All forum posts are imported fine, but lacking usernames. All user names are labeled as anonymous.

    #163822
    confessng
    Participant

    Oooh seriously that’s what you get when a newbie has forum ideas ….thank you sooo much for pointing it out ,and I was so sure it was bbpress

    #163820
    gavintyte
    Participant

    I no longer to wish for members to login to my site to post in the bbPress forums. I can turn on anonymous posting (like anonymous comments)

    Is there a way of converting existing bbPress users to Guest users? e.g. Export and Re-import perhaps?

    #163818
    Sam Rohn
    Participant

    footer link on your page says

    Powered By MyBB, © 2002-2015 MyBB Group.

    MyBB is not bbPress 😉

    sam

    #163816
    confessng
    Participant

    Hello Robkk and thanks for responding.
    It is indeed bbpress if you scroll down you will see where it says powered by bbpress..I used a once click install …I only managed to change the logo with my limited knowledge/google search help

    #163815
    Robkk
    Moderator

    I decided to install bbpress without wordpress

    I am not seeing bbPress at all.

    Armando1625
    Participant

    Good Afternoon,

    Can someone please assist I’m having issues using Canvas Theme and bbPress. My Canvas theme makes the forum index look like post excerpt. I’ve looked for solutions only to find outdated links I’ve also submitted a ticket to woothemes only to be told they do not support this issue. I’m using Canvas 5.9.8 and bbPress 2.5.7.

    My website is http://www.missiontrails.org/forums/

    #163813
    confessng
    Participant

    I am a New-bie at this …..
    I decided to install bbpress without wordpress because i preferred the look,i want to edit the site ,create a banner add plugins and all that
    but it looks like there is no information online available for that or if there is i havent come across it yet,does anyone know where i can find such info?
    thee site is http://confessng.com

    I want to create a banner,change the colours ,add some sharing to social network buttons and more
    Can i get some help ? Articles or video links will be most welcome
    Thank you

    #163810
    Robkk
    Moderator

    Try some troubleshooting first if you haven’t already. Especially the theme and plugin sections.

    Troubleshooting

Viewing 25 results - 14,776 through 14,800 (of 64,515 total)
Skip to toolbar