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

Reply To: Questions with plugin

#36419
Ernest MarcinkoErnest Marcinko
Keymaster

Hi again,

1 & 2. Of course.

3. Try maybe something like this:

add_filter( 'asp_index_terms', 'asp_change_the_string', 10, 2 );
function asp_change_the_string( $terms, $taxonomy ) {
	if ( $taxonomy == 'pa_dimensions' ) {
		foreach ( $terms as &$term ) {
			$term = str_replace(' x ', 'x', $term);
		}
	}
    return $terms;
}

6. Via this option: https://i.imgur.com/AQzcCQf.png

7. Only when they are checked/unchecked, they can be collapsed automatically: https://i.imgur.com/rASFTTE.png