Quote Originally Posted by clydejones View Post
For version 1.5.0 (the most recent)

1. Here's the section from tpl_testimonials_add_default.php for those two section (lines 94 - 111)

2. This is the css for testimonials_add.css see no references to background url *.png's
yes, so i changed the php to this:
PHP Code:
<li> 
<label class="inputLabel" for="testimonials_title"><?php echo (($error == true && $entry_title_error == true) ? TEXT_TESTIMONIALS_TITLE zen_image($template->get_template_dir(RETURN_WARNING_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' RETURN_WARNING_IMAGERETURN_WARNING_IMAGE_ALTRETURN_WARNING_IMAGE_WIDTHRETURN_WARNING_IMAGE_HEIGHT) : TEXT_TESTIMONIALS_TITLE zen_image($template->get_template_dir(RETURN_REQUIRED_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' RETURN_REQUIRED_IMAGERETURN_REQUIRED_IMAGE_ALTRETURN_REQUIRED_IMAGE_WIDTHRETURN_REQUIRED_IMAGE_HEIGHT)); ?></label> 
<?php echo (($error == true && $entry_title_error == true) ? zen_draw_input_field('testimonials_title''$testimonials_title''size="25" id="testimonials_title"') . ERROR_TESTIMONIALS_TITLE_REQUIRED zen_draw_input_field('testimonials_title''$testimonials_title''size="25" id="testimonials_title"')); ?> 
</li> 
<?php echo TEXT_TESTIMONIALS_DESCRIPTION_INFO ?> 
<?php if ($error == true && $entry_description_error == true) { ?> 
<li> 
<label class="inputLabel" for="testimonials_html_text"><?php echo TEXT_TESTIMONIALS_DESCRIPTION zen_image($template->get_template_dir(RETURN_WARNING_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' RETURN_WARNING_IMAGERETURN_WARNING_IMAGE_ALTRETURN_WARNING_IMAGE_WIDTHRETURN_WARNING_IMAGE_HEIGHT); ?></label> 
<?php echo zen_draw_textarea_field('testimonials_html_text''30''7''$testimonials_html_text''id="testimonials_html_text"') . ERROR_TESTIMONIALS_DESCRIPTION_REQUIRED?> 
</li> 
<?php } else {  ?> 
<?php if ($error == true && $entry_description_big_error == true) { ?> 
<li> 
<label class="inputLabel" for="testimonials_html_text"><?php echo TEXT_TESTIMONIALS_DESCRIPTION zen_image($template->get_template_dir(RETURN_WARNING_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' RETURN_WARNING_IMAGERETURN_WARNING_IMAGE_ALTRETURN_WARNING_IMAGE_WIDTHRETURN_WARNING_IMAGE_HEIGHT); ?></label> 
<?php echo zen_draw_textarea_field('testimonials_html_text''30''7''$testimonials_html_text''id="testimonials_html_text"') . ERROR_TESTIMONIALS_TEXT_MAX_LENGTH?> 
</li> 
<?php } else {  ?> 
<li> 
<label class="inputLabel" for="testimonials_html_text"><?php echo TEXT_TESTIMONIALS_DESCRIPTION zen_image($template->get_template_dir(RETURN_REQUIRED_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' RETURN_REQUIRED_IMAGERETURN_REQUIRED_IMAGE_ALTRETURN_REQUIRED_IMAGE_WIDTHRETURN_REQUIRED_IMAGE_HEIGHT); ?></label> 
<?php echo zen_draw_textarea_field('testimonials_html_text''30''7''$testimonials_html_text''id="testimonials_html_text"'); ?> 
</li> 
<?php }  

?>
1. Is there a particular reason not to do so? (ie, did i introduce drawbacks?)


2. ehrm, now i am really puzzled :)
i am sure i never put it in there so it is probably a left over from an initial version, and i obviously didn't overwrite it with the current one. Anyway, forget, move on...

thanks,
Jeroen