'Search…' string missing from sktcorp.pot
-
SKT Corp theme (free) version 1.6.8. In file searchform.php at line 11 there is a reference to a ‘Search…’ string which is missing from the sktcorp.pot language file.
I suggest to fix this issue by using the ‘Search …’ string from the WP language files instead, so replace
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search...', 'placeholder', 'skt-corp' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s">
with
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder'); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s">
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘'Search…' string missing from sktcorp.pot’ is closed to new replies.