Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Ginger Coolidge

    (@gscoolidge)

    Hello,

    Glad you reached out, happy to help – thanks for the screenshot, it helps!

    When the visual form editor is stuck in the Design step, it usually means there is a fatal error happening in the background. We’ll need the full PHP error log from your website to see the issue. If you are not sure how to access the PHP error logs, you can reach out to your web host where to find these on the server, then send us the log file as an attachment on your reply back to us.

    We look forward to guiding you to a resolution here!

    Thread Starter alianssamorozvytku

    (@alianssamorozvytku)

    Thank you for your reply.
    I solved the problem, but only temporarily.
    There was a conflict with the All in One SEO plugin

    Another problem has arisen.
    I can’t reset the statistics of supporters and donors in any way.
    Donations are deleted, donors too, but the statistics are displayed.
    I studied the instructions on the plugin’s website, tried all the options for deleting and recalculating, but the statistics are still displayed.

    And when you reset all the data on donor statistics, a problem appears on the site.

    Please suggest a solution to the statistics issue

    Plugin Support Robin Joshua Del Mundo

    (@robindelmundo)

    Hi @alianssamorozvytku ,

    Please excuse the slow turnaround here.

    You’re on the right track, we do have a conflict with the All-in-One SEO plugin.

    You can use the code snippet below to use GiveWP alongside All-in-One SEO:

    add_action('wp', function () {
    add_action('wp_print_footer_scripts', function () {
    $isGiveFormBuilderPreviewMode = isset($_GET['givewp-route']) && 'donation-form-view-preview' === $_GET['givewp-route'];
    if (!$isGiveFormBuilderPreviewMode) {
    return;
    }
    wp_dequeue_script('aioseo/js/src/vue/standalone/seo-preview/main.js');
    wp_deregister_script('aioseo/js/src/vue/standalone/seo-preview/main.js');
    wp_dequeue_script('aioseo/js/src/vue/standalone/app/main.js');
    wp_deregister_script('aioseo/js/src/vue/standalone/app/main.js');
    }, 9);
    }, 999);

    Before taking any further steps, I highly recommend taking a good backup of the site you can confidently restore from. Having a backup of your site is essential to a solid workflow, and will allow you to restore to a previous version of the site if you run into any issues. You can read more about our top recommendations for taking a backup here: https://givewp.com/backup-for-faster-troubleshooting/.

    If you require assistance implementing custom PHP code on your website, we have this guide —https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/.

    Please note that this code snippet is provided as an example of how you can extend GiveWP with code. It’s up to you to implement and customize to your liking. We cannot provide support for custom code on your website, only the code that we create and distribute.

    We will continue searching for a more permanent solution, but this snippet will enable you to use GiveWP’s Visual Donation Form Builder while All in One SEO is enabled in the meantime.

    Since you mentioned that this has been resolved, and you have other issues, please create a new post for them. I’m marking this one as resolved (as the main issue has been addressed).

    Thank you for using GiveWP!

    Have a lovely day.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘The design form does not open’ is closed to new replies.