terrychu00
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Problem with special charactersOh, and Im exporting this file like CSV and I still having this problem.
Forum: Plugins
In reply to: [WooCommerce] Display some custom attributes related to my categoryNope, for example, I want display that cause I have diferents “clasificacion” in different category so I need to do this
Forum: Plugins
In reply to: [WooCommerce] Search by custom attributeTwo questions
Where can I customize the search? I know just a little about code but maybe I can do something
Second, if I use the WooCommerce Product Search I can search by a custom attribute?
Thank you so much
Forum: Plugins
In reply to: [WooCommerce] Ladder in catalogThere’s any way for change woocommerce_breadcrumb place?
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Woocommerce re ordering disappearsThanks for your answer, but now my page looks like this when I filter products
What happened?
Forum: Plugins
In reply to: [WooCommerce] Ladder in catalogYeah, i’m making a custom theme, how can I make it work?
Forum: Plugins
In reply to: [WooCommerce] WP Query by custom attributesThank you so much, i modified the code for my own use
$atts = shortcode_atts( array( 'per_page' => '12', 'columns' => '4', 'orderby' => 'title', 'order' => 'asc', 'attribute' => 'modelo', 'filter' => $modelo ), $atts, 'product_attribute' ); $query_args = array( 'post_type' => 'product', 'posts_per_page' => $atts['per_page'], 'orderby' => $atts['orderby'], 'order' => $atts['order'], 'meta_query' => WC()->query->get_meta_query(), 'tax_query' => array( array( 'taxonomy' => strstr( $atts['attribute'], 'pa_' ) ? sanitize_title( $atts['attribute'] ) : 'pa_' . sanitize_title( $atts['attribute'] ), 'terms' => array_map( 'sanitize_title', explode( ',', $atts['filter'] ) ), 'field' => 'slug' ) ) );
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Special chars problemExcuse me, how can I check that?
By the way all my atributes have archive page and all are “select” type.
Also all the slugs use “_” instead of “-“.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Special chars problemI’m exporting the file as CSV and i’m still having that problem