CommerceBird
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Support for Purchase Invoiceshi Alex,
sure thing ๐ have done so just now.
Forum: Plugins
In reply to: [Flx Woo] Demo site is downah okay, looking forward to it! It looks very nice as a base template for our projects. You can sell it on license basis and make this very profitable ๐
Found the options page to remove the linked relationship.
Same for me but also the “Popup” block
There are many unique business process within WooCommerce, what works for one doesnโt work for another.ย
Normally I would agree on this, but not with it comes to SEPA as that takes a few days to complete for all European businesses, unlike Credit Card which is happening in the same hour. Other payment providers like Mollie for example are also making sure the WC subscription status doesn’t get affected until they know for sure if the SEPA payment was made or not. This is part of financial control process, universally applicable for all business types in Europe.
With all due respect but shouldn’t this be a priority for the ACF team right now?
Forum: Themes and Templates
In reply to: [Twenty Twenty-Four] Header not appearing on Single ProductHi Everyone,
Thank you for the suggestions. Those didn’t work unfortunately, but I managed to get it working by clearing the customizations on the Single product template. The issue was caused due to switch to child theme.
Forum: Plugins
In reply to: [Afterpay Gateway for WooCommerce] High-Performance order storage (COT)When can we expect this to be released?
Still getting this issue in latest version
Have fixed it by enabling jQuery Migrate in WP-Rocket plugin.
Forum: Plugins
In reply to: [Autocomplete For Relevanssi] Autocomplete plugin not runAnother problematic issue I encountered is an unnecessary DB Query at the end of the main script. Checking if Relevanssi is active is sufficient for the job. It should look like this to prevent unnecessary memory drain:
// Looking if the relevanssi table exists then enable the plugin actions if(in_array('relevanssi/relevanssi.php', apply_filters('active_plugins', get_option('active_plugins')))){ add_action( 'wp_enqueue_scripts', 'afr_scripts' ); add_action( 'wp_footer', 'afr_footer_add', 50); }
Thank you for quick response. Looking forward to it. For now I had to disable AMP for pages.
Forum: Plugins
In reply to: [Autocomplete For Relevanssi] Autocomplete plugin not runOne of my client had same issue. If you check console, it shows that Awesomplete class is not defined. This is because the inline script is loaded before the library is loaded.
The solution is to ensure it loads after DOM is loaded and after the awesomplete lib is loaded. This is the solution for the maker of this plugin (main PHP script):
jQuery(document).ready(function(){ var searchInputs = document.getElementsByName("s"); for(var i = 0; i < searchInputs.length; i++) { var awesomplete = new Awesomplete(searchInputs[i]); awesomplete.list = ["<?php echo $iwords_list; ?>"]; awesomplete.minChars = <?php echo $afr_min_chars; ?>; awesomplete.maxItems = <?php echo $afr_max_suggestions; ?>; } });
Forum: Plugins
In reply to: [Food Online for WooCommerce] Duplicated categoriesThank you, it works
Forum: Plugins
In reply to: [Food Online for WooCommerce] Duplicated categoriesHello,
Have you found a solution?