Could you please tell me where can I delete the "0" next to the Searchbox? Is it inside the stylesheet somewhere? I would like to make the change myself. I would appreciate if you could just tell me what file to change. Thank you
AS Templates
POSTED: 2014-02-21
Hello KARMENK,
You have to open: 'templatesas002033htmlmod_searchdefault.php' file and delete the following lines:
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
Could you please tell me where can I delete the "0" next to the Searchbox? Is it inside the stylesheet somewhere? I would like to make the change myself. I would appreciate if you could just tell me what file to change. Thank you
You have to open: 'templatesas002033htmlmod_searchdefault.php' file and delete the following lines:
if ($button) :
if ($imagebutton) :
$button = '<input type="image" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" src="'.$img.'" onclick="this.form.searchword.focus();"/>';
else :
$button = '<input type="submit" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" onclick="this.form.searchword.focus();"/>';
endif;
endif;
switch ($button_pos) :
case 'top' :
$button = $button.'<br />';
$output = $button.$output;
break;
case 'bottom' :
$button = '<br />'.$button;
$output = $output.$button;
break;
case 'right' :
$output = $output.$button;
break;
case 'left' :
default :
$output = $button.$output;
break;
endswitch;
Regards, AS Team.