Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor titodevera

    (@titodevera)

    Hello.

    Adds this code to your functions.php

    function pwb_custom_brand_desc(){
    	if(is_archive()){
    		$paged = get_query_var( 'paged' ) ? absint( get_query_var( 'paged' ) ) : 1;
    		if($paged!==1){
    			echo '<style>.archive.tax-pwb-brand .pwb-brand-description{display:none;}</style>';
    		}
    	}
    }
    add_action('wp_footer', 'pwb_custom_brand_desc');

    😉

    Thread Starter pansotdev

    (@pansotdev)

    Awesome 🙂 Thank you titodevera

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Brand Page Archive Description’ is closed to new replies.