domdeutz
Forum Replies Created
-
Hi, thanks for the quick response. I did all the steps as described, but still not possible to activate this setting.
I also have another site jungle-express.de – Here I have the same issue and no caching active.
BR
Dominique
Forum: Plugins
In reply to: [Facebook for WooCommerce] Meta field description of product brandSure. Thanks.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Meta field description of product brandHi, thanks for your feedback. This has nothing to do with woo brands. In order to see that field you need to populate the google product categories ??
By now I got the database field stat stores the data. Its meta:_wc_facebook_enhanced_catalog_attributes_brand
Thanks to Alan from WebToffee from import/export plugin for providing info about that field.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Meta field description of product brandPlease find below screenshot of the field that I am refering to: https://ibb.co/Bq7QcST
Thanks
Dominique
Forum: Plugins
In reply to: [Brands for WooCommerce] Database gets very slow when Plugin is activeI will see what I can find out. Thank you
Forum: Plugins
In reply to: [Brands for WooCommerce] Database gets very slow when Plugin is activeHi, sorry I missed the message. I added a widget to test possibilities but deactivated the widget afterwards. I only had shortcode on a category page.
At the moment I am using another brand plugin as your plugin is causing the described issue. But as I would like to also purchase your filter plugin it would be great if we could find some way to fix this error.
Thanks
Dominique
Sure. Thanks for your great service.
Thank you very much for your feedback. I ran the process once again in my production environment and managed to finalize the process.
It also seems that WCFM Logos and Banners are correctly identified as in use.
So I think I will go ahead with cleaning soon once I managed to backup the files. Very happy at the end. Just confused that this great service is for free?! :-/
BR
Dominique
Thanks. Won′t help when Cloudflare is in use unfortunately as 1800 seconds are fixed here. Not possible to just scan certain folders or minimy the process any other way I guess?
Thanks
Dominique
Hi, thanks. I was hoping that there might be another approach in PRO that allows this to work somehow ??
I assume it is some kind of a timeout. Not sure how I can check that. Actually Cloudflare times out after 1800 seconds as far as I know. I was wondering that the process was working for close to 900 minutes without any timeout to be honest.
Any idea how to avoid a timeout?
Forum: Plugins
In reply to: [Brands for WooCommerce] Database gets very slow when Plugin is activeHi, I now tested to run the product saving procedure with brands and query monitor plugin active. But in this case I am getting a critical error and therefore I have no data in query monitor.
This critical error is not logged in the woocommerce status error log.
Any idea how to address this?
Thanks
Dominique
Forum: Plugins
In reply to: [Brands for WooCommerce] Database gets very slow when Plugin is activeHi, sorry for late reply. I was working to get staging updated for testing purposes. In staging I can′t replicate the issue.
Could you let me know what info you need from WP Query Plugin? I am not a developer and struggeling to use the plugin.
I would love to use your plugin so would be great if we can figure our which process takes up the time.
BR Dominique
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Issue with drifting elementsHello, by now I could narrow the issue down further. The issue is created by the boxed / framed layout option in Flatsome theme. If Theme is set to full width everything is aligned correctly. Also I have to mention that the issue seems to only occur on wide-screen monitors. If you are using a 1:1 resolution monitor you probably won′t recognize the missalignment of the elements.
Please check following loom video which shows the problem: https://www.loom.com/share/babc2dcf01954dd58eb1ebd32e9d4540
Thanks & BR
Dominique
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] AVIF compatibilityThat worked fine. Thank you very much! I will leave a review for the great support
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] AVIF compatibilityAh got it. Yes, I use a custom template to include images. Sorry, wasn′t aware that thats not standard. I found below code in the template. I guess that this is creating the image in the Pdf file.
<tbody> <?php foreach ( $line_items as $item_id => $item ) : $_product = $item->get_product(); ?> <tr class="<?php echo apply_filters( 'wcfm_packing_slip_item_row_class', $item_id, $document_type, $order, $item_id ); ?>"> <td class="product" style="width:30%"> <style> .product_image { width: 60px; height: 60px; } .product_image img { width: 100%; height: 100% } </style> <?php if (is_object($_product)) { echo '<div class="product_image">' . $_product->get_image() . '</div>'; } ?> <span class="item-name"><?php echo esc_html( apply_filters( 'wcfm_order_item_name', $item->get_name(), $item ) ); ?></span> <?php if ( $_product && $_product->get_sku() ) { echo '<div class="wc-order-item-sku"><strong>' . __( 'SKU:', 'wc-frontend-manager' ) . '</strong> ' . esc_html( $_product->get_sku() ) . '</div>'; } if ( ! empty( $item->get_variation_id() ) ) { echo '<div class="wc-order-item-variation"><strong>' . __( 'Variation ID:', 'wc-frontend-manager' ) . '</strong> '; if ( ! empty( $item->get_variation_id() ) && 'product_variation' === get_post_type( $item->get_variation_id() ) ) { echo esc_html( $item->get_variation_id() ); } elseif ( ! empty( $item->get_variation_id() ) ) { echo esc_html( $item->get_variation_id() ) . ' (' . __( 'No longer exists', 'wc-frontend-manager' ) . ')'; } echo '</div>'; } ?>