Encify
Forum Replies Created
-
Forum: Plugins
In reply to: [Afterpay Gateway for WooCommerce] PHP warningsI 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.
Forum: Plugins
In reply to: [Australia Post WooCommerce Extension] Modify Basket Total InformationThought 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.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce and flat rate shipping class FAILStrange 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.Forum: Plugins
In reply to: [WooCommerce] Woocommerce and flat rate shipping class FAILApologies 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.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 1I 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.
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.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Woocommerce 2.1.2 issuesApologies 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'));
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Not adding, deleting or adding products to cart?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'));
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Found CAUSE of Problem – Now How can I Fix itApologies 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'));
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Found CAUSE of Problem – Now How can I Fix itOops 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>',
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Found CAUSE of Problem – Now How can I Fix itWhy 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')
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Found CAUSE of Problem – Now How can I Fix it'<a href="'http') . $wc_settings_page . '&tab=yith_wcwl' ) . '">' . __( 'Settings', 'yit' ) . '</a>',
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Found CAUSE of Problem – Now How can I Fix itMake sure your not missing the ‘ at the very front of the coding for that line.