mrgogo
Forum Replies Created
-
New Version 1.6.8.1
Fixed Javascript issue
Fixed issue with comment feature
—————————————————-I’ve tested the new version no problem
Thanks Authors.Advanced Access Manager NOT SUPPORT WordPress 3.5
Resolve: Downgrade from 3.5 to 3.4.2
Firebug Report: TypeError: e is undefined
[Break On This Error]
…eturn t?u.length:u?nt.error(e):L(e,a).slice(0)}function at(e,t,r){var i=t.dir,s=…load-s…ver=3.5 (line 2)
Plugin: http://wordpress.org/extend/plugins/advanced-access-manager/
Forum: Fixing WordPress
In reply to: IE ProblemThank you for your response. I want to hear other people’s ideas
Forum: Fixing WordPress
In reply to: IE ProblemI think that is the problem of css
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Nested Category Layout for ProductsOk ok Work :D:D:
<h3> <?php echo $category->name; ?> <?php if ( $category->count > 0 ) : ?> <?php $value2 = $category->slug; $args = array( 'post_type' => 'product', 'posts_per_page' => 12, 'product_cat' => $value2, 'orderby' => 'name', 'order' => 'ASC', ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?> <?php woocommerce_get_template_part( 'content', 'product' ); ?> <?php endwhile; ?> <?php endif; ?> </h3>Thank you for help do not
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Nested Category Layout for Products<h3> <?php echo $category->name; ?> <?php if ( $category->count > 0 ) : ?> <?php $testvalue = $category->name; $args = array( 'post_type' => 'product', 'posts_per_page' => 12, 'product_cat' => $testvalue, 'orderby' => 'name', 'order' => 'ASC', ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?> <?php woocommerce_get_template_part( 'content', 'product' ); ?> <?php endwhile; ?> <?php endif; ?> </h3>Not Working 🙁
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Nested Category Layout for ProductsThere is a problem but recent work
<h3> <?php echo $category->name; ?> <?php if ( $category->count > 0 ) : ?> <?php $args = array( 'post_type' => 'product', 'posts_per_page' => 12, 'product_cat' => testcategoryname, 'orderby' => 'name', 'order' => 'ASC', ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?> <?php woocommerce_get_template_part( 'content', 'product' ); ?> <?php endwhile; ?> <?php endif; ?> </h3>The problem stems from category name
something similar to the following code required<h3> <?php echo $category->name; ?> <?php if ( $category->count > 0 ) : ?> <?php $args = array( 'post_type' => 'product', 'posts_per_page' => 12, 'product_cat' => $category->name, 'orderby' => 'name', 'order' => 'ASC', ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?> <?php woocommerce_get_template_part( 'content', 'product' ); ?> <?php endwhile; ?> <?php endif; ?> </h3>'product_cat' => $category->name,Not work 🙁 How to do ?Forum: Plugins
In reply to: [WooCommerce] Woocommerce Nested Category Layout for ProductsHow to Display WooCommerce Products by Subcategory?
Forum: Fixing WordPress
In reply to: Woocommerce Nested Category Layout for ProductsI found a sample plug-in toll
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Nested Category Layout for ProductsI found a sample plug-in toll
Forum: Plugins
In reply to: [WooCommerce] Problems in layouti think jquery version problem. You try
in the woocommerce.php
// Enforce minimum version of jQuery if ( isset( $wp_scripts->registered['jquery']->ver ) && $wp_scripts->registered['jquery']->ver < '1.7' ) { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', '/wp-includes/js/jquery/jquery.js', array(), '1.7' ); wp_enqueue_script( 'jquery' ); } }Change it;
// Enforce minimum version of jQuery if ( isset( $wp_scripts->registered['jquery']->ver ) && $wp_scripts->registered['jquery']->ver < '1.7' ) { // wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', '/wp-includes/js/jquery/jquery.js', array(), '1.7' ); wp_enqueue_script( 'jquery' ); } }