bungpm
Forum Replies Created
-
Aamir, do you have any advise for me?
As mentioned, I am happy to contribute by working on the code myself.
Just let me know!
Hi Aarmir,
thanks for getting back to me. The setting is already off:
This is the behavior I get in the front end:
All product variations are added to the product but only two of six variations are in stock.
The others can not be selected though, because the variations are not clickable.
Thanks again for your help.
Forum: Plugins
In reply to: [Tax Switch for WooCommerce] Not fully compatible with Tiered Pricing TableHey,
thanks for that super-fast fix! It works great now in the table itself.
We are using the pro version of the plugin that shows the total sum for the selected amount on the product page. That is still off in the case I described.
I will send an email with a link to the site.
Thanks again for that quick help!
Forum: Plugins
In reply to: [Payment Gateway for PayPal on WooCommerce] Partial refund causes full refundAwesome, thank you.
I have reviewed the code change and have seen that you create a new refund entry for the order after getting the webhook from PayPal.
However, we trigger the refund by creating a new refund entry in the order in WooCommerce in the first place. We are also setting specific items that the refund is for and add a reason for the refund.
So I am assuming we will get doubled refund entries then? Also, the customer would get a second email about the same refund.
Thanks again and best,
Joern
- This reply was modified 1 year ago by bungpm.
The page that this affects is https://rhinobag.de. It’s the main page where a product page is embedded using a shortcode.
There are no payment options on this page.
Forum: Plugins
In reply to: [Payment Gateway for PayPal on WooCommerce] Limit shipping countriesAs always, you guys are absolutely amazing. Thanks!
Works like a charm my friend! Had ~10 orders by now where the billing address was copied over from the shipping address perfectly.
Thanks again! =)
I don’t know if I have ever experienced such amazingly fast support anywhere.
Thanks a lot!
Will let you know how it goes in production.
Only when the billing address is “empty”. Empty is in quotes, because It usually has the name of the person, but no company, street, city, postal code.
You should be able to replicate this by adding this filter to your functions.php and NOT using the block but only the shortcode to include the switch.
add_filter( 'should_load_separate_core_block_assets', '__return_true' );Thanks for your quick response.
I just figured this out:
Apparently, the block style is given the same id as the one you manually set when enqueueing the styles in the shortcode (
wdevs-tax-switch-style).Possibly because I am not using Gutenberg/ the Thrive Themes theme does not them, WordPress does not actually enqueue the css-file when initializing the blocks.
But afterwards, the id is taken.
So when the shortcode is executed and tries to enqueue the css using the same id, nothing happens because WP thinks they already have been added to the header.
Because of this, I was able to fix this by either changing the name of the block in block.json or by changing the style id in line 115 in
class-wdevs-tax-switch-block.php, e.g., towdevs-tax-switch-style-sc.You can download it from here: https://downloads.wp.xz.cn/plugin/custom-fonts.2.1.1.zip
Hi,
a customer of mine had the same issue and I fixed it with this patch (also includes a minor fix for fetching the user zip from meta data).
Maybe you can include this fix into a new release.
Thanks,
Jörn
I did some more testing myself and it actually works if you happen to have the subscription as the first item in your cart and the simple product second.
In paymill/lib/integration/woocommerce.inc.php, the following line in process_payment reduces the variable $cart to just the first entry of the cart:
$cart = reset($cart);If the first product in your cart happens to be the simple product instead, it doesn’t work and throws the interval error mentioned above.
I worked on this issue some more and have a working fix here (http://pastebin.com/UVSYEPpD). It is not pretty yet, and probably isn’t suitable for pulling because I need to allow multiple subscriptions for the same user in my shop and figured this into the change as well by adding the order id to the offer-hash.
While fixing this, I also had an issue with a race condition, where the callback to the webhook for the subscription was interfering with the transaction for the simple product causing the “50000: Problem with back end” error I mentioned previously. I fixed this by switching the calls to processProducts() and processSubscriptions() in line 695 of the changed file.
Forum: Plugins
In reply to: [WP Open Graph] Install gives me this errorSame here.