Changes scrolltotop button to an image with link
-
Hi,
I want to replace scrolltotop button to an image with external link.
Which file do I edit to replace Scroll To Top?
I’m using a child theme, can I edit in there?
Thanks
Hi,
Try to add the following PHP code snippet to the child theme functions.php file and customize to your needs
function woodmart_scroll_top_btn( $more ) {
if( !woodmart_get_opt( 'scroll_top_btn' ) ) return;
?>
<a href="#" class="scrollToTop"><?php esc_attr_e( 'Scroll To Top', 'woodmart' ); ?></a>
<?php
}
Regards