kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Storefront checkout not displaying correctlyWhat is wrong with it?
Forum: Plugins
In reply to: [WooCommerce] Correcting the store pageFirst screen – this is theme/css related problem.
Second screen – login as administrator and click Customize on admin bar.Forum: Plugins
In reply to: [WooCommerce] Want check box to be auto clicked /markedReplace
$checkout->get_value( 'my_checkbox' )with1– should works.Forum: Plugins
In reply to: [WooCommerce] adding product using woocommerce rest api is too slowThis is slow in specified shop? Try in other clean instance without other plugins.
Forum: Plugins
In reply to: [WooCommerce] Add fields to Checkout -> Billing DetailsThere are couple of plugins for this. Search for checkout fileds in plugins repository: https://wordpress.org/search/checkout+fields
Forum: Plugins
In reply to: [WooCommerce] I try to translate woocommerce but some words do not translatedYour site is password protected.
Maybe this string is in your theme?
Forum: Plugins
In reply to: [WooCommerce] 1 × , where is location of “x”It is in templates/cart/mini-cart.php. You can override this file in your theme. Look for
×string.- This reply was modified 8 years, 7 months ago by kursora.
Forum: Plugins
In reply to: [WooCommerce] Two nonce with same IDI have only one _wpnonce field on chceckout page – Woocommerce 3.2, storefront. Maybe it is some other plugin issue or your theme.
Forum: Plugins
In reply to: [WooCommerce] Site CrashEnable WP_DEBUG an you should see what crashes you site.
Forum: Plugins
In reply to: [WooCommerce] remove reviews datesYou must override template file single-product/review-meta.php in your theme.
Forum: Plugins
In reply to: [WooCommerce] Fatal Error activating Woocommerceetc. says nothing.
Show full error message.
Forum: Plugins
In reply to: [WooCommerce] WC()->cart->get_cart() is deprecated?Maybe you call this function too early, before
wp_loadedand message is:Get cart should not be called before the wp_loaded action.?Forum: Plugins
In reply to: [WooCommerce] Remove ‘Related Similar post’ from single Product pageThe simplest way to detect if it section is from theme is temporary theme switching.
Forum: Plugins
In reply to: [WooCommerce] Stock Status not updatingWhat happens when you save imported product in product edit form after importing and then purchase the product?
Forum: Plugins
In reply to: [WooCommerce] What is loading content-product template?To exclude posts/products you should use built in hooks like: https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
- This reply was modified 8 years, 8 months ago by kursora.