
Originally Posted by
jonisolis
Now it is back to not keeping the URL address in the box when I go back to edit a testimonial. How do I fix that again? Testimonials URL:####################__* Required
Sorry about the trouble and thanks for the help!
I think this is the same information from a previous post several pages back
open admin/testimonials_manager.php
Find this line of code (around line 185)
Code:
<td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($iInfo->testimonials_url) ? $iInfo->testimonials_url : 'http://', 'maxlength="255"', true); ?></td>
change it as follows
Code:
<td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($bInfo->testimonials_url) ? $bInfo->testimonials_url : 'http://', 'maxlength="255"', false); ?></td>
Save the file and upload to your server
Bookmarks