cupandacu Posted September 28, 2010 Share Posted September 28, 2010 Hi All,Just a quick one. I would like customers to to see the details contained in the 'More Info' tab as soon as they view a product. At the moment the 'View Also' is the default. Link to comment Share on other sites More sharing options...
rocky Posted September 29, 2010 Share Posted September 29, 2010 I don't understand. On my test site, "More info" is already displayed by default. It is the first tab that is selected by default. Did you add a new tab before "More info"? Link to comment Share on other sites More sharing options...
cupandacu Posted September 29, 2010 Author Share Posted September 29, 2010 Hey rocky,So at the options at the bottom of my products are the following in order from left to right:1. "We also have..."2. "More info"3. "Data Sheet"I want customers to see the "More info" by default. Where can i configure this?, cant seem to see it in the back office....Cheers Link to comment Share on other sites More sharing options...
rocky Posted September 30, 2010 Share Posted September 30, 2010 It can't be configured in the Back Office. You will need to modify code. Add the following on line 326 of js/product.js in your theme's directory (before the first line of the $(document).ready function): $('#more_info_tab_more_info').click(); This will click the "More info" tab once the page has finished loading. Link to comment Share on other sites More sharing options...
cupandacu Posted September 30, 2010 Author Share Posted September 30, 2010 I added the code and it worked....only for a split second though.I see the 'more info' flash but it reverts right back to the 'we have also' tab.... Link to comment Share on other sites More sharing options...
rocky Posted September 30, 2010 Share Posted September 30, 2010 Hmmm. It seems your third-party module that adds the "We also have" tab is executing after the code you added. Try moving it to the end of the $('document').ready function. If that doesn't work, you will need to find the third-party javascript and add the code to the end of it. 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