hello guyz,
i want to remove wishlist button image and want only link instead of button.
Eg:- "Add to Wishlist"
i have done that for Write a Review
initially the code for button of Write a Review was:-
echo tep_draw_button(IMAGE_BUTTON_WRITE_REVIEW, 'comment', tep_href_link(FILENAME_PRODUCT_REVIEWS_WRITE, tep_get_all_get_params()), 'primary');
After that for link of Write a Review i changed it to:-
echo '<a href="'.tep_href_link(FILENAME_PRODUCT_REVIEWS_WRITE,tep_get_all_get_params()).'"><u>Write Review</u></a>';
its working fine but similarly i tried to do href for below code of wishlist, its not working:-
echo tep_draw_button(TEXT_ADD_WISHLIST, 'clipboard', null, 'primary', array('params' => 'name="wishlist" value="wishlist"'));
Please give solution ASAP.
Thank you in advance...