How do I remove (or comment-out) Entry_Price_Range and Entry_Date_Range boxes from the Advanced Search Page?
Thanks.
How do I remove (or comment-out) Entry_Price_Range and Entry_Date_Range boxes from the Advanced Search Page?
Thanks.
You are jumping on your horse and riding madly off in all directions, aren't you?![]()
Get familiar with the developer's toolkit under tools in the admin control panel. Enter a variable or constant in the bottom left block, select admin and cart, and click on the search button.
You'll find this invaluable.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
Thanks for your reply.
I entered "Entry_Price_Range" into the developer's toolkit, where you instucted.
This is what appeared.
"/home/public_html/catalog/includes/languages/classicx/english/advanced_search.php
Line #21 : define('ENTRY_PRICE_RANGE', 'Search by Price Range');
/home/public_html/catalog/includes/languages/english/advanced_search.php
Line #21 : define('ENTRY_PRICE_RANGE', 'Search by Price Range');
/home/public_html/catalog/includes/templates/template_default/templates/tpl_advanced_search_default.php
"
Line #46 : <legend><?php echo ENTRY_PRICE_RANGE; ?></legend>"
Now, to comment-out these lines, I tried a few things unsuccessfully.
I tried commenting-out these lines with this <!-- --> and then tried this // and then this /* */.
Obviously, I'm not doing something correctly.
Any assistance would be greatly appreciated. Thanks.
In the includes\templates\template_default\templates\tpl_advamced+search_defaut.php, around line 46, change<fieldset class="floatingBox back">
<legend><?php echo ENTRY_PRICE_RANGE; ?></legend>
<fieldset class="floatLeft">
<legend><?php echo ENTRY_PRICE_FROM; ?></legend>
<?php echo zen_draw_input_field('pfrom'); ?>
</fieldset>
<fieldset class="floatLeft">
<legend><?php echo ENTRY_PRICE_TO; ?></legend>
<?php echo zen_draw_input_field('pto'); ?>
</fieldset>
</fieldset>Be sure to save the file into you override directory to not lose it later. After this storm passes, we'll look at alignment.<!--- <fieldset class="floatingBox back">
<legend><?php /**echo ENTRY_PRICE_RANGE; */?></legend>
<fieldset class="floatLeft">
<legend><?php /**echo ENTRY_PRICE_FROM; */?></legend>
<?php /**echo zen_draw_input_field('pfrom'); */?>
</fieldset>
<fieldset class="floatLeft">
<legend><?php /**echo ENTRY_PRICE_TO; */?></legend>
<?php /**echo zen_draw_input_field('pto'); */?>
</fieldset>
</fieldset> --->![]()
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
Thanks alot for your help. I greatly appreciate your time and expertise.