How to add video or button on specific brand
-
Hello, I want to add a video on a specific brand page (archive page).
I am using the following code. It’s working fine but it’s showing for other categories also.
add_action( 'woocommerce_archive_description', 'video_on_brand_page', 20 ); function video_on_brand_page() { if(has_term( 'vs', 'yith_product_brand' ) ){ echo('<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> Your browser does not support the video tag. </video>'); } }
Thank you so much in advice.
Best regards.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to add video or button on specific brand’ is closed to new replies.