Home Forums Search Search Results for 'import ajax error'

Viewing 30 results - 181 through 210 (of 402 total)
  • Author
    Search Results
  • luispt
    Participant
    #391847

    Sorry, i had php 8.1 and not 7.4 like it should.

    Anyway i tried again and still can’t get around the error: AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.

    Please try to install .

    luispt
    Participant
    #391583

    I get this message every time i try to import dummy content.

    Tried to deactivate every plugin but still no luck!

    ashikali
    Participant
    #391568

    Hey, I removed all the dummy content. Deactivated all plugins, activated required and tried to import the dummy content again. but it failed and this was the error message, “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.”

    Soro
    Participant
    #390597

    Bonjour jai acheter et installer le theme mais je suis bloqué à la;
    AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.

    Je ne sais plus ou aller jai tout verifier mais rien ne passe

    Attachments:
    You must be logged in to view attached files.
    mearkers
    Participant
    #390225

    AJAX Import error

    In reply to: AJAX import error

    hmduc
    Participant
    #390158
    vaishalipatel
    Participant
    #390015

    I am trying to upload dummy data but it’s not working . it’s shows error”AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.”. Please help me asap.

    In reply to: Features Requests

    vaishalipatel
    Participant
    #390013

    Hello

    I am trying to import theme demo but it’s not working . It’s shows error “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.” Please help me . can you give me email id for support

    KaraG
    Participant
    #389856

    I see plenty of posts with this issue, but can’t find an answer that fixes it.

    This is a clean install. I’ve tried with Elementor and WPBakery.

    Any help would be most appreciative.

    In reply to: Side Menu Suggestion

    iamfahrig
    Participant
    #388157

    Add the following Custom CSS to the Public Custom CSS field under Theme Settings >> Custom CSS.
    ———————————————————————————————-

    //Kupon Kodu Otomatik Açılır Hale Getirme Kodu//
    .woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
        display: block !important;
    }

    ———————————————————————————————-
    In the functions.php, add the following code:
    ———————————————————————————————-

    // Remove default coupon field
    remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );
    
    // Add a custom coupon field before checkout payment section
    add_action( 'woocommerce_review_order_before_payment', 'woocommerce_checkout_coupon_form_custom' );
    function woocommerce_checkout_coupon_form_custom() {
        echo '<div class="coupon-form" style="margin-bottom:20px;">
            <p>' . __("İNDİRİM KODU GİR") . '</p>
            <p class="form-row form-row-first woocommerce-validated">
                <input type="text" name="coupon_code" class="input-text" placeholder="' . __("Kodunuzu Giriniz") . '" id="coupon_code" value="">
            </p>
            <p class="form-row form-row-last">
                <button type="button" class="button" name="apply_coupon" value="' . __("Apply coupon") . '">' . __("UYGULA") . '</button>
            </p>
            <div class="clear"></div>
        </div>';
    }
    
    // jQuery - Send Ajax request
    add_action( 'wp_footer', 'custom_checkout_jquery_script' );
    function custom_checkout_jquery_script() {
        if ( is_checkout() && ! is_wc_endpoint_url() ) :
        ?>
        <script type="text/javascript">
        jQuery( function($){
            if (typeof wc_checkout_params === 'undefined')
                return false;
    
            var couponCode = '';
    
            $('input[name="coupon_code"]').on( 'input change', function(){
                couponCode = $(this).val();
            });
    
            $('button[name="apply_coupon"]').on( 'click', function(){
                $.ajax({
                    type: 'POST',
                    url: wc_checkout_params.ajax_url,
                    data: {
                        'action': 'apply_checkout_coupon',
                        'coupon_code': couponCode,
                    },
                    success: function (response) {
                        $(document.body).trigger("update_checkout"); // Refresh checkout
                        $('.woocommerce-error,.woocommerce-message').remove(); // Remove other notices
                        $('input[name="coupon_code"]').val(''); // Empty coupon code input field
                        $('form.checkout').before(response); // Display notices
                        // console.log(response); // Uncomment for testing
                    }
                });
            });
        });
        </script>
        <?php
        endif;
    }
    
    // Ajax receiver function
    add_action( 'wp_ajax_apply_checkout_coupon', 'apply_checkout_coupon_ajax_receiver' );
    add_action( 'wp_ajax_nopriv_apply_checkout_coupon', 'apply_checkout_coupon_ajax_receiver' );
    function apply_checkout_coupon_ajax_receiver() {
        if ( isset($_POST['coupon_code']) && ! empty($_POST['coupon_code']) ) {
            WC()->cart->add_discount( wc_format_coupon_code( wp_unslash( $_POST['coupon_code'] ) ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
        } else {
            wc_add_notice( WC_Coupon::get_generic_coupon_error( WC_Coupon::E_WC_COUPON_PLEASE_ENTER ), 'error' );
        }
        wc_print_notices();
        wp_die();
    }
    Attachments:
    You must be logged in to view attached files.
    mannisfitness
    Participant
    #386975

    Hey Artem!

    we are using your Theme since a few years. Never had Issue with Import.

    Since Update version 6.5.3 i also got the Import AJAX Error. We did not add any additional Plugins to the Network since then.
    Could you please check that?

    Thx & regards

    FYI: I already deactivated all Plugins except all required. Was not the error.

    mannisfitness
    Participant
    #386942

    Hey Artem!

    we are using your Theme since a few years. Never had Issue with Import.

    Since Update version 6.5.3 i also got the Import AJAX Error.
    Could you please check that?

    Thx & regards

    qiuzhiqi053
    Participant
    #386787

    install dummy content found this error,please
    help
    me

    [email protected]
    Participant
    #386196

    Help please

    johnsage
    Participant
    #385962

    Hi dear! Thanks for magnificent template. I need an assistance to import a dummy content like this https://woodmart.xtemos.com/demo-light/?opt=light/

    Thanks in advance.

    Attachments:
    You must be logged in to view attached files.
    dawnknasupply
    Participant
    #385803

    I installed Woodmart but I can’t import the demo theme.

    It says this error:

    “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.”

    You can log in to my admin and disable plugins if you need. Please help

    hkaadan
    Participant
    #385473

    kept only woocommerce, woodmart core, slider revolution, and wp-bakery. still the same.

    Cant import demo

    hkaadan
    Participant
    #384144

    this is not working. please advise. trying to import content

    vana
    Participant
    #383778

    Hello,

    Thank you for responding me, but your suggestion is not help for us.

    Actually the server working fine, I have attached the server responding screenshot below.

    Please find the attachment. I hope you to respond back to this error
    AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.

    Attachments:
    You must be logged in to view attached files.
    vana
    Participant
    #383460

    Hi team,

    I am trying to import demo version it’s showing error as follow
    AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.

    I have checked with requirement as well it’s satisfied as per the following link
    https://xtemos.com/docs-topic/requirements-wordpress-set-up/

    But, Still I am facing this error can you please guide me to resolve this problem.

    Thank you,
    Vana

    gnama
    Participant
    #382370

    Hi
    I am getting error “Import AJAX problem. Try to disable all external plugins and check the problem” when i am trying to install demo on my site.

    • This topic was modified 3 years, 1 month ago by gnama.
    martbytes
    Participant
    #381425

    Can someone please help me out, I am trying to import dummy content.

    Attachments:
    You must be logged in to view attached files.
    syedmohsin25
    Participant
    #377087

    I am trying to import Dummy Data of Lingerie theme designs on localhost. its shown me that error

    “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.”

    Kindly check it and help to fix this error. I am delete all extension that is installed by default in WordPress but nothing works.

    dilawar
    Participant
    #376423

    Hello dear, how are you??
    I am unable to import Demos on my website
    My website Link is https://stag02.diningtables.co.uk/
    Please check it now and let me know.
    I am getting this error:
    “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.”

    • This topic was modified 3 years, 2 months ago by dilawar.
    gadgetsrule99
    Participant
    #376062

    I have followed all your requirements – php values like “max_execution_time ” ridiculously high and still get error: “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance. ” after reaching 90% – please advise

    Attachments:
    You must be logged in to view attached files.
    nawaz9980
    Participant
    #374483

    ajax error while importing dummy content

    kasun_prabath
    Participant
    #374123

    I have tried to import the dummy content for the Electronic store. But the above-mentioned issue is coming.

    SunTeam
    Participant
    #373233

    Dear Team,

    Sorry for that, we tried to import Retail shop demo theme – due yo ajax errors it has stopped.

    Unfortunately, we couldn’t access any plugs at the backend.

    daveo
    Participant
    #371797

    Had the same problem trying to load a demo site after installing the WordMart theme manually from .zip. Even with all plugins disabled

    The solution was that the js_composer.zip plugin is required to be installed first. This is included with WPBakery Page Builder, but not with the Elementor page builder so you can get the error if you opted to use Elementor.

    takisdev
    Participant
    #371768

    Hi Guys,
    Electronics 2 is not installed properly. I have installed the current layout many times, but the problem (check the attached photos) remains.
    Every time I do a clean install, the installation fails with an Ajax error. It also asks me to turn off all the extra plugins, but all that is installed is the woodmart plugins.

    The second time if I import again the layout, it is imported correctly (99%) but with the style errors shown in attached photos.

    Is there a problem with this particular layout?
    The problems seems to come from the imported data.

    Thank you
    TakisM

    • This topic was modified 3 years, 3 months ago by takisdev.
    Attachments:
    You must be logged in to view attached files.
Viewing 30 results - 181 through 210 (of 402 total)