crpereyra1 Posted May 16, 2014 Share Posted May 16, 2014 I am working with the default presta 1.6 theme. I am trying to move the location of the product "add to wishlist link," the one with the heart beside it. Instead of having it to the right of my product when in list view, I would like to place it right beneath the product name. Is this a change that needs to be made in the .tpl file or through css? And where should I start if I am trying to accomplish this? Thank you. Link to comment Share on other sites More sharing options...
dioniz Posted May 17, 2014 Share Posted May 17, 2014 One way of doing it is with jquery like this: Open yourtheme/js/product.js and after $(document).ready(function(){ insert this: $("#wishlist_button").insertAfter(".pb-center-column h1"); You will probably have to style it a bit which you can do in yourdomain/themes/yourtheme/css/modules/blockwishlist/blockwishlist.css by adding to this class: #wishlist_button { font-weight: 700; } 1 Link to comment Share on other sites More sharing options...
crpereyra1 Posted May 17, 2014 Author Share Posted May 17, 2014 Great! that is what I am looking for. On another note, where would I find the #wishlist_button div? Link to comment Share on other sites More sharing options...
dioniz Posted May 17, 2014 Share Posted May 17, 2014 In yourdomain/themes/yourtheme/modules/blockwishlist/blockwishlist-extra.tpl Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now