Add title or image to top of Woocomm category pages

Hi,

Looking to add a “Register Here” button to the top of the woo commerce category pages

have tried with no luck.

any help is greatly appreciated.

Thanks,

Brent

Hello Brent,

Thanks for writing in! What you are trying to do requires custom modifications. To get you started, you may use this sample snippet in your child theme’s functions.php file:

function add_custom_content(){ ?>
	<?php if ( x_is_product_category() ) : ?>
	
		<div class="custom-content">
			<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer scelerisque eros eu pulvinar dictum. Nunc egestas massa at elit bibendum, cursus fringilla nunc faucibus. Proin dignissim efficitur nunc a cursus. In luctus mi in nisi condimentum, sed ornare enim tempor.</p>
			<p><?php echo do_shortcode('[button shortcode]'); ?></p>
		</div>

	<?php endif; ?>

<?php }
add_action('woocommerce_archive_description', 'add_custom_content');

Please be informed that this is beyond the scope of our support. The code above should be enough to get you started with what you want to do. Issues that might arise from the use of custom code and further enhancements should be directed to a third party developer.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.