lodix
Forum Replies Created
-
Forum: Plugins
In reply to: [Wishlist and Save for later for Woocommerce] Save For LaterHi. It turns out that I am an idiot. I was looking for a button at the bottom of the cart page that would save the full cart. But now I found the Save for later text below each product name. And it works correctly. Sorry for the confusion.
I like the simplicity of this plugin. And the quick response from support is amazing. Keep it up!
Just one suggestion: Please correct the wishlist login notice. Now it says: “You must be login to use Wishlist”. I think it should be”You must be logged in to use Wishlist” or “You must log in to use Wishlist”
Forum: Plugins
In reply to: [Wishlist and Save for later for Woocommerce] Save For LaterHi. Yes, I tried while logged in as an admin. And again logged in with a customer role. Both times I had items in the cart and both times the Save for later functionality was not showing.
I am using Woocommerce cart shortcode and the cart page was built with Elementor on Astra theme.
Our developer had already found a different solution which we have been using and works fine:
We are using the following filters to send the brand data to Google Analytics.
? wc_google_analytics_pro_product_details_data
? wc_google_analytics_pro_product_impression_data
? wc_google_analytics_pro_api_ec_purchase_parameters
? wc_google_analytics_pro_api_ec_checkout_parametersThese filters are working fine. If you have applied the implementation in a different way than it is worth trying these filters.
Hi. I tested the new plugin version. Sadly it did not resolve the issue for us.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] How to uninstall properlySorry about that. This is the second time it happened that I contacted the wrong support ??
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] How to uninstall properlyI think it belongs to your plugin since it contains the term “MailChimp”
Here are a few example rows:
O:36:”MailChimp_WooCommerce_Single_Product”:8:{s:1…
O:33:”MailChimp_WooCommerce_Cart_Update”:10:{s:9:”…I have 629,910 rows like that in the wp_queue table for a total of 6 GB.
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Hide currency symbolDear Chetna,
Thank you for the support reply and the further support on your forum and by email.
This must be the best and fastest support I have received from a plugin developer all year. Keep up the good work!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Position of totals in templateI will try to explain.
The simple template (default template) has 3 columns. The area below the template takes the same space. The customer’s note area takes 1 column and the totals take the space of 2 columns.
I added one column (total 4 columns). I changed the template code so that the customer’s note area now takes 2 columns.
Here is the code for that:
<tfoot> <tr class="no-borders"> <td class="no-borders" colspan="2"> <div class="customer-notes"> <?php if ( $wpo_wcpdf->get_shipping_notes() ) : ?> <h3><?php _e( 'Customer Notes', 'wpo_wcpdf' ); ?></h3> <?php $wpo_wcpdf->shipping_notes(); ?> <?php endif; ?> </div> </td> <td class="no-borders" colspan="2"> <table class="totals"> <tfoot> <?php foreach( $wpo_wcpdf->get_woocommerce_totals() as $key => $total ) : ?> <tr class="<?php echo $key; ?>"> <td class="no-borders"></td> <th class="description"><?php echo $total['label']; ?></th> <td class="price"><span class="totals-price"><?php echo $total['value']; ?></span></td> </tr> <?php endforeach; ?> </tfoot> </table> </td> </tr> </tfoot>
Just replace the current code that is between the <tfoot>…</tfoot> with the above code. The only thing I did was add a colspan number for the customer’s note. If you add more columns be sure to increase that colspan number.
I hope this helps.
That works great. Thanks!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Position of totals in templateOk figured it out ??
I ran in to the same problem. I installed a plugin which allows to order your users list by date of registration. This way you can find out who recently registered. This works fine for me.