Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 18,826 through 18,850 (of 64,516 total)
  • Author
    Search Results
  • #151554

    In reply to: Broken Breadcrumbs

    Robin W
    Moderator

    Without further info from you, have you tried

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

    #151553
    Robin W
    Moderator

    ok, the template for the forum index isn’t used. Bbpress looks for your theme template fiels and uses them instead.

    see

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

    #151552
    Robin W
    Moderator

    I have marletpress and bbpress running quite happily together.

    I suggest you contact you host provider for help

    sharoni
    Participant

    Hi everyone,

    i have WP multisite v3.92, and bbpress 2.5.4. I am trying to put Marketpress Lite on there too, and they run fine on their own but i get this error message when i try to activate them both together:

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 122880 bytes) in /home/name/public_html/wp-content/plugins/bbpress/includes/admin/metaboxes.php on line 168

    I changed the theme to Twenty Twelve, then i got this message:

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 80 bytes) in /home/sisadmi/public_html/wp-content/plugins/buddypress/bp-core/bp-core-buddybar.php on line 276

    Here is a link to the site: http://www.sistahs.club/

    i’d be grateful for any suggestions, thanks

    #151549
    Killerrabbit2
    Participant

    Update: did more testing – If the user also clicks to subscribe to the post and then enters a comment into the string he does not receive any more updates.

    In addition I installed a brand new version of WP running Twenty Fourteen and just the bbPress plugin. Is this a known bug?

    #151548
    btreinhart
    Participant

    The forum index page that has “[bbp-forum-index]” is using the test.php template, and it displays properly but when you click on a forum, and it takes you to domain.com/forum/your-forum-name the template isn’t working like it should. I took on this project from a developer who is no longer with us, and I assume he didn’t know how to fix it so he left it the way it was before he left. I downloaded the latest version, and I see the files class.wp.scripts, general-template, page, test outside of the bbpress folder, but I tried to place them in specific areas and still didn’t have any luck. Can anyone give me direction? Thank you.

    #151546
    K-Path
    Participant

    WordPress 3.9.2 running Montezuma theme.
    bbPress 2.5.4

    There is no “Forums” landing page and the breadcrumbs don’t work for either forums or topics. You can see the individual forums from inside the admin and clicking view and then post a topic but you can’t see the forum from the public face of the blog. Follow the link and you’ll see what I mean.
    http://ecopsi.org/forums/topic/the-codex-of-aman/

    Very frustrating. Is there something that I forget to do?

    #151538
    ymd143
    Participant

    Hello – I have successfully installed the plugin and created my forums, however i am having trouble getting the user roles set. When I try to save a user role such as moderator instead of participant, it will not save and just reverts back to participant.

    Can you please help. bbpress Version 2.5.4, wd press WordPress 3.9.2 : Safarica theme version 1.5.0,

    Thanks for your help!

    #151536

    Topic: Get User Role from ID

    in forum Themes
    robsward
    Participant

    I’m trying to add a column to bbPress 2.x that lists the last person to reply to a topic and adds a specific class to the

    if that person is a moderator or keymaster. Unfortunately, I can’t find any documentation on the template tags in 2.x. So far, I’ve been able to get the user ID for the last reply, but I can’t seem to find the function that would get the role information for that user based on their ID.
    Here’s the code that gets the ID:

    $reply_author_id = bbp_get_reply_author_id( array( 'post_id' => bbp_get_topic_last_active_id() ) );

    Now how can I get their bbPress role?

    #151527
    thebardkyo
    Participant

    ok guys nice to meet you all and forgive me about my poor English.

    my site is http://www.lotyr.cc/ and It’s a Chinese one, bbPress entrance is http://www.lotyr.cc/bbs/.

    I’m using WordPress 3.9.2, Customized Thematic 1.0.4 theme and bbPRESS 2.5.4.

    Here comes my problem:

    I want my bbs users to upload and insert images before submitting a topic, so I used a plugin named [bbPress Enable TinyMCE Visual Tab], I enabled the media upload button through it and it works.

    The default role of my site is contributor so [upload_files]capability is on, I double-checked it through another plugin.

    And that contributor have the access to “media” in dashboard, upload works.

    but when the contributor uploads through the button in the forum, it said “An error occurred in the upload. Please try again later.” I checked the upload folder and there’s no new files.

    is there any solution to it?

    #151526
    korzay
    Participant

    Here’s my setup:

    WordPress Version: 3.8
    bbPress Version: 2.5.2
    Operating System: Linux
    Web Server: Apache
    Theme: Twenty Twelve child theme
    PHP Version: 5.3.3

    Thanks for looking into this!

    I am editing now my website cepinfo and windowshata

    #151525
    MeganKakora
    Participant

    Well, since no one replied I played around a bit more, broke the website and then started again and tried something new. This answer is really for peeps who come across the same problem and don’t know what the problem is or how to fix, so I hope this helps.

    My problem was the .php structure of my permalinks. Our server is configured in a very stupid way (and unfortunately I can’t change it) so I’ve reverted back to the default permalink settings which doesn’t incorporate .php in the URLs. And now everything works fine.

    So, if you have .php in your URL, bbpress user profiles won’t work.

    tystra
    Participant

    I’m having trouble outputting specific topic counts for individual forums into Google’s Geochart. I want to have the total topic count listed on the map for each region (each forum). I use the following code to try and print the value, but I know I’m missing something (limited PHP/Javascript experience). Please take a look below, what do I need to add in order to get the value to output?

    <?php function my_geochart_script() {
            
       echo '<script type="text/javascript">
       google.load("visualization", "1", {"packages": ["geochart"]});
       google.setOnLoadCallback(drawRegionsMap);
     
       function drawRegionsMap() {
            var data = google.visualization.arrayToDataTable([
                    ["Country", "Popularity"],
                    ["Canada", <?php bbp_forum_topic_count( '23196' ); ?>],
                    ["Japan", <?php bbp_forum_topic_count( '23190' ); ?>],
            ]);
     
            var options = {backgroundColor:{fill:"transparent"}};
     
            var chart = new google.visualization.GeoChart(document.getElementById("chart_div"));
            chart.draw(data, options);
       };
       </script>';
    }
    add_action( 'wp_head', 'my_geochart_script' );

    Any help would be much much appreciated! Thank you.

    Killerrabbit2
    Participant

    We have a couple of topics that have punctuation in them.

    One of them: “Hello, I,m…”

    If people are subscripted to this forum or post this is what they get in the subject line for the notification:

    Hello, I'm…

    Wordpress or bbPress is converting those characters to the html equivanant.

    So, “‘” converts to &#039 and “…” converts to m…

    This makes it really hard to read. Any way to fix this issue?

    #151482
    #151481
    perlliure
    Participant

    Hi!

    I’ve just installed bbpress following the guide available on documentation. Once everything set up I can register, login and see the forum root and threats (created from dashboard) but I can not see the forums hanging from the root.

    Any idea? Thanks in advance.

    Oriol

    ps: http://www.mgb-snowculture.com/blog/foro/foro-reparacion-esquis-y-snowboard/

    ps2: in permanent links this is my structure ../%category%/%postname%/

    #151468

    In reply to: Slow to Post

    Nitac
    Participant

    http://killyourstereo.com – the main forum is private

    Server : AWS EC2 m1.medium
    DB : AWS RDS db.m3.medium
    CDN: AWS S3 (currently only serving images)

    Here’s a breakdown of the site: http://builtwith.com/killyourstereo.com let me know if any other info would help.

    Not using anything crazy from a plugin perspective either:
    ACF
    BBPress
    Quick Cache Pro (caching only for guests at the moment)
    All in One SEO

    and few other plugins.

    – No threaded replies
    – The forum is on the root, hadn’t really considered moving but it feels like its more of a db issue.

    at the moment its taking about ~15seconds to reply

    cheers

    #151465

    In reply to: Slow to Post

    Robkk
    Moderator

    when i respond using LMGTFY its normally a dig at the other person

    XD haha alright

    ive eliminated all the points you’ve made above, and the site only chokes when users are submitting posts in the forum, so I’m confident i’ve isolated the issue.

    great!! i was hoping you did , because any second shaved in loading helps.

    as mentioned i’m coping heaps of flack for the performance of the forum and losing users so i hope you can appreciate why there’s an element of urgency.

    post more information about how you are setup on your site. (this is good for support of others users)

    do you have threaded replies active? (this always took awhile to load on a reply for me)
    do you have the forum on root? (some huge bbpress forums i saw have the forum on a subdomain)
    do you have a cdn? (i checked two huge forums that use bbpress and they use cloudflare)

    here are the forums
    http://tamrielfoundry.com/forums
    http://www.highexistence.com/discussions

    and also can you post a link to your forum?

    #151462

    In reply to: Slow to Post

    Robkk
    Moderator

    haha i read everything

    what i just doing is lead you to a google search , it was suppose to help you to find info that might help you

    any kind of information is good when trying to speed up a website.

    i dont know if you use alot of bbpress plugins or plugins that work with it and you need to optimize scripts and css handling.

    or if your forums have alot embedded images or uploaded images.

    or that you need a database optimizer plugin

    im just trying to help you on a pretty broad question

    i wasnt trying to be rude or anything if you took it that way

    other than that i guess wait til 2.6

    Robkk
    Moderator

    haha i found the topic your talking about

    https://wordpress.org/support/topic/cant-ask-question-in-bbpress-forum-wont-post-help-1?replies=8


    @netweb
    meant if your question pertains to bbpress

    post your topic here https://wordpress.org/support/forum/how-to-and-troubleshooting#postform

    and how wordpress works on posting support forums , if its plugins or themes they have their own support forums, but its just any other wordpress stuff post in some of these forums in this link

    Support Forums

    Stephen Edgar
    Keymaster

    This is not a bbPress issue, please post your WordPress issues on the WordPress support forums:

    Support Forums

    #151440
    Stephen Edgar
    Keymaster

    No, do not apply any fixes in #2586, these are what was included in bbPress 2.5.4.

    I’ll check out a couple of things and get back to you, in the meantime do you still have “Enable Threaded Replies” in bbPress settings?

    #151438
    luisc9
    Participant

    Stephen:

    Bad news 🙁

    I got the message: “Recalculating reply menu order … No reply positions to recalculate!”

    But the replies are not in order…

    Any ideas? Should we apply the fix at https://bbpress.trac.wordpress.org/ticket/2586 ?

    Thanks in advance
    Luis

    #151430
    Robkk
    Moderator

    in the original bbpress theme

    in loop-single-topic.php your freshness column should have this

    the bolded text is what shows the avatar,
    to make it bigger just make the number higher
    high existence uses 40 , they have border radius css to make it rounded

    
    <li class="bbp-topic-freshness">
    
    		<?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?>
    
    		<?php bbp_topic_freshness_link(); ?>
    
    		<?php do_action( 'bbp_theme_after_topic_freshness_link' ); ?>
    
    		<p class="bbp-topic-meta">
    
    			<?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?>
    
    			<strong><span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span></strong>
    
    			<?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?>
    
    		</p>
    
    #151423
    johnwasneverhere
    Participant

    Hello! I’m using WP 3.91 and BBPRESS 2.54. My forum is at caravanguitars.com/forum

    I’d love to add a colum to my topics list just like here… with the image being the main addition.

    http://www.highexistence.com/discussions/latest/

    Any ideas how to accomplish this? I’ve been searching high and low with no promising leads. Thanks for any help!!

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