Jeff Alvarez
Forum Replies Created
-
Hi @wantyq ,
Use-case wise they more or less do the same job where it refreshes the feed. The warning is there as our plugin mainly uses WP-Cron to handle the feed refresh. Hence, the error. You can safely ignore it if you are using server-side or other ways of cron/method to update the feed.
Hi @betophpninja ,
That’s odd, that shouldn’t give any errors. Have you tried doing some basic debug where only Woocommerce, Product Feed and storefront theme running to check for conflicts?
Also, please pass on your debug log: Send your debug.log to our support team – AdTribes
Hi @cathykask ,
Please send in a debug log: Send your debug.log to our support team – AdTribes
Hi @cathykask & @gabriellam89 ,
Please try lowering your batch size: Batch size configuration product feed – AdTribes try 50 for starters and manually refresh the feed. Increase or lower the value depending on the outcome.
In most cases the hreflang is coming from your translation plugin. Our plugin doesn’t modify any links on your site. In most cases modifications are added on the Feed itself and not on your site.
Try running some basic debug where only Woocommerce and product feed running and see if the issue still occurs.
Forum: Plugins
In reply to: [WooCommerce] Limit Zip code character on US orders ONLY on WoocommerceSimply change the value of the bolded area, you are limited to 5 cuz it’s set to a max of 5, changing these values to a higher number should make fix your issue
function action_wp_footer() {
// Returns true on the checkout page, when false, return
if ( ! is_checkout() ) return;
?>
<script>
jQuery(document).ready(function($){
$( ‘#billing_postcode’ ).attr( ‘maxlength’, ‘5’ );
$( ‘#shipping_postcode’ ).attr( ‘maxlength’, ‘5’ );
});
</script>
<?php
}
add_action( ‘wp_footer’, ‘action_wp_footer’ );