Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,126 through 17,150 (of 64,532 total)
  • Author
    Search Results
  • #156740
    Robin W
    Moderator

    Try the following

    //adds login/logout to menu
    //filter to add login/logout to menu
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_login_link' );
    function my_nav_menu_login_link($menu) {
        //uncomment the next line if you only want login on bbpress pages
        //if(is_bbpress()) {
        if (is_user_logged_in()) {
            //set the $url on the next line to the page you want users to go back to when they logout
            $url = 'http://www.mysite.com/forums' ;
            $url2=wp_logout_url($url) ;
            $loginlink = '<li><a title="Logout" href="'.$url2.'">Logout</a></li>';
            }
        else {
            $current_user = wp_get_current_user();
            $user=$current_user->user_login ;
            //set $page on the next line = the permalink for your login page
            $page='login' ;
            $loginlink = '<li><a href="/'.$page.'/">Login</a></li>';
                    }
        //uncomment out the next lines if you only want login on bbpress pages
        //      }
        //  else {
        //  $loginlink="" ;
        //      }
            $menu = $menu . $loginlink;
            return $menu;
    }
    dingzj
    Participant

    I have bbpress properly set up, and it worked well, except when clicking the user’s profile page, there is no sidebar with logged-in widget.

    Actually the sidebar was under user’s profile page. See this image.
    https://c4.staticflickr.com/8/7549/16059375738_d3e7dc8e1c_z.jpg

    How to fix this?
    I checked the source code, looks like the user profile page don’t have a ‘.et_right_sidebar’ class for its ‘left-area’, seems I need to change its template page? How?

    I am still a beginner to understand template code. Any good resources to better understand WP codebase?

    However, other forum page or topic page are fine with sidebar, like this.
    https://c2.staticflickr.com/8/7498/16245113651_341d810976_z.jpg

    #156726
    Doug Smith
    Participant

    Another thing you might try is one of the many login widgets in the WordPress plugin repository. It doesn’t have to be specific to bbPress to work. For example, here’s a tabbed login widget that looks pretty nice.

    #156725
    se7en1216
    Participant

    So earlier, someone suggested doing the following:

    // Add the breadcrumb
    // $crumbs[] = '<a href="' . esc_url( $root_url ) . '">' . $r['root_text'] . '</a>';
    $crumbs[] = '<a href="/forum/">Forum</a>';

    Can I make a duplicate of the template.php to drop into my theme somewhere to make a similar change? This works, but I don’t like the idea of altering the main bbpress files.

    #156722
    J.Parra
    Participant

    Hello.
    BBPress have a problem with is that after installing it. I do forums and subforums and I have put a link in the header of the site and list me correctly, coming not find specific forum.
    I not find them by FTP

    What is happening?

    Thanks and regards.

    #155840
    cyclesha
    Participant

    I just activated bbPress and added a Forums menu page. I Tried to set up a topic and then brought up my site after clearing the browser. Yes, I do get the Forums page although I can’t do anything relative to the topic or replies from the front end.

    I’m very new to bbPress and definitely would appreciate some direction to instruction or a step by step guide. Yes, I did read the info on the bbPress pages and still can’t figure this out.

    You can see my problem here: http://cycleshanty.com/?forum=forums

    Yes,I am using WP 4.1

    A little help please.

    #156608
    Doug Smith
    Participant

    I just finished troubleshooting a problem where user profile links would redirect to the site home page. I’m documenting it here in case others run into the same problem.

    It turns out there is a conflict with a feature in the WordPress SEO by Yoast plugin; both in the free and premium versions. There is a “Disable the author archives” setting under “Titles & Metas” –> “Other” that must be unchecked for bbPress profile links to work.

    I have reported the issue to Yoast. They agree that there is a context difference between blog authors and bbPress users that should be accommodated. They have created a GitHub issue for it if anyone wants to follow along or participate.

    #156665
    Robkk
    Moderator

    there is alot of RSS/news ticker plugins that could do this vertical scrolling thing.

    i suggest doing a google search and seeing what might be the best

    to most likely make it work with bbPress you will need to use the bbPress RSS feeds.

    you can change how many topics to show in the RSS page in settings>forums

    for listing all the most recent topics use something like this for example

    https://bbpress.org/feed/?post_type=topic/

    so on your site it would be

    http://example.com/feed/?post_type=topic/

    #156594
    Robin W
    Moderator

    Several plugins that will do this for you, bbpress stores the entries as 3 custom post types, Forums, Topics, and Replies

    I googled ‘wordpress export custom post to excel’ and got several inc.

    https://wordpress.org/plugins/wp-ultimate-csv-importer/

    https://wordpress.org/plugins/custom-csv-exporter/

    #156572
    Robin W
    Moderator

    easiest way would be to uncode my shortcode

    bbp additional shortcodes

    or just use the do_shortcode function within your code

    https://codex.wordpress.org/Function_Reference/do_shortcode

    #156708
    Nicolas Korobochkin
    Participant

    I’m sorry for few days of silence. My love in the USA, and I’m in Russia without the visa.


    @jeffacubed
    thank you for “спасибо”. I can publish the code. Also I can give you access to my private repo on Bitbucket.

    wp_signup_location – it’s the filter which returns the sign up page location (url) and WordPress redirect to this addres. So this address not using in wp-signup.php because you already on the signup page. Your example of grep result shows that this filter using in wp-login.php (this page have the signup link).

    My code
    All of this files a part of my mu-plugins for this project.

    Require necessary files — gist.github.com/korobochkin/06780b88118e35c3bfd1

    wp-signup.php — gist.github.com/korobochkin/9e4f9cd6502c4252d902 I use selena_network_signup_main function from this file on page-signup.php template in child theme.

    wp-activate.php — gist.github.com/korobochkin/765d0a5d4e028dc3001a I use selena_network_activation_page function from this file on page-activate.php template.

    And finally gist.github.com/korobochkin/a161718855b7784bfb10 file which sends notifications after you create an account and disable default WordPress notifications (return false at the end of the function). If you return true at the end of this function then user get 2 emails with different activation links:
    site.com/wp-activate.php?key=HASH
    site.com/activate/?key=HASH

    P. S. can’t post this reply with links (bbPress doesn’t allow post replies with links).

    #156696
    Robin W
    Moderator

    I’m sorry but I don’t understand what you mean.

    What shortcodes – where?

    You will need to either provide examples or explain further.

    Sorry, but I am trying to help you, but there are hundreds of ways to set up wordpress/bbpress so need clear issues to resolve eg it looks like this, it needs to look like this

    #156685

    In reply to: No topics to convert?

    dallinlabap
    Participant

    Well, I didn’t get an y responses but I found a work around to the builtin import tool not working. Jeremy posted an unpublished plugin that worked great for me. Here is the link to the post http://clark-technet.com/2012/04/simplepress-forum-to-bbpress-forum-conversion .

    Hopefully this will help anyone in the future that has the same issue I did.

    Once again, a big thanks to Jeremy for writing the plugin for all to use!

    MLH78
    Participant

    Hi all,

    I need help for programming a little feature for my forum.
    I’m willing to pay some money, after a more detailed discussion of price.
    But this should be somewhat “easy” for a programmer used to bbpress/wordpress, as most code already exists.

    If interested:

    Please, have a look at this page:
    https://www.tradingview.com/widget
    (They supply this for free by the way)

    Look at the top widget/stock chart, and look at the code supplied on the same page underneath the chart.
    Also notice how you can enter the stock-symbol of choice, in the top left corner of the chart, to search in Teamviewers own database, to load a new chart.
    NOTE: This method (from the user interface) does apparently NOT change the “SYMBOL” in the code, as seen on the page above.
    – For the “widget” to show another symbol by default, you’ll have to enter it and click “Apply” on the left side, to update the code with a new default SYMBOL.
    Please try it out, to have a feeling how it works.

    Now my questions:

    Q1:
    Is it possible to embed this script, in the text-area for bbpress, and run its output “live” when a user edits a new post?
    It could be called and embedded into the text area, by clicking a “check-button” labeled “Graf” (‘Chart’ in Danish).
    (And removed again unchecking this button – of course)

    Q2:
    Is it possible for the user, to enter directly on the user interface of the widget, a new symbol, and post it (correct chart) together with the topic?
    It would maybe require that the Post-button would need to update the “SYMBOL”-line in the script code, with the symbol the user have chosen and fetched from Tradingviews database, while also posting it all…Like you would do with an WYSIWYG editor

    I hope I made myself somewhat understandable 🙂

    Thanks in advance !

    Best regards,
    Martin L. Hansen – Denmark.

    #156679
    Robin W
    Moderator

    @geeorgegeorge

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    then come back

    #156677
    geeorgegeorge
    Participant

    Hi, Sorry that I post my question here as I can’t find the button to create my topic.
    My question is very similar to this one. In all my forum, no topic shows, but with the 2 lines.

    This forum contains 1 topic, and was last updated by george 2 hours, 5 minutes ago.
    Oh bother! No topics were found here!

    I use wp4.1 and bbpress 2.54 . Previously before I upgrade to 4.1, It works alright!

    george

    #156676
    SergioDev
    Participant

    Hi!

    I want to put tinyMCE in bbPress, I copied this code -> https://codex.bbpress.org/enable-visual-editor/ and it works good but I want to disable html tab and leaving only the visual tab.

    Is it possible without using css or javascript solutions?

    #156673
    nishant2hit
    Participant

    Hi there, I am using insert_php plugin with bbpress. I have already added [insert_php] as a shortcode to whitelisted shortcode list under ‘bbPress2 shortcode whitelist’s settings. But, I am still getting [insert_php] as text in replies. Please help me understand if I am missing something here?

    #156669
    Robkk
    Moderator

    I believe that wordpress support forums use bbpress, how can I add this “Add New” button to my bbpress forum

    they do , the bbpress standalone version

    suprisingly this button is not in here.

    wordpress.org use a customized version of bbPress just like this site ooes

    you can try something like this

    <?php if ( bbp_is_single_topic() ) : ?>
    
    <?php if ( is_user_logged_in() ) : ?>
    <a class="bbp-new-reply-button" href="#new-post">New Reply</a><li>
    <?php endif; ?>		
    	
    <?php endif; ?>

    place the code in loop-replies.php above the <li class="bbp-header">

    you can style the link like so with some CSS , place wherever you place custom CSS

    .bbp-new-reply-button {
        background:black;
        color:#fff;
        text-transform:uppercase;
        text-decoration:none;
    }
    #156668
    Robkk
    Moderator

    there is alot of RSS/news ticker plugins that could do this vertical scrolling thing.

    i suggest doing a google search and seeing what might be the best

    to most likely make it work with bbPress you will need to use the bbPress RSS feeds.

    you can change how many topics to show in the RSS page in settings>forums

    for listing all the most recent topics use something like this for example

    https://bbpress.org/feed/?post_type=topic/

    so on your site it would be

    example.com/feed/?post_type=topic/

    #156667
    Robkk
    Moderator

    bbPress doesnt render shortcodes

    you will need to use a plugin like this

    https://wordpress.org/plugins/bbpress-do-short-codes/

    Note: by default, only users with the ability to publish bbPress forums will have their short codes parsed. This can be changed by passing a different capability via the pw_bbp_parse_shortcodes_cap filter.

    so by this note keymasters/moderators for sure can post shortcodes.

    #156666
    Robkk
    Moderator

    this plugin does this type of thing but you have to manually configure that part

    https://wordpress.org/plugins/bbpress-go-to-first-unread-post/changelog/

    you would have to copy the bbPress Recent Topics widget edit it/rename it and change where it renders the topic title to gtf_topic_title()

    Robkk
    Moderator

    we´re finding bbpress so incredibly frustrating, no private messages, no way to tell users if x post has unread replies (I mean, really!? how is a user supposed to use it regularly!?)

    sorry about your experience so far, there is alot of unread posts plugins that do unread posts quite differently in each one.

    search google for these.

    bbPress – Pencil Unread
    bbPress Unread Posts
    bbPress New Topics
    bbPress Go To First Unread Post
    bbPress – Mark as Read
    bbPress – Thread Catch-Up

    and as for private messages their are a bunch of WordPress plugins that do that also. 1 for sure is BuddyPress which is made by the same developer as bbPress.

    check out this topic for other examples besides BuddyPress’ private messages feature. https://bbpress.org/forums/topic/private-messages-not-with-buddy-press/

    if you have any other issues with bbPress please make a new topic and the support will try to handle it as soon as possible.

    #156662
    nexus24g
    Participant

    I’m looking for a very basic scrolling Latest topics like there is on forumotion forums, does anyone have any good plugins they would recommend to use with bbPress?

    #156645

    In reply to: Custom Forum Layout

    Robin W
    Moderator

    ok, I’ve added it to my shortcode plugin

    bbp additional shortcodes

    you will want :

    [display-forum-index forum= ‘2932, 2921′ breadcrumb=’no’ search=’no’]

    You can see how to set this in

    Dashboard>settings>shortcodes

Viewing 25 results - 17,126 through 17,150 (of 64,532 total)
Skip to toolbar