saens
Forum Replies Created
-
Forum: Plugins
In reply to: [MyParcel] Checkout-opties -> fout bij variable productDat is prima.
Ik ga er van uit dat mijn testen zich dan beperkt tot alleen dat stukje functionaliteit (dus niet andere functies vd plugin en/of de koppeling naar MyParcel en afhandeling aldaar). Zijn er specifieke use-cases die ik kan nalopen?Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Fatal error when activating MollieSearching for Mollie in Transient Manager yields 0 results. I manually went through the pages and no mollie found either.
I just upgraded to latest Woocommerce 4.3.3 and still got this error. Which gave me quite the scare, before I realised what happened last time.
Mollie version 5.8.1Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Can’t open pdf after 5.5Thank you. That was it.
I think it has to do with the new PDF reader I installed recently. (browser rendered vs. seperate client)
Forum: Plugins
In reply to: [MyParcel] Checkout-opties -> fout bij variable productHoi @ademdemir
Ondertussen gelukt met de variabele producten?@sstefanov
Why would you want the whole page to reload on an add to cart? At least that’s what I take from your words “The plugin works with page reload just fine now…”Cool. This applies to the premium version as well?
Forum: Plugins
In reply to: [WooCommerce Admin] Euro symbol broken in adminFor sure an hosting environment-related issue.
I’ve changed hosting (not because of this issue obv) and everything is looking as it should.
Hi, thanks for checking.
I found it picks the product from the suggested products/upsell box.I shall get back to you, cause I’m migrating my staging to a new host atm.
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Improvement suggestionAwesome, thanks!
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Fatal error when activating MollieIs this fixed in newer versions?
Forum: Plugins
In reply to: [WooCommerce] Review orderingHi, thanks. It does not do what I want. I want to always see the latest 10 reviews on the page. The splitting of the 10s (out of total) does not start with the latest 10, but with the oldest 10 working forwards in time.
The way it’s working now:
with 11 reviews, the latest review is on a page and the other 10 on the other page
with 20 reviews, it’s 10 on the first and 10 on the 2nd (OK)
with 21 reviews, it’s latest review on the first and 10 on the 2nd page and 1 on the third.It’s also explained here: http://bassjobsen.weblogs.fm/wordpress-reverse-comment-order-paged-comments/
Neither code solutions in functions.php work for me, though.
The comments are sorted in reverse order, but when adding the X per page option the undesired splitting over pages happens.
Forum: Plugins
In reply to: [WooCommerce Admin] Euro symbol broken in adminI’m seeing the same issue in the new cart and checkout blocks (WooCommerce Blocks version 2.7)
This is on the front-end.
Forum: Plugins
In reply to: [WooCommerce Admin] Euro symbol broken in adminIt’s a bit tiring to have to do the same things again.
Installed storefront theme.
Disabled all plugins (except woo)Changed the setting of the currency symbol to all 4 options. All give the wrong output (with the output on the position the setting is telling it to).
Also: https://ibb.co/9GrpH4X
The symbol is displayed properly in another section of woo. As others have pointed out in these threads as well.Forum: Plugins
In reply to: [WooCommerce Admin] Euro symbol broken in adminAny word?
Sure!
This code is placed in footer.php. It only runs on a certain product category and only shows on mobile devices. (the latter is done with CSS).
Im not a web-dev, so there’s most likely a better way, but this works for now. Also, this works only on simple products. On variable products you’d need more info, like the variation_id. I’m still working on that.
Furthermore, it’s most likely best to put the script in a different file, instead of this source. So it’s quite hacky.In tagmanager I created a new tag+trigger. Tag should use data-layer, and the trigger (custom event type) triggers on clicks in the button below.
<?php if (function_exists( 'is_woocommerce' )) : ?> <?php if (is_product() && strpos(get_the_title(), 'cape')) : ?> <div class="winkelmand_knop_float_container"> <form id="in_winkelmand_knop" method="post" enctype='multipart/form-data' action="<?php global $product; echo $product->add_to_cart_url();?>"> <script> function functie() { var name = document.getElementById("productName").value; var id = document.getElementById("productId").value; var sku = document.getElementById("productSKU").value; var price = document.getElementById("productPrice").value; dataLayer.push({ 'event': 'addToCart', 'ecommerce': { 'currencyCode': 'EUR', 'add': { 'products': [{ 'name': name, 'id': id, 'price': price, 'sku': sku, 'brand': 'our brand', 'category': 'Apparel', 'quantity': 1 }] } } }); } </script> <input id="productName" value="<?php global $product; echo $product->get_name();?>" type="hidden" /> <input id="productId" value="<?php global $product; echo $product->get_id();?>" type="hidden" /> <input id="productSKU" value="<?php global $product; echo $product->get_sku();?>" type="hidden" /> <input id="productPrice" value="<?php global $product; echo $product->get_price();?>" type="hidden" /> <button class="winkelmand_knop_float" type="submit" OnClick="functie()">In mijn mandje</button> </form> </div> <?php endif; ?> <?php endif; ?>