kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] display product within a price rangeYou can do it by url parameters:
/shop/?min_price=1&max_price=100Forum: Plugins
In reply to: [WooCommerce] WooCommerce does not display translated text at front-pageWhat theme you are using. What happens when you change theme to storefront?
Forum: Plugins
In reply to: [WooCommerce] How to change number of upsell products?You can use
woocommerce_upsell_display_argshook andwp_is_mobile()function.Forum: Plugins
In reply to: [WooCommerce] Variation price and description not showing.Error establishing a database connectionForum: Plugins
In reply to: [WooCommerce] Checkout shows INTERNAL SERVER ERROR ?You should enable WP_DEBUG_LOG and check debug.log file for errors: https://codex.wordpress.org/Debugging_in_WordPress
Forum: Plugins
In reply to: [WooCommerce] Add transport tracking in e-mail confirmationYou can use Order Notes to do this.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce conflict – blank page when editingEnable WP_DEBUG_LOG and check debug.log file for errors: https://codex.wordpress.org/Debugging_in_WordPress
Forum: Plugins
In reply to: [WooCommerce] Set product variation via PHP$woocommerce->cart->add_to_cart($variation_id);You can determine
$variation_idin admin area when editing product with variations.Forum: Plugins
In reply to: [WooCommerce] Remove main product image linkYou can do it with filter:
woocommerce_single_product_image_thumbnail_htmlor by modyfing woocommerce template:single-product/product-thumbnails.phpForum: Plugins
In reply to: [WooCommerce] Time Out when editing products1. Check browser console for errors.
2. Check serwer error log by enabling WP_DEBUG_LOG: https://codex.wordpress.org/Debugging_in_WordPressForum: Plugins
In reply to: [WooCommerce] Product ReviewsWarning: create database backup before doing this. π
Forum: Plugins
In reply to: [WooCommerce] Product ReviewsSQL:
UPDATE wp_posts SET comment_status = "open" ;You can use action:
woocommerce_product_meta_endForum: Plugins
In reply to: [WooCommerce] (Urgent) unable to edit products after update HTTP 500 ErrorCheck server error log for errors. It can be done with WP_DEBUG_LOG: https://codex.wordpress.org/Debugging_in_WordPress
I think you have incompatible plugin/theme with Woo 3.1
Forum: Plugins
In reply to: [WooCommerce] Ajax Admin 500 ErrorYou should check serwer error logs. It can by done with WP_DEBUG_LOG: https://codex.wordpress.org/Debugging_in_WordPress