Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,076 through 1,100 (of 11,578 total)
  • Author
    Search Results
  • #214242
    nedhoste
    Participant

    Hi – I am new to BBP and this may be a really obvious question.

    I am running Avada 7.02 on WP 5.5.1

    I have set up the registration and lost password and forum pages – I have allowed anyone to register in settings – however when I test the registration page, it allows me to fill in the Username and email panels. But when I click the register button the page redirects to a 404 page and the registration does not complete. (If the solution is blindingly obvious, please be gentle! but still let me know)

    Any ideas, solutions gratefully received.

    The plugins live on the site are
    ManageWP – Worker by GoDaddy
    WPML Multilingual CMS by OnTheGoSystems
    Yoast SEO Multilingual by OnTheGoSystems
    bbPress by The bbPress Contributors
    Contact Form 7 Multilingual by OnTheGoSystems
    Cookie Notice by dFactory
    Ditty News Ticker by Metaphor Creations
    Ditty Twitter Ticker by Metaphor Creations
    Easy Hide Login by Arshid
    Feed Them Social – for Twitter feed, Youtube, Pinterest and more by SlickRemix
    Avada Builder by ThemeFusion
    Avada Core by ThemeFusion
    Avada Custom Branding by ThemeFusion
    LiteSpeed Cache by LiteSpeed Technologies
    Mailchimp for WooCommerce by Mailchimp
    MC4WP: Mailchimp for WordPress by ibericode
    Wordfence Security by Wordfence
    Yoast SEO by Team Yoast
    WPForms Lite by WPForms
    MailChimp for WordPress Multilingual by OnTheGoSystems
    WPML Media by OnTheGoSystems
    WPML String Translation by OnTheGoSystems
    WPML Translation Management by OnTheGoSystems

    The site address is micro-oiseau.com

    Many thanks in advance.Have a great weekend

    Ned

    Hot Themes
    Participant

    Hello,

    We have bbPress and Yoast (latest versions) on our website. Today, using Semrush’s site audit, we discovered hundreds of pages without page titles (actually, the page title is there, it shows only our website name). All these pages are profile pages of our forum participants, including their topics, replies, engagements, and favorites pages.

    We have tried to fix this using the “BBP Improvements for Yoast” plugin (old version 1.0) and it added page titles to the profiles pages, for example, “username’s Profile – Site name”. However, the titles are again the same for topics, replies, engagements, and favorites page (“username’s Profile – Site name” everywhere). Ideally, they would be “username’s Profile – Topics – Site name”, “username’s Profile – Replies – Site name”, etc.

    Any help to fix this problem will be appreciated. Our forum link is HotThemes forum

    Best regards,
    Milos

    #214223
    Robin W
    Moderator

    hmm. cannot access this area without registering, and sorry don’t have time for that.

    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

    #214211
    Robin W
    Moderator

    or maybe to the latest 5.5.1 bbpress version.

    #214209

    In reply to: Unwanted Menu Items

    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

    #214189
    kigazw
    Participant

    Hello everyone, please help!

    Problems since the last WordPress update.

    Since the last WordPress update, you can no longer choose between “visual” and “text” in the text editor.

    In addition, the “GD Attachments” plugin no longer works.

    Am I alone with the problem?

    Happy to test at:

    https://pollenhoeschen.de/Hummelforum/Thema/ektiven-es-kann-heute-zu-ausfaellen-von-pollenhoeschen-de-kommen/

    #214143
    Robin W
    Moderator

    hmmm… the code works fine on my test site.

    I 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

    #214098
    bvaring
    Participant

    With this codex how do you specify only the latest replies or a specific number of replies for one topic.

    #214027
    hellojesse
    Participant

    My plugin is rejeceted, here is their reply:
    Your plugin has been rejected because it is a duplicate of another plugin, already hosted on WordPress.org

    My answer was this:
    The reason why I did it is because, I do have client and he checked your plugin and he said that "This plugin hasn’t been tested with the latest 3 major releases of WordPress." So he feels insecure. I have tested with WordPress and bbPress and it works fine.

    #214011

    In reply to: reverted information

    jl63
    Participant

    hello,
    you can see the bad version at http://cetef63.fr/?forum=test
    and the good result at http://cetef63.fr/?forum=sylviculture

    #213999
    martinrtr
    Participant

    HI there

    I was setting up BBPress and testing ‘register’ and couldn’t figure out why i didn’t get the verification email. Then I realised I had mis-typed my email. I was therefore wondering if there was any way to add a ‘re-type’ email field to the BBpress registration form?

    WP 5.5
    BBPress 2.6.5
    Theme Groppe from Victor Themes (https://themeforest.net/item/groppe-nonprofit-wordpress-theme/20351940?gclid=EAIaIQobChMIsvqPo_Wz6wIVVrTVCh3mVQpjEAAYASAAEgKMKPD_BwE)

    Thanks
    Martin

    #213898
    nayanboost
    Participant

    I have written the below script to restrict users to access forums or topics. Here are the conditions:
    1. If user in not logged in will be redirected to “Join” page.
    2. If user is logged in but doesn’t have “pmpro_role_1” role, he will be redirected to “Product Page”.
    3. If a user is the administrator, he can view the page.

    The problem here is for topics in forum it is working except the latest created topic. And it is taking user to “Join” page even if the user is logged in and have the “pmpro_role_1”. What is happening here?

    Please help.

    add_action ('template_redirect', 'forum_security');
    	
    	function forum_security(){
    		$roles = wp_get_current_user()-> roles;
    		if(is_singular( array( 'forum', 'topic' ) )){
    			if(!is_user_logged_in()){
    				wp_redirect('/join');
    				exit;
    			}else{
    				if(current_user_can('administrator')){
    					return;
    				}elseif(!in_array('pmpro_role_1', $roles)){
    					wp_redirect('/product/channel-mcgilchrist');
    				}
    			}
    			
    		}
    	}
    #213872

    In reply to: User ranking system?

    Robin W
    Moderator

    you make it sound so simple – probably a days work to create, an another to test/release etc.

    #213870

    In reply to: BBpress error?

    Bingo Bongo
    Participant

    Thanks Robin,

    I’ll test with that disabled

    #213786
    Robin W
    Moderator

    something strange going on!

    I 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

    I’d start by taking out any code in your child theme’s functions file !

    #213683
    jelvidge
    Participant

    Thank you Robin.

    UPDATE: I’ve just heard back from Elementor support with the following:

    Thanks for contacting us and for bringing this issue with our Hello theme to our attention.

    I have made a report of this issue (attached with your ticket) to our developers to have a deeper look into this as we were able to replicate this in our testing site as well. Although we are unable to provide you with a definite ETA as to when this will be addressed, our developers will work to provide an update on this as soon as possible.

    If you’d like, feel free to keep an eye on our GitHub changelog (link below) during our new releases to know when this has been fixed.

    https://github.com/elementor/hello-theme

    #213646

    In reply to: Sort topics in a Forum

    vorahasti
    Participant

    yes I want latest replies to be shown first

    #213644

    In reply to: Sort topics in a Forum

    vorahasti
    Participant

    what I have to edit in bbp style pack to get that latest replies first? I selected decending but its not changing

    #213639

    In reply to: Sort topics in a Forum

    vorahasti
    Participant

    Hey,
    I have to sort the replies of the forum topics.
    I want latest replies to be shown first. Please help me.
    Is there any way I can implement this?

    Thankyou

    #213631
    2cats
    Participant

    Our forum is behind a membership wall, but since updating to the latest version of bbPress forum users who have signed up for new topic notifications under various forums are not receiving those notifications. We have bbPress 2.6.5, bbPress Private Groups 3.8.3, and GD bbPress Attachments 4.1. We use SendGrid for mail delivery so I can see that topic reply notifications are being sent and received. Any ideas where I can look? I’ve gone into the “Repair Forums” and “Upgrade Forums” functions and run everything that looked applicable, including upgrade user topic and user forum subscriptions. Any advice would be greatly appreciated, thank you.

    #213545
    randrcomputers
    Participant

    Strange issue seems to only happen for logged in users and cache is disabled for logged in users… if a thread has 20 pages of posts it seems from activity page you cannot get to latest reply from link it will always go to previous page. Is this where I would need to repair index or something? Or possibly another bug? I’m running one older version then latest version.

    #213519

    In reply to: last topic/comment

    2cats
    Participant

    Is there by chance a fix coming for this issue? I’m a bit uncomfortable pasting in a patch, but I have forum participants up in arms because topics are not updating with the most recent post. If I run the repair fix: “Recalculate last activity in each topic and forum”, the topics update, but once people start posting again the latest post no longer shows up on the Forum list. Thank you!

    #213508

    In reply to: bb style pack

    fl3xtra
    Participant

    hahah. I know what they want. i’m not sure what you’re asking. they want to literally hit a button and sort by latest reply. the areas circled on my picture are ways the user can sort the forum. they want to know if they can do that.

    View post on imgur.com

    #213506

    In reply to: bb style pack

    fl3xtra
    Participant

    Pardon me, still early for me. What do you mean? I assume they want to sort a forum by latest reply. This was their exact wording “Is there a way to sort by latest posts”

    bmdusers.com

    #213505

    In reply to: bb style pack

    Robin W
    Moderator

    what do they want to sort via latest posts ?

Viewing 25 results - 1,076 through 1,100 (of 11,578 total)
Skip to toolbar