Forum Replies Created

Viewing 15 replies - 16 through 30 (of 36 total)
  • I am getting the same, any resolution from two months ago?

    Same here too – two different hosting providers (AWS and Vultr), but copy of the same site

    • This reply was modified 5 years, 9 months ago by Encify.

    Thought it might have just been me – testing the Australia Post plugins at the moment and the length of this is a little daunting – especially when the radio button is by itself…and the really long text you mention is underneath that radio box, instead of beside it.

    Thread Starter Encify

    (@damiafaw)

    Strange that my other site didnt seem to be affected, although that only has one shipping class instead of 6.
    Thanks for the update on what probably caused it.

    Thread Starter Encify

    (@damiafaw)

    Apologies in relation to the wording – several people bought several items and the correct postage was not charged, so wife not happy ??

    I updated with each Woocommerce update for the last several releases, looks like since approximately the 11/12th of August the issue has appeared going back and looking at the orders, where the shipping was the default rate and no classes were added on top.
    Unfortunately we didnt notice the shipping rate issue sooner than now.

    I am currently on the latest woocommerce version 2.4.4
    If there is something I can look for in the sql database backups, then I can tell you what version I was on at the time of the order that appears to be first affected.

    I did have to do the variaton fix by renaming the theme’s variable.php file as I had some issues there also.

    Thanks

    Yep, removed from my sites for the time being….and I was thinking of ditching Cloudflare and thinking of purchasing Sucuri ??
    Because had issues with Cloudflare.

    Thread Starter Encify

    (@damiafaw)

    Same problem with the 3.9.2 version.
    I had stock listed as 2 – it showed 2 in stock on the buying page and I could only purchase two items.

    I changed a variation product to 1 using smart manager and saved it, I reloaded the woocommerce editing page to see how it looked, it showed;
    1.000000 instead of just the number 1

    I then tried to order…and was able to order as many as I wanted.
    It no longer had the part stating how many I had in stock for that selection.
    It ignored that there was one in stock still and I could order 50 of them.

    I manually put it back to 2 from the woocommerce settings and it was back to normal again, where I could only order as many as I had in stock and it stated two in stock again on the screen.

    The plugin still doesnt work properly.

    Thread Starter Encify

    (@damiafaw)

    Hi storeapps,

    There is no “stock management plugin”, this is woocommerce and the way it manages stock levels for the ecommerce store data.

    It tells me how much stock is left if I am buying a product – if I use Smart Manager to look at the products in a table/excel type format, make a change to inventory levels and save it…it puts the figure, plus the decimal and many zero’s after it.

    This seems to break the stock level from showing and allows over ordering.

    Apologies everyone, there was a small typo (incorrect copy/paste) in the earlier one.
    Please see the below.

    Filename = class.yith-wcwl-init.php
    Change;
    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php') ?>';

    TO

    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php', (is_ssl() ? 'https' : 'http')) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=' . urlencode( $_SERVER['REQUEST_URI']) ?>';

    TO

    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=', (is_ssl() ? 'https' : 'http') . urlencode( $_SERVER['REQUEST_URI']) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    '<a href="' . admin_url( 'admin.php?page=' . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    TO

    '<a href="' . admin_url( 'admin.php?page=', (is_ssl() ? 'https' : 'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Filename = class.yith-wcwl-ui.php
    Change;
    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif' ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    TO

    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif', (is_ssl() ? 'https' : 'http') ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    Filename = class.yith-wcwl.php
    Change;
    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id);

    TO

    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id, (is_ssl() ? 'https' : 'http'));

    Apologies everyone, there was a small typo (incorrect copy/paste) in the earlier one.
    Please see the below.

    Filename = class.yith-wcwl-init.php
    Change;
    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php') ?>';

    TO

    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php', (is_ssl() ? 'https' : 'http')) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=' . urlencode( $_SERVER['REQUEST_URI']) ?>';

    TO

    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=', (is_ssl() ? 'https' : 'http') . urlencode( $_SERVER['REQUEST_URI']) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    '<a href="' . admin_url( 'admin.php?page=' . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    TO

    '<a href="' . admin_url( 'admin.php?page=', (is_ssl() ? 'https' : 'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Filename = class.yith-wcwl-ui.php
    Change;
    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif' ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    TO

    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif', (is_ssl() ? 'https' : 'http') ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    Filename = class.yith-wcwl.php
    Change;
    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id);

    TO

    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id, (is_ssl() ? 'https' : 'http'));

    Apologies everyone, there was a small typo (incorrect copy/paste) in the earlier one.
    Please see the below.

    Filename = class.yith-wcwl-init.php
    Change;
    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php') ?>';

    TO

    var yith_wcwl_plugin_ajax_web_url = '<?php echo admin_url('admin-ajax.php', (is_ssl() ? 'https' : 'http')) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=' . urlencode( $_SERVER['REQUEST_URI']) ?>';

    TO

    var login_redirect_url = '<?php echo wp_login_url() . '?redirect_to=', (is_ssl() ? 'https' : 'http') . urlencode( $_SERVER['REQUEST_URI']) ?>';

    Filename = class.yith-wcwl-init.php
    Change;
    '<a href="' . admin_url( 'admin.php?page=' . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    TO

    '<a href="' . admin_url( 'admin.php?page=', (is_ssl() ? 'https' : 'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Filename = class.yith-wcwl-ui.php
    Change;
    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif' ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    TO

    $html .= '<img src="' . esc_url( admin_url( 'images/wpspin_light.gif', (is_ssl() ? 'https' : 'http') ) ) . '" class="ajax-loading" id="add-items-ajax-loading" alt="" width="16" height="16" style="visibility:hidden" />';

    Filename = class.yith-wcwl.php
    Change;
    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id);

    TO

    return admin_url( 'admin-ajax.php?wishlist_item_id=' . $item_id, (is_ssl() ? 'https' : 'http'));

    Oops I pasted the wrong thing earlier in the thread for that file.
    My apologies…..

    Filename = class.yith-wcwl-init.php
    Change;
    '<a href="' . admin_url( 'admin.php?page=' . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    TO

    '<a href="' . admin_url( 'admin.php?page=', (is_ssl() ? 'https' : 'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Why do you have http in the href= section of the active code?
    Should be able to copy and paste this directly in over the top of what is there already.

    '<a href="' . admin_url( 'admin.php?page=', (is_ssl() ? 'https' : 'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Otherwise, just paste this part in only after the admin.php?page=' part;
    , (is_ssl() ? 'https' : 'http')

    '<a href="'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',

    Make sure your not missing the ‘ at the very front of the coding for that line.

Viewing 15 replies - 16 through 30 (of 36 total)