Home Forums WoodMart support forum Changes scrolltotop button to an image with link

Changes scrolltotop button to an image with link

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #141999

    insider
    Participant

    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

    #142045

    Artem Temos
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)