Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 76 through 100 (of 11,523 total)
  • Author
    Search Results
  • #240625
    Uriahs Victor
    Participant

    I don’t know why, but the TinyMCE toolbar doesn’t show by default on Astra theme and Page Builder Framework theme. It does show on some default WP themes, but I don’t understand why.

    In Astra, the toolbar is there in the HTML, but it has display: none set to the CSS because of this class string: .no-js .hide-if-no-js

    I don’t quite understand what is causing that class to be added onto the toolbar. Can anyone shed some light? Is there some option or filter I need to set for this to show?

    I at first thought it detected if there was No JS enabled in the browser but thats not the issue because I can use JS…im visiting my test forum just as Im visiting this one and it shows.

    #240569
    nerdnestmedia
    Participant

    Hello.
    We have an issue where our thumbnails are not showing when bbPress is enabled. I did a plugin conflict test, and it is only when bbPress is deactive that the issue is resolved.

    Are you able to help with this issue?

    #240555
    chadeverson1
    Participant

    The text editor is working fine, but the link button on the visual editor doesn’t do anything.

    Is there a way for me to give you credentials to test? I’m at a loss.

    yamasaki2024
    Participant

    I want to display the latest posting date and time in “Last Post” at the top of the forum.

    File:\bbpress\loop-single-forum.php

    Part you want to change:
    <?php do_action( ‘bbp_theme_before_forum_freshness_link’ ); ?>

    <?php bbp_forum_freshness_link(); ?>

    <?php do_action( ‘bbp_theme_after_forum_freshness_link’ ); ?>

    I want to write it like this:
    2024-06-07 13:35

    #240536
    Robin W
    Moderator

    ok, so if you can’t the fields, that means they aren’t being saved.

    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

    #240530
    Robin W
    Moderator

    ok, so can you (as a test) take out the Forum no.s from all fields in the settings, so we eliminate forum restrictions from the display part

    #240524
    gdj13
    Participant

    Ok I see what is happening. In your plugin on the custom fields tab you have an example image of what the forum topic would look like with the custom fields which is exactly how I would like it but the custom field content is not showing at all once the topic has been posted.

    Example in the plugin – https://geekdimm.com/wp-content/uploads/2024/06/example-01.jpg

    My result – https://geekdimm.com/wp-content/uploads/2024/06/example-02.jpg

    Thank you so much for your assistance so far 🙂

    On another note, I think I may have found a bug as well. While problem solving this issue I created new custom fields and tried to apply them to another forum via the ID. I then tested those fields on submitting a new topic but it gave an error that not all the required fields were completed and was referring to the original custom fields I created for the review forum.

    zachf
    Participant

    Hi Folks,

    I’m setting up a training website for a small company. The site consists of posted training materials and a BBPress user forum. I’ve noticed that when I update the production site from our development site the posts in the forum on the production site are overwritten. After each upgrade the forum in production only contains the test posts made in the development environment.

    As far as I can tell this is because both the training pages and the BBPress forum are stored in the ‘wp_posts’ database. I’ve tested migrating all database tables except ‘wp_posts’ and confirmed that the forum is not overwritten, unfortunately, neither is the training content on other pages. Is there anyway to migrate page content from the development environment to the production environment without overriding user posts in the forum?

    (BBPress version 2.6.9)
    (WordPress site supported via WPEngine)

    Thank you for you help!
    Zach

    #240517
    Robin W
    Moderator

    if it is, you can test by deactivating style pack

    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

    #240504

    In reply to: Restrict post creation

    shiylo
    Participant

    Bonjour,

    function restrict_bbpress_topic_creation() {
    // Vérifier si l’utilisateur est sur une page de création de sujet
    if ( bbp_is_topic_create() ) {
    // Vérifier si l’utilisateur est un administrateur
    if ( !current_user_can( ‘administrator’ ) ) {
    // Rediriger l’utilisateur vers la page d’accueil du forum
    wp_redirect( bbp_get_forum_url() );
    exit;
    }
    }
    }
    add_action( ‘template_redirect’, ‘restrict_bbpress_topic_creation’ );

    Ce script vérifie si l’utilisateur essaie de créer un nouveau sujet et le redirige vers la page d’accueil du forum s’il n’est pas administrateur. Ajoute ce code dans ton fichier functions.php et teste pour t’assurer que ça fonctionne comme prévu.

    #240497
    Robin W
    Moderator

    I’m in testing phase, but will need one more day.

    It will go as a solution in the next update of my style pack plugin, which I’ll release as soon as I’ve done.

    cyberfred78
    Participant

    site became reachable after 5 minutes I continue the test

    Robin W
    Moderator

    as a quick test, can you try

    install https://en-gb.wordpress.org/plugins/code-snippets/

    and add this code

    function rew_astra_bbpress_fix ($value) {
    		if (bbp_is_single_user()) return false ;
    		if (bbp_is_search()) return false ;
    		if (bbp_is_topic_tag()) return false ;
    		if (bbp_is_single_view()) return false ;
    return $value ;
    }
    
    add_filter ('astra_single_layout_one_banner_visibility', 'rew_astra_bbpress_fix', 50) ;
    cyberfred78
    Participant

    Hi my website is https://bailleursre.fr
    This is a test version on a production domain so you can register and post on the forum and go back to see your profile this should replicate the issue

    No I am not using any child theme.
    I know how to use FTP what do you want me to do ?
    regards

    #240390
    Robin W
    Moderator

    untested, but possibly

    function add_signature_to_post($topic_id=0) {
    $content = get_post_field( 'post_content', $topic_id );
    $signature = '';
    
    if (isset($_POST) && $_POST['bbp_signature']!='')
    $signature = $_POST['bbp_signature'];
    
    $content = $content . $signature;
    
    $topic_data = array(
    		'ID'           => $topic_id,
    		'post_content'   => $content
    		);
    
    	// update topic
    	$topic_id = wp_update_post( $topic_data);
    }
    
    add_action('bbp_new_topic', 'add_signature_to_post', 10, 1);
    add_action('bbp_new_reply', 'add_signature_to_post', 10, 1);
    enkoes
    Participant

    Hi all, I have done plugin conflicting test on my site but couldn’t find the cause of the issue. Can anyone help to solve it or guide me on this?

    Regards.

    enkoes
    Participant

    Hi, I enable both full visual and text editors in my forum using bbp Style Pack. I found that the colour picker for text doesn’t work for every post I tested.

    To better describe the issue, pls see screenshots below:

    Before submission:
    Screenshot-1
    Screenshot-2

    After submission:
    Screenshot-3

    It seems that the html code for text colour is not sent after submission.

    Regards.

    #240322
    Robert
    Participant

    Hi
    We’re getting strange PHP Error messages relating to forum posts that don’t exist like this one. Should we be concerned?
    Many thanks
    Robert

    WordPress database error Duplicate entry ‘8702-67865’ for key ‘PRIMARY’ for query INSERT INTO ggx_gdbbx_tracker (user_id, topic_id, forum_id, reply_id, latest) VALUES (8702, ‘67865’, ‘11504’, ‘72638’, ‘2024-05-15 06:40:25’) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), apply_filters(‘template_include’), WP_Hook->apply_filters, bbp_template_include, apply_filters(‘bbp_template_include’), WP_Hook->apply_filters, bbp_template_include_theme_compat, BBP_Shortcodes->display_topic, bbp_get_template_part, bbp_locate_template, load_template, require(‘/plugins/bbpress/templates/default/bbpress/content-single-topic.php’), do_action(‘bbp_template_after_single_topic’), WP_Hook->do_action, WP_Hook->apply_filters, Dev4Press\Plugin\GDBBX\Features\ActivityTracking->latest_users_topic, Dev4Press\Plugin\GDBBX\Database\Main->track_topic_visit, Dev4Press\v47\Core\Plugins\DBLite->__call, call_user_func_array

    Chris Ostmo
    Participant

    The bbp_get_all_child_ids() function in bbpress/includes/common/functions.php is returning Trashed posts, which should objectively not be the case. There’s no world in which trashed posts should appear unless someone is intentionally digging in the trash.

    Line 1997 is currently this:
    $not_in = array( 'draft', 'future' );
    It should be this instead:
    $not_in = array( 'draft', 'future', 'trash' );

    I have tested that as a manual change, but obviously, this needs to be bbpress’ default behavior, not my locally-hacked override.

    Alternatively, you could add a third argument for overrides, but I think this is just an oversight.

    Thank you.

    #240264

    In reply to: Restrict post creation

    Robin W
    Moderator

    I have not tested it with that plugin, so cannot say

    #240261

    In reply to: Subscribe to Forum

    Julianna
    Participant

    Thanks–I already had bbp style pack installed.

    Did some more testing and ended up also installing “bbPress Notify (No Spam)”.

    When I had the bbPress Notify plugin override the subscription to forums & replies settings, the emails are now sending as expected.

    Appreciate the help!

    #240248

    In reply to: Subscribe to Forum

    Julianna
    Participant

    I just sent a test email from Check & log email and successfully received it

    #240240
    Robin W
    Moderator

    that line of code is related to the replies widget – as a test try disabling that widget and see if it makes a difference

    #240238

    In reply to: Subscribe to Forum

    Robin W
    Moderator

    so does sending a test email from Check & log email (nothing logged in tests) work?

    #240235

    In reply to: Subscribe to Forum

    Julianna
    Participant

    Hi

    I’m having the same issue with notifications of replies and new topics not being sent by email.

    Plugins installed:
    Simple WordPress Membership
    bbPress
    bbp style pack (notifications enabled)
    bbPress Members Only (forum set to members only with all other pages visible)
    bbPress Notify (No Spam)
    Check & log email (nothing logged in tests)
    Code Snippets (original code above added)
    Easy WP SMTP (confirmed that other emails are sending successfully, eg notification of new member registrations via Simple Membership)
    WP Notification Bell (new replies ARE showing up here)

    I’ve run tests with replies and new topics for a test user subscribed to everything (and directly to the topic used to test replies), and am still not getting any emails. Have, of course, checked the spam folder.

    I’d appreciate any suggestions for troubleshooting.

    Thank you!

Viewing 25 results - 76 through 100 (of 11,523 total)
Skip to toolbar