Forum Replies Created
-
Thanks, David. It’s not urgent. There’s no indication for anything technically wrong. The Hotjar sessions do not show any anomalies.The number of orders seems reasonable. I don’t think that we miss any orders. I keep you posted.
Thanks, David. I wouldn’t draw any conlusions yet. Usually, I wait until I got 1000 conversions per variant. I just wanted to make sure that I don’t miss anything. The page view numbers are interesting though. The first test shows for both the original and the variant pretty much the same number of page views (+- 2 %). In the second test, on the other hand, I see 34 % more page views for the variant (at -30 % conversions). That’s odd and doesn’t feel right. The absolute numbers are still lower, but not extremely low for test 2. Until now, we have around 160 conversions and 2000 to 2500 page views (for each the original and the variant). That’s not enough, of course, but I have never seen such a dramatic change of almost 50 % (from + 12 % to – 36 %) in any test before. The campaign URL, by the way, is like so:
/photovoltaik-reinigungsmittel/?utm_source=rapidmail&utm_medium=email&utm_campaign=aktion_06_2026_rm1
However, why would it have an impact only on the variant and not the original. Doesn’t make sense.
I keep you posted.
Forum: Plugins
In reply to: [WooCommerce] Automatic update of statistics and performanceThank you very much for the quick response. My main question was: What would you consider “busy”? As far as I can tell, real-time updates have worked quite well for our store in the past. I just checked the status. We have 25 scheduled WooCommerce actions. That shouldn’t be a problem. Is there a specific threshold that can be used to gauge the store’s “busyness”?
Forum: Plugins
In reply to: [Survey Maker by AYS] New color schemeThank you. This works perfectly fine:
add_action('admin_head', function() { ?> <style> .ays-survey-menu-badge { color: #fff; display: inline-block; text-align: center; background: #3858e9; padding: 0 5px; min-width: 18px; height: 18px; border-radius: 9px; font-size: 11px; line-height: 1.6; vertical-align: top; box-sizing: border-box; margin: 1px 0 -1px 4px; } #toplevel_page_survey-maker > a:hover .wp-menu-name .ays-survey-menu-badge { background: #000000; } </style> <?php });It’s probably a matter of personal taste. But I prefer the sidebar to be as default as possible in terms of styling. In my opinion plugin items should blend it as far as possible. But that’s me, of course.
Forum: Plugins
In reply to: [Survey Maker by AYS] New color schemeThank you very much for the super fast reply. Very much appreciated! I don’t use the classic editor plugin. And quite frankly, I am not too excited to use a plugin for installing hotfixes. 🙂 Since I have never been a great fan of this text link, I created my own button:
add_action('admin_head', function() { ?> <style> .post-php #delete-action, .post-new-php #delete-action, .page-php #delete-action, .page-new-php #delete-action { line-height: normal !important; } #delete-action a.submitdelete { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; border: 2px solid #e94041; border-radius: 3px; background: #e94041; color: #ffffff; text-decoration: none; font-size: 0; } #delete-action a.submitdelete::before { content: "\f182"; font: normal 20px/1 dashicons; color: #ffffff; font-size: 18px; } #delete-action a.submitdelete:hover { background: #c71919; border: 2px solid #c71919; } #delete-action a.submitdelete:focus { box-shadow: 0 0 0 2px #2271b1; outline: none; } </style> <?php });- This reply was modified 3 weeks, 5 days ago by cutu234.
Spot on, David. Should have thought of this myself. 🙂 Works just fine.
Thanks, Mike
Hi David,
don’t get me wrong: I absolutely love the PHP test feature. I just wanted to make sure that this would be the right approach.
Now, I have a problem. I can’t save the following snippet for the variant. Not sure why:
remove_action('woocommerce_before_shop_loop', 'archive_header', 10); function archive_header() { if (is_product_category()) { $cat = get_queried_object(); if ($cat->slug == 'gruenbelagentferner') { $custom_field = get_field('banner_fur_ab-test_quart', $cat); } else { $custom_field = get_field('product_category_header', $cat); } echo '<div class="fullwidth-banner cat-banner">' . $custom_field . '</div>'; do_action('woo_cat_rating', $cat); if (in_array($cat->slug, array('schimmelentferner', 'spruehgeraete'))) { echo '<p style="text-align: center;"><a class="button scroll-element" id="video" href="#produktvideo">Anwendungsvideo</a></p>'; } } } add_action('woocommerce_before_shop_loop', 'archive_header', 10);“Save and Preview” simply removes the snippet. What am I missing?
In addition to that: The test scope would bereturn is_product_category('gruenbelagentferner');, right?Thank you very much for the input, Jose. Will change the snippet.
That’s exactly where I’m struggling. I’m not sure whether it would even be possible to create a test that changes the content of the custom field. I tried the custom post type test, but the custom fields are not available in the drop down.
Just to clarify the setup: I created a custom field (full editor) for Woocommerce categories. This is on the ACF side. My snippets provides the rendering on the category page.
Forum: Plugins
In reply to: [WooCommerce] Rounding error bug not fixed after 2 years!That is absolutely awesome. Thank you very much!
Forum: Plugins
In reply to: [WooCommerce] Rounding error bug not fixed after 2 years!Thank you very much. Very appreciated!
Forum: Plugins
In reply to: [WooCommerce] Rounding error bug not fixed after 2 years!Well, I already did that. But nobody seems to care. This is very disappointing since it is without any doubt a bug.
Forum: Plugins
In reply to: [WooCommerce] How to remove 40px margin below email order details tableThank you very much for the fast support. It seems to be a problem with the legacy templates. I checked it on other sites that use the new templates. Everything seems to be fine there. No need for further troubleshooting, I guess. Eventually, I will switch to the new templates. For now, I fixed it with a negative margin.
By the way, this is the part in the email-order-details.php template (line 73):
<div style="margin-bottom: <?php echo $email_improvements_enabled ? '24px' : '40px'; ?>;">Same here. All good. Thank you very much for the fast reply!
