robbybobble
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Untranslated partI have the same issue. Thanks ??
Its working! Thank you very much ??
Hi Sysbre,
I imported the content from an existing store that uses SEOPress.
I’m using the newest version of the plugin but I’m not really sure which version I had when I imported the content one month ago.TSF choose the categorie under the base categorie (/categorie-one/) as primary for every product. The URL is something like:
/shop-base/category-one/productname/When I deactivated TSF its like it should be and how it was in the old shop:
/shop-base/category-one/nested-categorie/more-categories/productname/Right now I just deleted line 19 of?https://github.com/sybrew/the-seo-framework/blob/9a5e555431f84a07e58ba7e67894dedc30ec494b/inc/compat/plugin-woocommerce.php#L19 and the URLs are as I need them.
Thanks
Forum: Plugins
In reply to: [WooCommerce Amazon Pay] Billing address not fully passed@cutu234 did you receive an answer?
Forum: Plugins
In reply to: [WooCommerce Amazon Pay] Billing address not fully passedI just deactivated all Plugins exept WooCommerce and Amazon Pay and changed the theme to Twenty Twenty One without success.
Forum: Plugins
In reply to: [WooCommerce Amazon Pay] Billing address not fully passedHi Christian,
we have the same issue like Mike. We are located in Germany as well.
Thank you,
Robert
Forum: Plugins
In reply to: [Cache Enabler] Excluding home.phpwe use the Woocommerce One Page Checkout and want to cache it with cache enabler. But when its active we get following error in the browser console:
/wp-admin/admin-ajax.php POST 403 xhr jquery.js?ver=1.12.4:4
and its not possible to order.Can I exclude the admin-ajax.php in cache enabler as well? With a “0” in the excluse ID it still doesn’t work.
Thank you for any help
Thank you very much. Here is the full code to change the position:
<?php
remove_action( ‘init’, ‘woocommerce_gzd_checkout_load_ajax_relevant_hooks’);// Remove WooCommerce Terms checkbox
add_action( ‘init’, ‘custom_woocommerce_gzd_checkout_load_ajax_relevant_hooks’ );
function custom_woocommerce_gzd_checkout_load_ajax_relevant_hooks() {
if ( is_ajax() )
return;add_action( ‘woocommerce_checkout_order_review’, ‘woocommerce_gzd_template_order_submit’, wc_gzd_get_hook_priority( ‘checkout_order_submit’ ) );
add_action( ‘woocommerce_review_order_before_submit’, ‘woocommerce_gzd_template_checkout_legal’, wc_gzd_get_hook_priority( ‘checkout_legal’ ) );
add_action( ‘woocommerce_review_order_before_submit’, ‘woocommerce_gzd_template_checkout_set_terms_manually’, wc_gzd_get_hook_priority( ‘checkout_set_terms’ ) );if ( get_option( ‘woocommerce_gzd_checkout_legal_digital_checkbox’ ) == ‘yes’ )
add_action( ‘woocommerce_review_order_before_submit’, ‘woocommerce_gzd_digital_checkbox’, wc_gzd_get_hook_priority( ‘checkout_digital_checkbox’ ) );if ( get_option( ‘woocommerce_gzd_checkout_legal_service_checkbox’ ) == ‘yes’ )
add_action( ‘woocommerce_review_order_before_submit’, ‘woocommerce_gzd_service_checkbox’, wc_gzd_get_hook_priority( ‘checkout_service_checkbox’ ) );// Add payment title heading
add_action( ‘woocommerce_review_order_before_payment’, ‘woocommerce_gzd_template_checkout_payment_title’ );
}