ehsan20
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Adminimize] No search field with Adminimize PluginCan you please be more specific? I didn’t get the point
Forum: Plugins
In reply to: [Adminimize] No search field with Adminimize PluginSame problem here. Is there any update comming out to fix this ?
Forum: Plugins
In reply to: [WooCommerce] Related products based on cross-sellsI found it. Hooraaaa !
I replaced:
$arms = array( 'post_type' => 'product', 'posts_per_page' => '9', 'order' => 'DESC', 'post_status' => 'publish', 'post__not_in' => array($post->ID), 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'terms' => $trmarray, ), ) );with:
global $product; $crosssell_ids = $product->get_cross_sell_ids(); $arms = array( 'post_type' => 'product', 'posts_per_page' => '9', 'post__in' => $crosssell_ids, 'order' => 'DESC', 'post_status' => 'publish' );and it did the trick.
Viewing 3 replies - 1 through 3 (of 3 total)