Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 26 through 50 (of 11,455 total)
  • Author
    Search Results
  • #239746

    In reply to: Subscribe to Forum

    webcreations907
    Participant

    If you can look at the raw data of the email(within email client) and see what is set for the src of the img tag when testing.

    #239743

    In reply to: Issue with links

    darkmattersastro
    Participant

    Looks like I cannot edit the previous post, the testing found the underlying problem. Users cannot double post. As soon as I post on another account all of the links are working.

    How can I change doouble/multi post settings?

    #239739

    In reply to: Forum reply timestamps

    Robin W
    Moderator

    ok, not much i can do without seeing it, but it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239696

    In reply to: Subscribe to Forum

    newtech1
    Participant

    I just got around to testing the above. I copied the code into themes function.php. Under fish caught it still says array instead of the fish species chosen in the dropdown. Also the image still does not show up.

    Any other suggestions? the Fish caught I can change it so that the user has to type in the fish species caught. Just much easier for them to choose the dropdown when entering, especially if on the lake when posting.

    It is important for the image to show up in the email because that draws much more interest than no image showing up.

    #239688
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    Allinop
    Participant

    Re: Website: allinop.comI have used the following css to modify the [bbp-topic-index]

    .bbp-topic-voice-count,
    .bbp-topic-reply-count,
    .bbp-topic-freshness {  /* Hides elements related to voice count, reply count, and topic freshness */
      display: none;
    }
    
    .avatar-14 {  /* Hides avatars with the class "avatar-14" */
      display: none !important;
    }
    
    .bbp-search-form {  /* Hides the bbPress search form */
      display: none;
    }

    I have 2 issues:

    Firstly, the topic titles do not take the entire horizontal space.
    It is as if the hidden elements still occupy the space.
    I have tried ‘hidden: none’ instead ‘display: none’ to no avail.

    Secondly, I’ve been trying to also remove the border around the list of latest topics.

    I have unsuccessfully tried:

    .bbp-topic {
      border: none;
    }

    and

    .bbp-topic {
      outline: none;
    }

    I would be grateful for any ideas.

    #239679
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239666

    In reply to: forum issues

    eefkedigibitch
    Participant

    Okay this was a quick test.
    I deactivated all my plugins accept for bbpress and still ‘Forums’ wasn’t shown in the left navigation bar. I reinstalled wordpress (6.4.3) but still nothing. So I don’t know what is going on, but I think bbpress isn’t compatible with this WP version or something…

    #239619
    #239506

    In reply to: Subscribe to Forum

    webcreations907
    Participant

    If you’re using the style pack to edit your email template, add the below as a test to your email template.

    
    Catch Time: {catch_date_time}
    Anglers: {anglers}
    
    

    Then add this function to your functions.php file or code snippets plugin which ever your using.

    
    
    if( !function_exists('afc_email_bbp_subscription_mail') ){
    	function afc_email_bbp_subscription_mail( $message, $reply_id, $topic_id ) {
    		if ( function_exists( 'get_field' ) && $topic_id != 0 ) {
    
    			$afc_replace = array(
    				'{catch_date_time}' => get_field( 'catch_date_time', $topic_id),
    				'{anglers}'         => get_field( 'anglers', $topic_id )
    				);
    
    			$message = strtr( $message , $afc_replace);
    		}
    		return $message;
    	}
    	add_filter( 'bbp_forum_subscription_mail_message' , 'afc_email_bbp_subscription_mail', 100 , 3 );
    }
    
    

    Then test it out by creating a topic in a forum that has subscribers you can test with, and make sure to set those values when creating your topic.

    #239501

    In reply to: Subscribe to Forum

    newtech1
    Participant

    Whoops. I am wrong. IT IS NOW WORKING! I need to test auto login and some other features since this is a private forum.

    One issue that I do not think can be solved is I am using ACF plugin for Custom fields within topics. The email notification only has the topic text, it does not include any of the custom field results. Assume no one know how to resolve this. ACF plugin support will not help because they know nothing about bbpress.

    The reason I have forum users posting in the backend is because I could never get the ACF plugin to work properly on the frontend.

    Thanks!

    #239494

    In reply to: Subscribe to Forum

    webcreations907
    Participant

    Will try posting again..

    You can try the below code, either add it to your theme’s functions.php file, or use the code snippets plugin.

    Make sure to select your “Forum” when creating a topic and make sure the forum has subscribers to test it out on.

    
    if( function_exists( 'bbp_get_topic_post_type' ) ){
    	function newtech1_bbpress_new_topic( $post ) {
    		if( isset( $post->post_type ) && $post->post_type == bbp_get_topic_post_type() ){
    			do_action( 'bbp_new_'.bbp_get_topic_post_type(), $post->ID , $post->post_parent, [] , $post->post_author );
    		}
    	}
    	add_action(  'draft_to_publish' ,  'newtech1_bbpress_new_topic', 10 );
    }
    
    #239482

    In reply to: Subscribe to Forum

    newtech1
    Participant

    I should mention I installed the style pack. I have verified users that are subscribed to the forum.
    I went into Subscription Emails and ran ‘Sent Test Topic Email’. The test email was sent out with no problem. I then posted a topic in the forum. No email notification was sent out.

    I am thinking if topics are posted from the backend, or maybe from moderators, that email notifications do not work. Can someone test this? I cannot test it because we do not have topic creation on the front end. (We have customized fields that we could never get to work on the frontend so made topic creation via backend.)

    #239474
    Robin W
    Moderator

    Yes that would be a good explanation , let me test

    #239454
    bastizim
    Participant

    Thanks for your reply, Robin. I have used the repair functions and the gaps are still there.

    I have installed a local test system and a script, that iterates through the replies and fix the menu_order in wp_posts of every reply with a simple counter.

    It works at the test system, but I’m not sure, if there could be any side effects.

    #239361
    Robin W
    Moderator

    ok, the code is probably ok, but chat gpt has a long way to go !

    A function needs something to call it, otherwise it just sits there.

    Not tested, but add these 2 lines before or after (doesn’t matter which) the function

    add_filter( 'bbp_get_reply_content', 'replace_suit_symbols' ) ;
    add_filter( 'bbp_get_topic_content', 'replace_suit_symbols' ) ;
    #239334
    Robin W
    Moderator

    ok, so we are back to the fault finding

    It’s not twenty twenty four as I’ve just double checked that, so I’d suspect another plugin if you are happy that your role has keymaster.

    so use the healthcheck tool to test you site with just bbpress and your theme, and then add back plugins until you get the problem

    #239332
    Robin W
    Moderator

    I’m not suggesting you change themes, simply that you do this as a test. This just lets us see where the problem lies so that we can fix it.

    bbpress works fine with 2024 as long as you fixed it at the theme support tab in style pack settings to enable it for FSE theme.

    #239330
    Robin W
    Moderator

    ok, so you definitely have bbpress enabled 🙂

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes. don’t use twenty twenty four, as it is an FSE theme

    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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239239
    enkoes
    Participant

    I cleared the cache but no luck. I tested with iPad (safari & chrome) even with desktop, all appears overlapping. But other widgets (from Bbp Style Pack) like recent topics & recent reply has no overlapping issues.

    Robin W
    Moderator

    probably (untested)

    add_action ('plugins_loaded' , 'rew_move_reply_button' ) ;
    
    function rew_move_reply_button () {
    	remove_action ( 'bbp_template_before_single_topic', 'bsp_display_reply_button' );
    	add_action ( 'bbp_theme_after_topic_content', 'bsp_display_reply_button' );
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

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

    or use

    Code Snippets

    #239177
    enkoes
    Participant

    Thanks for your reply!

    I only found three widgets in your plugin, ie, Latest Activity, Single Forum Information & Single Topic Information. But they are not the widget I’m looking for. The widget I mean should look like the one used in bbPress support forum (located top left).

    Regards.

    #239148
    Robin W
    Moderator

    I can only suggest the basic fault finding

    viz :

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239125

    In reply to: Admin Login Isuue

    Robin W
    Moderator

    ok it is probably a combination of plugins/theme, you’ll need to work out which.

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239122
    wagganation
    Participant

    while bbpress is active, when i log in to admin the side bar is missing, luckily i have the top bar. i deactivated bbpress and the problem goes away. so obviously this plugin causing it!.have the latest version of wordpress.

Viewing 25 results - 26 through 50 (of 11,455 total)
Skip to toolbar