Christoph Jaenisch
Forum Replies Created
-
Thank you, that was the fix.
I had set it to this in the first place, but it didn’t work, strange. Maybe, Google didn’t update it directly.Hi @joelsmashballoon,
Thank you. With the new update and your steps, it works now.
Best regards,
ChristophHi @capuderg,
here is my setup:PHP 7.4.21
WP 5.8
Plugin version: 3.0.3I am using it with Disable Emails 1.7.0 if that matters.
Best regards
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Variation Images not assigned correctlyHi @wp-lab-support,
thanks for your reply.
I changed the settings and activated EPS upload – now it works. Thanks! The duplicates are also gone.I have another question but I will make an extra issue for that.
Best regards,
ChristophForum: Plugins
In reply to: [WP-Lister Lite for eBay] Sandbox Account possible?Hi,
I made a ticket in your system.
I can’t provide any more infos because there is not shown more although I enabled the debug mode.
Thanks!
Best regards,
ChristophForum: Plugins
In reply to: [WP-Lister Lite for eBay] Sandbox Account possible?I have 1 more question:
When trying to preview the auction, there comes an error message “Error thrown
Call to undefined function get_current_screen()”
Previewing the template works.Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Sandbox Account possible?OKay, thanks for your feedback! I will try this.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer on each page possible?Thanks, that helps!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer on each page possible?Forgot to mention: We are using both, free and pro version.
Forum: Plugins
In reply to: [WooCommerce] Version Upgrade different version numbers on changelog and ListI think the question was why the latest shown version is not 5.5.1 but 5.4.2.
That was also my thinking when I read about the vulnerability and looked into my current version (5.4.1).Thought I was on some different release channel, but after updating 2 times I am also on 5.5.1.
Forum: Plugins
In reply to: [Show Hooks] Messed up html tags on product pageMy versions:
Wordpress 5.7.1
WooCommerce 5.2.2
Show Hooks 0.1.4Okay, that might be it. But keep in mind that Combining JS works BETTER when this plugin is active with coming soon mode enabled. At least on our page.
But I can’t enable the coming soon mode on our productive website, naturally.- This reply was modified 3 years, 11 months ago by Christoph Jaenisch.
Okay, I found the cause for our working test page.
When I activate this plugin “Coming Soon Page, Maintenance Mode & Landing Pages by SeedProd”, combining JS works, if I disable it, combining JS doesn’t work.This seems like a strange thing to me.
- This reply was modified 3 years, 11 months ago by Christoph Jaenisch.
I found the failure by myself.
Sorry to say that, but this is not good coding. If the payment section and the review section are not in the same <div> (one parent div is sufficient), the place order button doesn’t work anymore because of this plugin.
And you get nothing as error, no JS error and no WC or PHP error, so it’s like the needle in the haystack.
All the best and please fix that!Forum: Plugins
In reply to: [MultiStep Checkout for WooCommerce] Template override in theme?Okay, thanks for your input. I managed to override it (if anyone interested) by using:
add_filter( 'woocommerce_locate_template', 'custom_woocommerce_locate_template', 11, 3 ); function custom_woocommerce_locate_template( $template, $template_name, $template_path ) { if('checkout/form-checkout.php' == $template_name ) { $template = './wp-content/themes/<theme-name>/checkout/form-checkout.php'; } return $template; }