• Hi

    I install plugin of add-to-wishlist and compare yith in my theme and now I want to change location of them in product page . As you see in pic , they are link and have green color and in red line , How can I change place of them from top to bottom of social network ? It’s address of my site : chaarsoo

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi Mahtabpi

    I think a good solution would be to use some custom code to move items inside single product page

    Try to add the following code at the end of functions.php file of your theme or child

    if( defined( 'YITH_WCWL' ) && ! function_exists( 'yith_wcwl_move_add_to_wishlist' ) ){
        function yith_wcwl_move_add_to_wishlist(){
    	    echo do_shortcode( '[yith_wcwl_add_to_wishlist]' );
        }
        add_action( 'woocommerce_single_product_summary', 'yith_wcwl_move_add_to_wishlist', 55 );
    }

    Don’t forget to set Position option to “Use Shortcode” in plugin settings panel

    Hope this helps you
    Have a nice day

    • This reply was modified 8 years, 1 month ago by YITHEMES.
    Thread Starter mahtabpi

    (@mahtabpi)

    Hi
    Thanks from your guidance , all of work that you say I did , but it been hidden . I don’t know Where is it ? see please this link
    So thanks

    Thread Starter mahtabpi

    (@mahtabpi)

    And you say just for wishlist , I want both of them (wishlist and compare) move to bottom of cart button ! Can you say me ?
    Thanks

    • This reply was modified 8 years, 1 month ago by mahtabpi.
    • This reply was modified 8 years, 1 month ago by mahtabpi.
    Thread Starter mahtabpi

    (@mahtabpi)

    Hi
    My problem solved . but I couldn’t change place of compare link yet ! Can you help me ?
    So Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change location of add-to-wishlist and compare yith in product page’ is closed to new replies.