torbent
Forum Replies Created
-
That’s it. This caused me a serious headache. Thank you.
Forum: Plugins
In reply to: [WooCommerce] Which extension is usable for gift cards?I tried it, I set up a product as gift card and as a virtual product, but when I buy it there is no voucher code generated or anything like that.
Do I need to create a gift card first and link it to the product?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce – How to add customized items manually to the cart?Yep, but with this one my gift options would be additional products.
I just want to display below the cart something like:
Do you want us to wrap your products as a gift? Choose the paper:
– Paper 1 / + 2.99
– Paper 2 / + 2.99
– Paper 3 / + 2.99I can also think of showing these options below each cart item and the user should select “Yes, please wrap this item as a gift.” and then the line with the paper options will be visible…. Is this possible with the checkout add on plugin?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce – How to add customized items manually to the cart?Hey Mike,
the checkout add ons plugin goes into the right direction, but I need to have a picture displayed near the options that I have added. When I see it correctly – the checkout add ons plugin does not support that.My favorite would be to insert an additional step after the user has clicked on “next” in the cart. Then a page with 4 options should be displayed and when the user selects one of the options and clicks on next again, the selection should be added to the cart.
How can I hook into the form handlers of the “next” buttons in the cart and do you know a possibility to create an additional checkout step/page after the cart page?
Would be great to hear your thoughts. Thanks!
Forum: Fixing WordPress
In reply to: What to do with wp.me shortlinks after site transfer?Nobody?
Forum: Plugins
In reply to: [WooCommerce] Free shipping after a certain amount in cartI solved it by changing $return, $package in the function call to $is_available.
Forum: Plugins
In reply to: [WooCommerce] Free shipping after a certain amount in cartHey terrytsang,
unfortunately this is also not working. Why is the option in the backend not working in the first place?The only customization I did is the following code – and this adds free shipping if the product is in a certain category. This works, but nothing in regards to the value of the cart.
function custom_free_per_class( $return, $package ) { $shippingclass_array = array( 'buchversand', 'magazinversand' ); // loop through the cart checking the shipping classes foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) { $shipping_class = get_the_terms( $values['product_id'], 'product_shipping_class' ); if ( isset( $shipping_class[0]->slug ) && in_array( $shipping_class[0]->slug, $shippingclass_array ) ) { return true; break; } } return false; } add_filter( 'woocommerce_shipping_free_shipping_is_available', 'custom_free_per_class', 10, 2 ); add_filter( 'woocommerce_package_rates', 'hide_shipping_when_free_is_available', 10, 2 );
The issue was caused by GermanMarket.
Thanks. Will keep you posted.
Hello,
I use GermanMarket and posted the issue in their support forums as well. They stated the file: inc/class-wcpdf-export.php is calculating the taxes and is not using the data coming from WooCommerce (line 817) – it does not implement the WooCommerce API. They say the issue is in that file.Can you check?
P.S: Is the PRO version of your plugin doing this in another way than the free version?
Forum: Plugins
In reply to: [Genesis Featured Page Advanced] Translation of the "More" text?Thanks for the quick response. Sorry – the widget has a “More text” that I use for the english version. Is there any chance to translate the text entered here into another language? With a .po file or something like this?
Forum: Plugins
In reply to: [Weekly Class Schedule] Viewing Pages Render ErrorHey,
I have the same problem. Did you find the solution?Allright. Great plugin btw. Thanks for providing it!
Hey Ewout,
thanks for your feedback. However it does not work properly.I have the following styling now:
table.order-data-addresses { width: 100%; margin-bottom: 10mm; } td.order-data { width: 100%; border:1px solid #000; } .order-data-table { margin-right: 0; margin-left: auto; }
And in the invoice the order-data has a height of approximately 5px, and the data within the order-data-table is overlapping the order-details which are below the order order-data-addresses.
I gave the order.data a fixed height and this works. :/
Forum: Plugins
In reply to: [CMB2] How to use CMB2 with WPML/multi languages?Forget this question – it works as the meta information is saved together with the page id.