Naymapl
Forum Replies Created
-
Hi. I have this same issue.
Uncaught TypeError: Cannot read property ‘fadeOut’ of undefined
at HTMLInputElement.<anonymous> (multistep.min.js?ver=1.8.2:4)
at HTMLInputElement.dispatch (jquery.js?ver=1.12.4-wp:3)
at HTMLInputElement.r.handle (jquery.js?ver=1.12.4-wp:3)
(anonymous) @ multistep.min.js?ver=1.8.2:4
dispatch @ jquery.js?ver=1.12.4-wp:3
r.handle @ jquery.js?ver=1.12.4-wp:3Thank you. This code working well.
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Not working with WooCommerce 2.6.2Thanks for new release. Working perfect. All the best !
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Not working with WooCommerce 2.6.2i found how to fix it in other topic.
After line 128
// Cache data for pagination global $woocommerce_loop;
please add this code and that fix this issue:
//fix pagination issue $woocommerce_loop['paged'] = $query->query['paged'];
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Not working with WooCommerce 2.6.2Hi.
I have this same issue. Plugin works perfect for me before but now is problem with pagination panel. When you click on page 3 for ex. wordpress open page 3 but on pagination is still number one. Its look like a problem with pagination loop.
Forum: Plugins
In reply to: [WooCommerce] Double category name and countSorry for problem.
I remove this:
<?php /** * woocommerce_before_subcategory hook. * * @hooked woocommerce_template_loop_category_link_open - 10 */ do_action( 'woocommerce_before_subcategory', $category ); /** * woocommerce_before_subcategory_title hook. * * @hooked woocommerce_subcategory_thumbnail - 10 */ do_action( 'woocommerce_before_subcategory_title', $category ); /** * woocommerce_shop_loop_subcategory_title hook. * * @hooked woocommerce_template_loop_category_title - 10 */ do_action( 'woocommerce_shop_loop_subcategory_title', $category ); ?>
and everything working perfect.
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateThanks. I removed it and working well. Thanks again so much for help with this issue !!
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateok – I fix it. I have one more file in child theme. Sorry for taht ?? Thanks a lot for fix my issue. All the best for you.
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateI removed it but still thois same issue. I have just 2 columns not 4 display on store:
Here is my content-product_cat.php file:
<?php /** * The template for displaying product category thumbnails within loops. * * Override this template by copying it to yourtheme/woocommerce/content-product_cat.php * * @author WooThemes * @package WooCommerce/Templates * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] )) // Increase loop count $woocommerce_loop['loop'] ++; ?> <li class="product-category product<?php if ( ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] == 0 || $woocommerce_loop['columns'] == 1 ) echo ' first'; if ( $woocommerce_loop['loop'] % $woocommerce_loop['columns'] == 0 ) echo ' last'; ?>"> <?php do_action( 'woocommerce_before_subcategory', $category ); ?> <?php /** * woocommerce_before_subcategory_title hook * * @hooked woocommerce_subcategory_thumbnail - 10 */ do_action( 'woocommerce_before_subcategory_title', $category ); ?> <div class="product-thumb"> <a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>" class="category-link"> <?php echo woocommerce_subcategory_thumbnail( $category ); ?> </a> </div> <h3 class="h5"> <a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>"> <?php echo $category->name; if ( $category->count > 0 ) echo apply_filters( 'woocommerce_subcategory_count_html', ' <mark class="count">' . $category->count . '</mark>', $category ); ?> </a> </h3> <?php /** * woocommerce_after_subcategory_title hook */ do_action( 'woocommerce_after_subcategory_title', $category ); ?> <?php do_action( 'woocommerce_after_subcategory', $category ); ?> </li>
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateWhat exactly ? Just this or something more:
// Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; }
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateI change:
if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 3 ); }
for
if ( empty( $woocommerce_loop['columns'] ))
here you have a full code of my file content-product.php:
<?php /** * The template for displaying product content within loops. * * Override this template by copying it to yourtheme/woocommerce/content-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 3 ); } // Ensure visibility if ( ! $product || ! $product->is_visible() ) { return; } // Increase loop count $woocommerce_loop['loop']++; // Extra post classes $classes = array(); if ( 0 == ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 == $woocommerce_loop['columns'] ) { $classes[] = 'first'; } if ( 0 == $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) { $classes[] = 'last'; } ?> <li <?php post_class( $classes ); ?>> <?php do_action( 'woocommerce_before_shop_loop_item' ); ?> <?php /** * woocommerce_before_shop_loop_item_title hook * * @hooked woocommerce_show_product_loop_sale_flash - 10 * @hooked woocommerce_template_loop_product_thumbnail - 10 */ do_action( 'woocommerce_before_shop_loop_item_title' ); ?> <div class="product-thumb"> <a href="<?php the_permalink(); ?>" class="product-link"> <?php if( has_post_thumbnail() ) { $thumbnail_ids[] = get_post_thumbnail_id( $product->id ); $attachment_ids = $product->get_gallery_attachment_ids(); $i = 0; if( !empty( $attachment_ids ) ) { $thumbnail_ids = array_slice( array_unique( array_merge( $thumbnail_ids, $attachment_ids ) ), 0, 2 ); } foreach( $thumbnail_ids as $thumbnail ) { echo wp_get_attachment_image( $thumbnail, 'shop_catalog', false, array( 'class' => sprintf( 'image_%s', ++$i ) ) ); } } elseif( woocommerce_placeholder_img_src() ) { echo woocommerce_placeholder_img( 'shop_catalog' ); } ?> </a> </div> <h3 class="h5"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php /** * woocommerce_after_shop_loop_item_title hook * * @hooked woocommerce_template_loop_rating - 5 * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); ?> <?php /** * woocommerce_after_shop_loop_item hook * * @hooked woocommerce_template_loop_add_to_cart - 10 */ do_action( 'woocommerce_after_shop_loop_item' ); ?> </li>
Thanks a lot for any sugestions.
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after update@mike – I found taht in 2 files in my template. Change it for:
if ( empty( $woocommerce_loop[‘columns’] ))and still this same:
https://sklep.midu.plForum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateThanks for ansfer but I don`t know what I need to do with that ? Add this to functions.php ?
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateHi. I have simillar issue. After update on some websites i have issue with product pre row/columns. can somebody tell me what was change in woocommerce templates in content-product.php or somewhere else to fix display product well ?
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Checkbox after general conditionsThat great question/request. I`m looking for this same option/function becouse is the best place for checkbox. Any info how to make it ??