Home Forums WoodMart support forum Change share social button style from default to colored-alt Reply To: Change share social button style from default to colored-alt

#51495

Artem Temos
Keymaster

Hi,

Try to add the following PHP code snippet to the child theme functions.php file to do this

	function woodmart_product_share_buttons() {
		$type = woodmart_get_opt( 'product_share_type' );
		?>
			<?php if ( woodmart_is_social_link_enable( $type ) ): ?>
				<div class="product-share">
					<span class="share-title"><?php echo ($type == 'share') ? esc_html__('Share', 'woodmart') :  esc_html__('Follow', 'woodmart'); ?></span>
					<?php echo woodmart_shortcode_social( array( 'type' => $type, 'size' => 'small', 'style' => 'colored-alt' ) ); ?>
				</div>
			<?php endif ?>
		<?php
	}