Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,526 through 1,550 (of 11,598 total)
  • Author
    Search Results
  • #204936
    Robin W
    Moderator

    in style pack, I just list plugins I have found and used on client sites, and were working at the Time of testing. I can’t say if they still work, and sorry don’t have time to test regularly 🙂

    #204935
    Chuckie
    Participant

    Yeah, that is understandable.

    In bbp style pack it lists a few other plugins. I wonder if we could indicate any that won’t work with the latest bbp build.

    Also, if it is not maintained I guess there is no where to ask for help.

    I understand people getting overwhelmed.

    But I tend not to install plugins that say they are not supported.

    Was thinking of:

    bbPress Advanced Statistics

    Andrew

    #204931
    Robin W
    Moderator

    I’d suggest you talk to your host provider, but also

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #204824

    In reply to: Importing from phpBB

    Chuckie
    Participant

    I tried doing this with a staging website and it would not convert. Has this importer been tested with recent editions of phpBB?

    #204785
    brunov99
    Participant

    wp 2.5.4 / bpp 2.5.14

    Hi everyone,
    does someone have an idea how to fix this ?
    the search bar is displayed correctly but the search button is not displayed at all.

    The more strange thing is that for testing purpose, I installed the 2.6RC7 version on the exact same config (exept bbpress of course) and here the button appears.

    Thank you for your advices.
    bV

    #204625
    Robin W
    Moderator

    you will need to do some testing to understand how subscriptions work, but in essence if you subscribe to a forum or thread, then you receive updates to that thread that do indeed contain the content.

    #204596
    tidaltroll
    Participant

    blah
    test reply
    1505
    blah

    #204569
    demonboy
    Participant

    Hi @lylatylor,

    I went ahead and purchased the bbPress Notify (No-Spam) Digests add-on to the bbPress Notify (No-Spam) plugin by Vinny Alves. Didn’t want to pay for a plugin whilst I’m just testing my yet-to-be-launched community but since email updates are a central part of its function I wanted a plugin that was actively supported.

    #204388
    Giannis Kipouros
    Participant

    Hello all,

    I am using BuddyPress with bbPress and I am noticing an issue when I have a forum topic with multiple pages. When I add a new reply it creates a BuddyPress activity that stores in the DB a primary_link of the type /forums/topic/topic-name/page/XX/#post-YYYY. For example /forums/topic/test-notification-for-reply/page/2/#post-3063

    The problem is that if I delete some previous replies from page 1 and this reply moves to the first page from the second page it was previously, its activity permalink (primary_link) remains the same and the activity still points to page 2 of the topic (not page 1 that is its new page).

    Is there any fix for this?

    Robin W
    Moderator

    as a test can you try with just bbpress and private groups, as if that is ok, add the others back until you find which one is allowing this

    #204323

    Topic: Topic slug

    in forum Troubleshooting
    zydarek
    Participant

    Hello, how i can edit topic slug, I would like it to display as below:

    Now is: https://epolonia.pl/topic/teamt-dania-podatki/

    But i want to display like https://epolonia.pl/forum/dania/podatki/test-topic/

    Where:
    forum is forum index
    dania – is category forym
    podatki – is subcategory forum (dania)
    test-topic – is a tittle of post.

    #204276
    Robin W
    Moderator

    If you just want to remove it from the list then you could amend loop-single-forum.php

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
    bbPress will now use this template instead of the original
    and you can amend this

    change it to (assuming 40250 is the fiorum id)

    
    <?php
    
    /**
     * Forums Loop - Single Forum
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    if ( !bbp_get_forum_id() == '40250')) {
    ?>
    
    <ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
    
    	<li class="bbp-forum-info">
    
    		<?php if ( bbp_is_user_home() && bbp_is_subscriptions() ) : ?>
    
    			<span class="bbp-row-actions">
    
    				<?php do_action( 'bbp_theme_before_forum_subscription_action' ); ?>
    
    				<?php bbp_forum_subscription_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '&times;' ) ); ?>
    
    				<?php do_action( 'bbp_theme_after_forum_subscription_action' ); ?>
    
    			</span>
    
    		<?php endif; ?>
    
    		<?php do_action( 'bbp_theme_before_forum_title' ); ?>
    
    		<a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a>
    
    		<?php do_action( 'bbp_theme_after_forum_title' ); ?>
    
    		<?php do_action( 'bbp_theme_before_forum_description' ); ?>
    
    		<div class="bbp-forum-content"><?php bbp_forum_content(); ?></div>
    
    		<?php do_action( 'bbp_theme_after_forum_description' ); ?>
    
    		<?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
    
    		<?php bbp_list_forums(); ?>
    
    		<?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
    
    		<?php bbp_forum_row_actions(); ?>
    
    	</li>
    
    	<li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li>
    
    	<li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li>
    
    	<li class="bbp-forum-freshness">
    
    		<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
    
    		<?php bbp_forum_freshness_link(); ?>
    
    		<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
    
    		<p class="bbp-topic-meta">
    
    			<?php do_action( 'bbp_theme_before_topic_author' ); ?>
    
    			<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
    
    			<?php do_action( 'bbp_theme_after_topic_author' ); ?>
    
    		</p>
    	</li>
    
    </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
    
    <?php } ?>

    Not tested but should work, if not then might be another bbpress plugin overwriting the template – come back

    #203893
    Robin W
    Moderator

    there is a fuction

    bbp_delete_topic function that you can substitute which I have not tested

    #203796
    meestergijs
    Participant

    Dear Robin,
    I installed your suggested plugin. Added the role keymaster to the list of email recipients when a new topic or reply is created. I tested it, it works!!

    Amazing. Your time to reply made a major change on the functionality of my website. Thanks a million.

    Gijs

    ttranvnu
    Participant

    I checked the database posts table via phpmyadmin and confirmed that replies posts did not come over to bbpress. Is there a way I can fix this manually by running some manual sql code?

    I’m using latest wordpress just downloaded today, and latest version of bbpress (bbPress 2.5.14).
    During the conversion I only get the following error which I don’t think tied to the replies posts not coming over.

    Repair any missing information: Continue

    WordPress database error: [Table ‘*.*_core_tags’ doesn’t exist]
    SELECT convert(core_tags.tag_meta_id USING “utf8mb4”) AS tag_meta_id,convert(core_tags.tag_text USING “utf8mb4”) AS tag_text FROM *_core_tags AS core_tags LIMIT 0, 100

    No tags to convert

    No super stickies to stick

    #203488

    In reply to: Where Do I Put This?

    Robin W
    Moderator

    can only suggest
    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #203484
    Robin W
    Moderator

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #203443

    Topic: Where Do I Put This?

    in forum Themes
    Ms Aberdeen
    Participant

    WORDPRESS VERSION [Last checked on September 18, 2019 at 9:48 am. Check Again
    You have the latest version of WordPress. Future security updates will be applied automatically.]
    BBPRESS VERSION: 2.5.14

    TWENTYNINETEEN

    home

    I am using the bbpress [forum] plugin.
    I do not want to use it in its default state. I want to have it maintain my site’s design.
    According to what I have read [HERE; https://codex.bbpress.org/themes/theme-compatibility/ ]

    to do so requires me to copy both the bbpress and the css directories
    from the default folder and paste it or upload
    it into the ‘theme’ directory/ folder.

    Thing is I am not quite sure if I ought to paste them [ bbpress & css directories] into the wp-config.php folder
    & if so where [in the wp-config.php folder] ? Is it Before or after the present info I see there now?

    #203338
    ginaginagina
    Participant

    Hey Robin and everyone else who might read this! I thought I would post the really simple solution! After TONS of staging site/plugin/permissions/theme/cache/etc. tests, Robin, you were right about it being in the “dashboard>settings>discussion settings” area — it was my list of moderated (blacklisted) words that was causing things not to work. It’s unfortunate, since I definitely don’t want instances of “www” or “.com” or “dot com” showing up in forum posts by people who are trying to bypass spam filters, but I had to remove those from the moderation list because I didn’t realize that it affects anyone who is writing a post on the site. From the description above the moderation field a comment that includes any of the blacklisted or moderated words that not only are included in the post, but also come from the “…name, URL, email, or IP address” of the poster, will be held for moderation (or deleted, in the case of blacklisting). Since everyone coming to our site has www or https or http or .com or something along those lines in their login info/email address, there’s no way to stop comments that include those since it also stops all users who are registered on our site via an email address. Once I removed those phrases from my moderation list and blacklist, we’re able to post freely and immediately (at least it looks like for now!).

    While I really regret that we can’t blacklist/moderate *just* the posts/replies that contain phrases like .com or www etc., it’s still great to find the problem — thank you, Robin!

    #203327
    hashtagtrends
    Participant

    Hi. What is the expected timing for 2.6?

    I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”

    Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.

    #203214
    Robin W
    Moderator

    hmm, without a link all I can suggest is

    1. Are you creating them as super sticky ?

    2. It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #203130
    ginaginagina
    Participant

    Hey Robin! I found it (hallelujah and thank you for your help!). There was a tiny setting deep in the recesses of the Avada theme that was causing these to not show up (I had been trying to work with their support team, too, but they kept telling me it was bbPress ;). Just for anyone else that finds this issue in Avada, you have to scroll to the bottom of your forum page when you are in edit mode to Avada Options > Page Title Bar > Show Bar and Content (or just “Show Content”) then adjust from there!

    Good grief. Such grief. Ha ha. Now to find out why posts are not publishing from anyone other than me and being held in “moderation”. May need to hire a developer on this one, as I’m testing permissions wide open on staging and still can’t get it to go! Ah. Websites. 😉

    Thanks, Robin

    #203128
    Robin W
    Moderator

    A default theme with just bbpress shows these, so it is either theme or plugin related – I can only suggest

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #203119

    In reply to: 403 Error page

    Robin W
    Moderator

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Hoster

    If that doesn’t work, talk to your hosting company

    #203011
    Robin W
    Moderator

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

Viewing 25 results - 1,526 through 1,550 (of 11,598 total)
Skip to toolbar