Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,126 through 1,150 (of 11,654 total)
  • Author
    Search Results
  • #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 ?

    #213504

    Topic: bb style pack

    in forum Plugins
    fl3xtra
    Participant

    I have a user who wants to know if they can sort by latest posts. Is that possible with the bb style pack? Or at all?

    #213489
    fl3xtra
    Participant

    Is there a way to show the timestamp from latest/newst comment/reply on the forum instead of what appears to be the last topic created?

    View post on imgur.com

    #213397
    Robin W
    Moderator

    ok, then yes that is working on a new test site.

    I cannot say why it is not working on yours, sorry 🙁

    #213339
    Robin W
    Moderator

    hmm – I just added that code to my test site, and it works fine with 2.6.5

    Oleksandr
    Participant

    Custom Field doesn’t work with bbpress 2.6 and above
    I use custom fields for bbpress topics.
    I tried to turn off all plugins and change the theme to default but always receive next javascript error in the console:

    load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4 POST https://test.3d-kstudio.com/wp-admin/admin-ajax.php 400
    send @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4
    ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4
    ajaxAdd @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    i.wpList.<computed> @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    (anonymous) @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    dispatch @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:3
    r.handle @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:3
Viewing 25 results - 1,126 through 1,150 (of 11,654 total)
Skip to toolbar