JovanaV
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Discount products woocommerceYou’re welcome!
Forum: Plugins
In reply to: [WooCommerce] Discount products woocommerceHello,
The easiest way to do that, is to create a new tag or category named discounts or sales and apply it on products you wish to display.
Regards,
JForum: Plugins
In reply to: [WooCommerce] Product Information not getting displayed in Category viewHi,
Have you tried to change theme to default one and see if same problem persists?
Regards,
Forum: Plugins
In reply to: [WooCommerce] Help with Table Cart totalsHi,
You can remove the shipping line by going to cart-totals.php and commenting these lines of code:
<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>
<?php do_action( ‘woocommerce_cart_totals_before_shipping’ ); ?>
<?php wc_cart_totals_shipping_html(); ?>
<?php do_action( ‘woocommerce_cart_totals_after_shipping’ ); ?>
<?php endif; ?>About reordering tax line and cart total you can take a look into
woo commerce -> includes -> wc-cart-functions.phpRegards,
JForum: Plugins
In reply to: [WooCommerce] Adding tax to custom order items failsHello,
Please look at documentation for setting up taxes in WooCommerce:
https://docs.woothemes.com/document/setting-up-taxes-in-woocommerce/You can also check out order and WooCommerce API for more information.
Regards
Forum: Plugins
In reply to: [WooCommerce] Email CustomizationYou can change email template by clicking the Setting->Emails->Completed order -> copy file to theme.
There you can insert mentioned function where ever you like in template and view output.
Unfortunately, I would say that there is not an easy way to view only product names, you will need to manipulate with that string and strip some chars.
Here is URL to the function documentation:
https://docs.woothemes.com/wc-apidocs/source-class-WC_Abstract_Order.html#1796-1826Forum: Plugins
In reply to: [WooCommerce] Email CustomizationHi,
You can use this function:
<?php echo $order->email_order_items_table(false, false, false, false, false, true); ?>
which will give you back product name,quantity and price returned as a string value and then you can manipulate with that string.
Regards
Forum: Plugins
In reply to: [WooCommerce] Problem translation Woo Commerce FrenchHello,
WPML allows you to scan plugin strings and translate through “String translation module”.
Please refer to this URL:
https://wpml.org/documentation/getting-started-guide/theme-localization/Best regards,
JForum: Plugins
In reply to: [WooCommerce] a couple questionsHello,
1. You can reset your order status by marking order as processing.
2. Than you will have option to mark it again as complete, which will send confirmation email.Please check out screenshot here: https://tinypic.com/r/k3q9ea/8
Regards
Forum: Plugins
In reply to: [WooCommerce] Email CustomizationYou have two products or?
Forum: Plugins
In reply to: [WooCommerce] Email CustomizationOk, but what if there are more than one item purchased?
You’re welcome ??
Forum: Plugins
In reply to: [WooCommerce] Email CustomizationCan you please tell me which email template we are talking about?
Is that “New order” email template?
Regards
Forum: Plugins
In reply to: [WooCommerce] Related products are not relatedHi,
Related products are the ones that share the same tags or categories as the current product. You can change them by grouping similar products in the same category,subcategory or by using the same tags.
Products => Categories/Tags => Add New
Products => Edit your product or Add new => Add created Category/TagBest regards,
JForum: Plugins
In reply to: [WooCommerce] Email CustomizationHello,
WooCommerce allows you to edit email templates so it suits your needs.
Please, take I look at following documentation:https://docs.woothemes.com/document/template-structure/
Regards,
J