sheepiedog Posted April 8, 2015 Posted April 8, 2015 in 2.3x - on admin/categories php - the default Copy Method is Link Product. I vary rarely ever use Link Product but 99.9% of the time I use Duplicate Product. Would anyone be able to tell me the code to change the default from Link Product to Duplicate Product ?
nigelt74 Posted April 8, 2015 Posted April 8, 2015 Ok From my 2.3.4 admin/categories.php file Find (line 1017 for me) $contents[] = array('text' => '<br />' . TEXT_HOW_TO_COPY . '<br />' . tep_draw_radio_field('copy_as', 'link', true) . ' ' . TEXT_COPY_AS_LINK . '<br />' . tep_draw_radio_field('copy_as', 'duplicate') . ' ' . TEXT_COPY_AS_DUPLICATE); and change to $contents[] = array('text' => '<br />' . TEXT_HOW_TO_COPY . '<br />' . tep_draw_radio_field('copy_as', 'link') . ' ' . TEXT_COPY_AS_LINK . '<br />' . tep_draw_radio_field('copy_as', 'duplicate', true) . ' ' . TEXT_COPY_AS_DUPLICATE); Just tested and it works fine for me
sheepiedog Posted April 8, 2015 Author Posted April 8, 2015 omg ! Thank you so much- works perfectly ! - I have been putting up with that for 10 years - wish I had asked before ! Thanks again - you have made my week !
Recommended Posts
Archived
This topic is now archived and is closed to further replies.