Forum Replies Created
-
AuthorPosts
-
Pablo Pacheco
MemberAnytime ๐
Yes, but you’d have to do that programmatically. The perfect scenario would be creating a plugin or a child theme for this.You could test it adding a piece of code on your functions.php.
It will work, but if you update the theme the changes will be lost
Pablo Pacheco
MemberHello,
Thanks! Sorry for the delay.
This option is located on Appearance > Theme options > Top header optionCan you please explain the posts part again?
May 8, 2018 at 5:04 pm in reply to: The item with โname your priceโ shows the original price on the cart page #99471Pablo Pacheco
MemberAnytime ๐
May 7, 2018 at 8:40 pm in reply to: The item with โname your priceโ shows the original price on the cart page #99468Pablo Pacheco
MemberHi,
Sorry for the delay,Is this still happening for you?
I’ve made some tests and it’s working fine here.If it’s still happening, can you please send me your site URL?
May 7, 2018 at 7:42 pm in reply to: How to programatically add a product to the cart using a function? #99477Pablo Pacheco
MemberHello,
Sorry for the long delay.
To add a product with custom price programmatically you would have to do something like this:// Sets product price add_action( 'woocommerce_before_calculate_totals', function($cart_obj){ if ( is_admin() && ! defined( 'DOING_AJAX' ) ) { return; } foreach ( $cart_obj->get_cart() as $key => $value ) { if ( $value['product_id'] == 6356 ) { $value['data']->set_price( 99 ); } } }, 10, 1 ); // Adds product to cart add_action( 'wp', function () { if ( is_admin() && ! defined( 'DOING_AJAX' ) ) { return; } $product_id = 6356; foreach ( WC()->cart->get_cart() as $key => $val ) { $_product = $val['data']; if ( $product_id == $_product->get_id() ) { return true; } } WC()->cart->add_to_cart( $product_id ); } );
Pablo Pacheco
MemberHi Stefan,
Can you please update to the most recent version (1.1.8)?
Pablo Pacheco
MemberHi,
Sorry for the delay.After reading your message, I just included a new option called “Uppercase” on version 1.1.3.
If you have any questions, please let me know ๐April 26, 2018 at 4:56 pm in reply to: How do I see the information that the customer entered? #99320Pablo Pacheco
MemberHi, I will try to help you using the email then.
Can you please create a WordPress user for me using [email protected]?April 25, 2018 at 10:16 pm in reply to: How do I see the information that the customer entered? #99318Pablo Pacheco
MemberHello,
You can see what your customers entered in the fields accessing:
– The order page on dashboard. The info is on “item” metabox
– The email you receive when a customer buys some product. The info is next to the product’s titleIf you can’t see it, maybe your customers didn’t fill the fields. Or maybe you are not using the most recent version of the plugin.
If you create a WordPress user for me ([email protected]) I can try to take a look at this issue, if itโs still happening.
See youPablo Pacheco
MemberHi!
I’m glad to hear it!April 19, 2018 at 6:04 pm in reply to: Compatibility of Plugin with WP All Import for Swatch Image Import? #98316Pablo Pacheco
MemberHi,
We havenโt tested it, but theoretically it will work, because all the data related to product categories and variation swatches is stored as any other regular term meta field, and according to this page, WPAllImport can automatically detect this.
http://www.wpallimport.com/documentation/taxonomies/import-taxonomy-meta/Let me know if you have more questions, see you
Pablo Pacheco
MemberHi,
Sorry for the delay.Thanks ๐
Unfortunately that’s not possible for now.
But that’s a good idea. We will add this on our to-do listPablo Pacheco
MemberHello,
Sorry for the delay.
I’m glad you are enjoying it ๐Can you please follow these 2 steps?
1 – Please change your frontend template to this:
%frontend_label% %open_price_input% %currency_symbol%
2 – On Appearance > Customize > Additional CSS, please put this
.popfwc-price-and-symbol{ display: block; margin-bottom: 15px; margin-top: 6px; }
Let me know if it suits you ๐
Pablo Pacheco
MemberHello again,
I’m happy to inform we just updated a new version (1.1.7) which allows you to hide empty categories.
You just have to enable the option called “Hide menu items” on plugin’s settings.
After that you have to save the menu.
Please tell me if you liked the solution ๐
See youPablo Pacheco
MemberHi,
Can you please send us your site URL?
-
AuthorPosts