This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 2 posts - 16 through 17 (of 17 total)
  • Author
    Posts
  • in reply to: only show productos from custom taxonomy category #9970
    boussobousso
    Participant

    my friend this is perfect, in the front I need at least 8 horizontal carrusels so I guess I have to replicate this code right?

    add_filter( ‘asp_query_args’, ‘asp_include_only_term_ids’, 2, 2 );

    function asp_include_only_term_ids( $args, $id ) {
    /**
    * Enter the desired taxonomy=>terms here.
    * For example, if you want to search category 1 and 2, then:
    * “category” => “1,2”
    */
    $include = array(
    “categoriageneral” => “166”
    );
    $search_ids = array(7);

    if ( !in_array($id, $search_ids) )
    return $args;

    in reply to: mobile results problem and open results in new tab #9915
    boussobousso
    Participant

    thank you very much !!! so It it will be fixed in next update right? I will check show more results , thanks for your fast help!!

Viewing 2 posts - 16 through 17 (of 17 total)