Avonlee Contempo Template - Remove socialMedia icons and links
It looks like only one file, footer_menu_defines.php, controls the footer menu:
Headings are: Quick Links | Information | Customer Service | Important Links
I edited: /includes/languages/english/extra_definitions/avonlee_contempo/footer_menu_defines.php.
I removed all the socialMedia icons and links in the Footer, column four. I dont want socialMedia links. Is this the only file that needs to be touched? Was there an Add-on that created these socialMedia links where I can find any other files that are altered/added with the Add-on?
Re: Avonlee Contempo Template - Remove socialMedia icons and links
Quote:
Originally Posted by
Forum5
It looks like only one file, footer_menu_defines.php, controls the footer menu:
Headings are: Quick Links | Information | Customer Service | Important Links
I edited: /includes/languages/english/extra_definitions/avonlee_contempo/footer_menu_defines.php.
I removed all the socialMedia icons and links in the Footer, column four. I dont want socialMedia links. Is this the only file that needs to be touched? Was there an Add-on that created these socialMedia links where I can find any other files that are altered/added with the Add-on?
You can hide the social media links in the footer with:
Code:
#social-media{display:none;}
Thanks,
Anne
Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
ZC = 1.51
Avonlee Contempo Template
I'm wanting the Search Tab added to the top Menu Bar only. Not the L column.
However, when I turn on SearchBOX in Admin/ Tools/ Layout/ [L] Column it shows up on the Tab and in the L ColumnBox.
How do I control the Tabs Menu Bar only, adding Search Tab?
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
Forum5
ZC = 1.51
Avonlee Contempo Template
I'm wanting the Search Tab added to the top Menu Bar only. Not the L column.
However, when I turn on SearchBOX in Admin/ Tools/ Layout/ [L] Column it shows up on the Tab and in the L ColumnBox.
How do I control the Tabs Menu Bar only, adding Search Tab?
If you read the instructions in the readme.html file you will see the settings needed to turn on the header search box. You need to only turn on the single column status and turn off the left/right hand column status.
Thanks,
Anne
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
picaflor-azul
If you read the instructions in the readme.html file you will see the settings needed to turn on the header search box. You need to only turn on the single column status and turn off the left/right hand column status.
Thanks,
Anne
Thank you. That did the trick.
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
I'm trying to change the storepickup.php file to basically change the text to say "Free Local Delivery" instead of the "Store Pickup" text. I changed the text in the PHP and now my admin shows "MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE" in the shipping module screen.
I even changed everything back and uploaded the unchanged PHP file and it still says this. I posted on the Modules forum but haven't had much feedback on it. Here is the code as I currently have it:
$Id: storepickup.php 1969 2005-09-13 06:57:21Z drbyte $//define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Store Pickup');define('MODULE_SHIPPING_STOREPICKUP_TEXT_DESCRIPTION', 'Customer In Store Pick-up');define('MODULE_SHIPPING_STOREPICKUP_TEXT_WAY', 'Walk In');?>
Any thoughts?
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
johnnydakota
I'm trying to change the storepickup.php file to basically change the text to say "Free Local Delivery" instead of the "Store Pickup" text. I changed the text in the PHP and now my admin shows "MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE" in the shipping module screen.
I even changed everything back and uploaded the unchanged PHP file and it still says this.
Any thoughts?
DISCLAIMER:I have not tested your logic or my solution but, if I understand your question, you are simply changing a variable value.
I did a simple search on the variable value 'Store Pickup' and found it at: /store/includes/languages/english/modules/shipping/storepickup.php
At about line #22 I fount the TITLE_TEXT: You need to change the value of the TITLE_TEXT variable from 'Store Pickup' to 'Free Local Delivery'
HTML Code:
define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Store Pickup');
At about line #124 change the value from 'Enable Store Pickup Shipping' to 'Enable Free Local Delivery' and change the value 'Do you want to offer In Store rate shipping?' to 'Do you want to offer Free Local Delivery?'. That should do it.
HTML Code:
Line #124 : $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Store Pickup Shipping', 'MODULE_SHIPPING_STOREPICKUP_STATUS', 'True', 'Do you want to offer In Store rate shipping?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())");
I fear you have a syntax error somewhere. You may also have a cache problem, FTP editor or server editor if that is what you are using. Changing the variable value should not cause action you are describing unless there is a syntax error. Download a fresh copy of the source code to upload to the server. Use a proper editor like Notepad++ to make the change on your local file, not Microsoft Notepad or any other Windows/Microsoft editor. Delete the server copy of storepickup.php , make the change on an local copy of storepickup.php and upload the changed page to the server. That should do it, assuming the length of the variables make no difference your logic is correct.
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
Forum5
DISCLAIMER:I have not tested your logic or my solution but, if I understand your question, you are simply changing a variable value.
I did a simple search on the variable value 'Store Pickup' and found it at: /store/includes/languages/english/modules/shipping/storepickup.php
At about line #22 I fount the TITLE_TEXT: You need to change the value of the TITLE_TEXT variable from 'Store Pickup' to 'Free Local Delivery'
HTML Code:
define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Store Pickup');
At about line #124 change the value from 'Enable Store Pickup Shipping' to 'Enable Free Local Delivery' and change the value 'Do you want to offer In Store rate shipping?' to 'Do you want to offer Free Local Delivery?'. That should do it.
HTML Code:
Line #124 : $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Store Pickup Shipping', 'MODULE_SHIPPING_STOREPICKUP_STATUS', 'True', 'Do you want to offer In Store rate shipping?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())");
I fear you have a syntax error somewhere. You may also have a cache problem, FTP editor or server editor if that is what you are using. Changing the variable value should not cause action you are describing unless there is a syntax error. Download a fresh copy of the source code to upload to the server. Use a proper editor like Notepad++ to make the change on your local file, not Microsoft Notepad or any other Windows/Microsoft editor. Delete the server copy of storepickup.php , make the change on an local copy of storepickup.php and upload the changed page to the server. That should do it, assuming the length of the variables make no difference your logic is correct.
Thank you for the response. I uploaded the unedited file to my store and it's still the same. What can I do from here?
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
johnnydakota
Thank you for the response. I uploaded the unedited file to my store and it's still the same. What can I do from here?
At this point a Q&A session or the SWAG method to find the problem would take longer than it would to upload a clean set of error free files. I would upload a clean set of files making sure to retain a copy of the 'Configure.php' files before deleting the old files on the server. Leave off the Avonlee modification until you have control of the 'storepickup.php'. I have to work on a customer's ZC in the next day or so. I have a test store there so I will take a closer look then.
Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)
Quote:
Originally Posted by
Forum5
At this point a Q&A session or the SWAG method to find the problem would take longer than it would to upload a clean set of error free files. I would upload a clean set of files making sure to retain a copy of the 'Configure.php' files before deleting the old files on the server. Leave off the Avonlee modification until you have control of the 'storepickup.php'. I have to work on a customer's ZC in the next day or so. I have a test store there so I will take a closer look then.
I'll try testing it on a clean install and see where it goes.