Page 50 of 55 FirstFirst ... 404849505152 ... LastLast
Results 491 to 500 of 543
  1. #491
    Join Date
    Jul 2006
    Location
    Louisiana
    Posts
    144
    Plugin Contributions
    0

    Default 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?

  2. #492
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Avonlee Contempo Template - Remove socialMedia icons and links

    Quote Originally Posted by Forum5 View Post
    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

  3. #493
    Join Date
    Jul 2006
    Location
    Louisiana
    Posts
    144
    Plugin Contributions
    0

    Default 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?

  4. #494
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by Forum5 View Post
    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

  5. #495
    Join Date
    Jul 2006
    Location
    Louisiana
    Posts
    144
    Plugin Contributions
    0

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by picaflor-azul View Post
    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.

  6. #496
    Join Date
    May 2014
    Posts
    7
    Plugin Contributions
    0

    Default 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?

  7. #497
    Join Date
    Jul 2006
    Location
    Louisiana
    Posts
    144
    Plugin Contributions
    0

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by johnnydakota View Post
    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.

  8. #498
    Join Date
    May 2014
    Posts
    7
    Plugin Contributions
    0

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by Forum5 View Post
    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?

  9. #499
    Join Date
    Jul 2006
    Location
    Louisiana
    Posts
    144
    Plugin Contributions
    0

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by johnnydakota View Post
    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.

  10. #500
    Join Date
    May 2014
    Posts
    7
    Plugin Contributions
    0

    Default Re: Avonlee Contempo, Tabs Menu, Search Tab (Top Menu Bar)

    Quote Originally Posted by Forum5 View Post
    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.

 

 
Page 50 of 55 FirstFirst ... 404849505152 ... LastLast

Similar Threads

  1. How to make the "PRODUCT DETAILS" button not display ? (Avonlee Contempo Template)
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 12 Apr 2014, 04:04 PM
  2. Replies: 2
    Last Post: 4 Mar 2014, 08:58 PM
  3. How to change the product image display mode "Avonlee Contempo template" ?
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 24 Feb 2014, 10:32 AM
  4. About "Avonlee Contempo" Template - Layout , store logo and product description
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 13 Feb 2014, 08:27 AM
  5. Avonlee Contempo template
    By nothingnuaghty in forum Addon Templates
    Replies: 2
    Last Post: 15 Dec 2010, 08:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR