nonobobo
Forum Replies Created
-
Hi,
Same problem than Isabella.
Any idea ?
Thanks,
NonoForum: Plugins
In reply to: [WooCommerce] update Count after hiding productsI found the solution on a website, but don’t remember where …
add this functions in woocommerce-core-functions.php :
add_filter( ‘get_terms’, ‘wc_get_terms_filter’, 10, 2 );
function wc_get_terms_filter( $terms, $taxonomies ) {
if ( ! is_admin() && in_array( ‘product_cat’, $taxonomies ) ) {
foreach ( $terms as $term ) {
$query_args = array(
‘post_type’ => ‘product’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘id’,
‘terms’ => array( $term->term_id ),
),
),
‘meta_query’ => array(
array(
‘key’ => ‘_visibility’,
‘value’ => ‘hidden’,
),
),
);$query = new WP_Query( $query_args );
$term->count = $term->count – count( $query->posts );
}
}return $terms;
}Forum: Plugins
In reply to: [jQuery Colorbox] Can't get it to work :(Hello,
First after installation and configuration it worked well. Using iframe class. But now, since a few day, it doesn’t work anymore without i make any change on my website. here is the page http://sodico.net/info/?page_id=72 (private page try code: 11sodico35). don’t understand, i’ve tried to replace the path of of the .js …. nothing changes
Have an idea ?
Nonobobo
Forum: Plugins
In reply to: [SC Catalog] [Plugin: SC Catalog] ProblemasHi,
ALl worked very until yesterday. I’ve created 14 products with pictures. Yesterday i’ve created 2 products, but for the second one it is impossible to choose the picture, all return “choose the picture”. Even when i want to modify a previous one (which worked before)
Any Idea ? Seems like Sally above.
ThanksForum: Plugins
In reply to: [SC Catalog] Issues with adding a featuerd image for the catalog itemHi, I’ve got the same probleme. I’d created 14 products with pictures few weeks ago without any problem.
Yesterday i’d to created 2 products. No problem for the first, but for the next one, it is impossible to insert the picture. Even if i want to modify previous one, delete and after insert, impossible for the ones i’d created before.
Any response ? Any Idea of what is the problem ?