Mina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Always “Add to Cart Button”Do settings as per below URL Screenshot for Backorder allowed configuration, which will display “Add to Cart” button even when Stock is 0.
https://www.dropbox.com/s/ulwxd6kdnoa9fun/Screen%20Shot%202017-01-24%20at%208.42.29%20pm.png?dl=0
- This reply was modified 8 years, 1 month ago by Mina.
Forum: Plugins
In reply to: [WooCommerce] Skip the Product Page and Go Directly to the CartForum: Plugins
In reply to: [WooCommerce] Add Affiliate Link to Shop ImagesForum: Plugins
In reply to: [WooCommerce] Remove Payment method listed twice in customers emailsHi,
Commenting both line does work on my test site.
Where did you comment it? I mean it should be in your child themes template as specified in https://docs.woocommerce.com/document/template-structure/
Forum: Plugins
In reply to: [WooCommerce] Remove Payment method listed twice in customers emailsSorry do this:
Comment out below line from WooCommerce Template: woocommerce/emails/email-order-details.php
and woocommerce/emails/plain/email-order-details.phpdo_action( ‘woocommerce_email_before_order_table’, $order, $sent_to_admin, $plain_text, $email );
Forum: Plugins
In reply to: [WooCommerce] Remove Payment method listed twice in customers emailsAdd below line to functions.php file
remove_action( ‘woocommerce_email_before_order_table’, $order, $sent_to_admin, $plain_text, $email );
Forum: Plugins
In reply to: [WooCommerce] Help with product view tabsThis might be helpful: https://minapansuriya.com/customize-woocommerce-single-product-tabs/
Forum: Plugins
In reply to: [WooCommerce] Remove Payment method listed twice in customers emailsCan you share the screenshot where you would like to remove payment details?
Forum: Plugins
In reply to: [WooCommerce] customer on hold emailHi,
Template seems proper. If you want it to look different you can add further info in customer-on-hold-order.php file.
Refer this document for how to override the template file: https://docs.woocommerce.com/document/template-structure/
Forum: Plugins
In reply to: [WooCommerce] Disable “NEW” badgeAdd this CSS to your chidl theme’s style.css
.badge-container {
display: none !important;
}Forum: Plugins
In reply to: [WooCommerce] Show Widget Cart in the checkout pagesWhere you would like to display it on your Website? can you share URL?
Forum: Plugins
In reply to: [WooCommerce] Show Widget Cart in the checkout pagesooops
Use this PHP statement: <?php the_widget( ‘WC_Widget_Cart’); ?>
Forum: Plugins
In reply to: [WooCommerce] Show Widget Cart in the checkout pagesMay be it is better to simply use Woocommerce cart shortcode: [woocommerce_cart]
Forum: Plugins
In reply to: [WooCommerce] disable “add to cart” based on user roleForum: Plugins
In reply to: [WooCommerce] Product Title doesn’t get shown on Product PageM glad it helped ??
Don’t forget to mark it as resolved!!