Open taxonomy-stores.php
look for line 28
<p class="store-url"><a href="<?php echo $stores_url; ?>" target="_blank"><?php echo $stores_url; ?></a></p>
change it to
<p class="store-url"><a href="<?php echo $stores_url; ?>" target="_blank"><?php echo $term->name; ?></a></p>
function clpr_store_image($post_id, $tax_name, $tax_arg, $width) {
$term_id = appthemes_get_custom_taxonomy($post_id, $tax_name, $tax_arg);
$the_store_url = get_metadata($tax_name, $term_id, 'clpr_store_url', true);
if($the_store_url)
$clpr_store_image_url = ($the_store_url ? "http://s.wordpress.com/mshots/v1/" . urlencode($the_store_url) . "?w=" . $width : FALSE);
else
$clpr_store_image_url = bloginfo('template_url') .'/images/clpr_default.jpg';
return $clpr_store_image_url;
}
There are currently 1 users browsing this thread. (0 members and 1 guests)