Carret
Forum Replies Created
-
Great to hear that.
And yes, I have made those changes in css. For more than a year now I believe. That capture is from a real web.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Prices without VATHi,
Same here, in the automation of abandoned carts, in the emails the prices appear without including taxes, both in the abandoned products and in the recommended products.
Hi,
try this:
change woocommerce_register_form_start by woocommerce_register_formMore info: https://businessbloomer.com/woocommerce-visual-hook-guide-account-pages/
Thanks for the help.
I already knew the content of the first 2 links.The checkbox of terms and conditions that can be seen in your second link (woocommerce (3.4beta1) -> settings-> Advanced-> Page setup-> Terms and conditions), should also be shown on the login/register page, in addition of the text defined in woo-> settings-> Accounts and Privacy-> Registration privacy policy.
In the following capture you can see what I mean.
It would also be nice if you could change the text and the link or links in the checkbox.
(Another issue I have read, is that even to comply with the law we should leave a record to prove, that the user checked the checkbox, this and any other acceptance of terms.)
Hi.
This is working for me. In the file megamenu-storefront.php:
if ( ! function_exists( 'storefront_primary_navigation' ) ) { function storefront_primary_navigation() { if ( function_exists('max_mega_menu_is_enabled') && max_mega_menu_is_enabled('primary') ) { //comment next line //wp_nav_menu( array( 'theme_location' => 'primary' ) ); // add this ?> <nav id="site-navigation" > <button class="menu-toggle"></button> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </nav><!-- #site-navigation --> <?php // end - add thisHI.
I verified that it was a conflict with the storefront-footer-bar plugin.
storefront-footer-bar uses wp_add_inline_style() to add css styles to its own sidebar and causes 2 products to be added instead of one. For that to happen, a widget must have been added to the sidebar.
- This reply was modified 8 years, 5 months ago by Carret.
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Breadcrumbs display "/Page 1"Thanks to you for the plugin and the update.
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Breadcrumbs display "/Page 1"After update to version 1.0.9 the file to apply fix is class-pagination.php in directory inc, (shortcode-pagination-for-woocommerce/inc/class-pagination.php):
public static function add_paged_param( $query ) { $is_product_query = self::is_product_query( $query ); //LaTribu - Remove "Page 1" at end of breadcrumb on products pages if ( isset($query->query['post_type']) && $query->query['post_type'] == "product" ){ return; } //LaTribu //rest of code...Forum: Plugins
In reply to: [Smart Slider 3] Fatal error: Class ‘N2CacheStorage’ not foundIt has been fixed. Thank you.
Hi, in file functions.php, of your storefront child theme, add
/* Remove Storefront Product Search in Header */ add_action( 'init', 'jk_remove_storefront_header_search' ); function jk_remove_storefront_header_search() { remove_action( 'storefront_header', 'storefront_product_search', 40); } /* Add Ajax Search for woocommerce */ function custom_storefront_search() { if ( storefront_is_woocommerce_activated() ) { ?> <div class="site-search"> <?php if( class_exists( 'DGWT_WCAS_Search' ) ) { echo do_shortcode('[wcas-search-form]'); } ?> </div> <?php } } add_action('storefront_header', 'custom_storefront_search', 40);Forum: Plugins
In reply to: [WooCommerce] Remove out of stock products from related productsThe problem with the solution https://iconicwp.com/hide-stock-products-related-products-woocommerce/, is that if you have configured the related products so that for example they show 5, do not show the ones that are out of stock, it does not always show 5 related products. Sometimes it shows 3, another 2, another 4, or 5, even if there are enough stock-related products.
It seems that when looking for the configured number of products, if there are some without stock, discard them but not replace them with others.
Should be a woocommerce problem, as I think the same thing happens if you mark the option in settings to not show products out of stock.
- This reply was modified 8 years, 10 months ago by Carret.
Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Reindex never endsYes, with 1.22 works well.
Thank you.
Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Reindex never endsI tried version 1.22 and it works in my case.
In the options table the aws_reindex_version row is now created with the value 1.22, before that row was not created.
Also in the options table, another row (I can not remember the name) with reindex data now disappears, before it stayed.
Console
JQMIGRATE: Migrate is installed, version 1.4.1 admin.js:60 {offset: 0, start: true, found_posts: 108}found_posts: 108offset: 0start: true__proto__: Object admin.js:60 {offset: 50, start: false, found_posts: 108}found_posts: 108offset: 50start: false__proto__: Object admin.js:60 {offset: 100, start: false, found_posts: 108}found_posts: 108offset: 100start: false__proto__: Object admin.js:60 {offset: 108, start: false, found_posts: 108}found_posts: 108offset: 108start: false__proto__: Object admin.js:52 Reindex finished!Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Reindex never endsWoocommerce 3.1.1, WordPress 4.8.1, Advanced Woo Search 1.20
Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Reindex never endsI tried but no luck, no error was reported.