• I resolved this, thought I would share the solution. (Also posted in the WPML forum)

    The hover over the Search Icon in the Delicate theme does not translate to the alternate language when using WPML.

    Modified the file searchform.php in the Delicate theme from:

    <input type=”text” class=”search-input png_crop” title=”search” value=”<?php _e(‘Search’,’delicate’); ?>” onblur=”if (!value)value='<?php _e(‘Search’,’delicate’); ?>'” onclick=”value=”” id=”edit-search-theme-form-keys” name=”s” />
    <input type=”image” alt=”<?php _e(‘Search’,’delicate’); ?>” title=”Search” class=”search-submit png_crop” name=”op” value=”” src=”<?php echo get_template_directory_uri();?>/images/submit.png”/>

    to

    <input type=”text” class=”search-input png_crop” title=”<?php _e(‘Search’,’delicate’); ?>” value=”<?php _e(‘Search’,’delicate’); ?>” onblur=”if (!value)value='<?php _e(‘Search’,’delicate’); ?>'” onclick=”value=”” id=”edit-search-theme-form-keys” name=”s” />
    <input type=”image” alt=”<?php _e(‘Search’,’delicate’); ?>” title=”<?php _e(‘Search’,’delicate’); ?>” class=”search-submit png_crop” name=”op” value=”” src=”<?php echo get_template_directory_uri();?>/images/submit.png”/>

    This should be fixed by the Delicate theme team in the next version I hope.

  • The topic ‘Search Icon hover does not translate using WPML’ is closed to new replies.