Page 8 of 102 FirstFirst ... 6789101858 ... LastLast
Results 71 to 80 of 1017
  1. #71
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by mr80s View Post
    Hi Anne,

    Thanks for the quick response. Did you mean the tpl_mega_menu.php file as I don't have a tpl_drop_menu.php file. However, this only has reference to the first menu item "categories". It looks like /includes/languages/english/extra_definitiions/abbington_mega/headermenu.php might be the file. So if I wanted to add a new menu item (link) to the Information drop down and call it "Test" and point Test link to main_page=testpage.html where would I do this?

    What I was saying out the "About us" menu item is that on the drop down menu "About us" has the picture and some text (which is changable in the hedermenu.php file I mented above. However, in the footer section there is an "About Us" link that points to main_page=about_us that is a different page and contains this info:

    Home :: About Us
    About Us

    ABOUT US Sample Text ...

    This section of text is from the Define Pages Editor located under Tools in the Admin.

    You can use either the language-file in /includes/languages/english/MYTEMPLATE/about_us.php or this file separately for this page or, you can use both together.

    To remove the language file definition, do not delete the define statement, set it to be blank. Example: define('TEXT_INFORMATION', '');


    I'm really just looking to add more drop-down menu items that point to pages I can create.

    Thanks,
    J.


    To remove this section of the text (which you're reading right now), delete it from the Define Pages Editor, located under Tools in the Admin.
    Sorry about that! Yes, it is tpl_mega_menu.php. You can add additional links here.

    If you read the readme.html file you will see how to edit the about us content in the drop down menu. If you are comfortable with php code you can call the content from the about us page to the header menu drop down so that it is the same in both places ;-)

    Thanks,

    Anne

  2. #72
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,408
    Plugin Contributions
    94

    Default Re: Abbington Mega Template Support Thread

    Very nice template; the mega-menu is easy to customize. The text associated with the "Contact Us" drop-down is hard-coded in the template file and should be moved to a language file in a future release.

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by lat9 View Post
    Very nice template; the mega-menu is easy to customize. The text associated with the "Contact Us" drop-down is hard-coded in the template file and should be moved to a language file in a future release.
    I am not sure what you are talking about. The contact us drop down text is in the language file using the constant TEXT_CONTACT_US ?

    Thanks,

    Anne

  4. #74
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,408
    Plugin Contributions
    94

    Default Re: Abbington Mega Template Support Thread

    If you look in /includes/templates/abbington_mega/common/tpl_mega_menu.php, lines 243 to 279:
    Code:
            <li class="contactus-li"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>" class="drop"><?php echo HEADER_TITLE_CONTACT_US;?></a><!-- bof contact form -->
                           
                <div class="dropdown_2columns">
                    
                    <div class="col_2 firstcolumn">
                        <h2><?php echo TITLE_CONTACT_US;?></h2>
                        <p><?php echo TEXT_CONTACT_US;?>
    		    </p>
                       
                         <div id="contact_form">
                        
                            <div class="message">
                                <div id="alert"></div>
                            </div>
                            <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send')); ?>
                            
                                <label for="contactname">Name<span class="required"> *</span></label>
                                <input name="contactname" type="text" id="contactname" size="30" value=""  /> 
                                
                                <br class="clearBoth" />
                                <label for="email">Email<span class="required"> *</span></label>
                                <input name="email" type="text" id="email" size="30" value="" />
                                
                                <br class="clearBoth" />
                                <label for="enquiry">Message<span class="required"> *</span></label>
                                <textarea name="enquiry" cols="40" rows="3"  id="enquiry"></textarea>
                                    
                                    
                                <div class="form_buttons">
                                <input type="submit" class="button" id="submit" value="Submit" />
                                </div>
                            
                            
                            </form>
    The items I've highlighted in red should be in language files.

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by lat9 View Post
    If you look in /includes/templates/abbington_mega/common/tpl_mega_menu.php, lines 243 to 279:
    Code:
            <li class="contactus-li"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>" class="drop"><?php echo HEADER_TITLE_CONTACT_US;?></a><!-- bof contact form -->
                           
                <div class="dropdown_2columns">
                    
                    <div class="col_2 firstcolumn">
                        <h2><?php echo TITLE_CONTACT_US;?></h2>
                        <p><?php echo TEXT_CONTACT_US;?>
    		    </p>
                       
                         <div id="contact_form">
                        
                            <div class="message">
                                <div id="alert"></div>
                            </div>
                            <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send')); ?>
                            
                                <label for="contactname">Name<span class="required"> *</span></label>
                                <input name="contactname" type="text" id="contactname" size="30" value=""  /> 
                                
                                <br class="clearBoth" />
                                <label for="email">Email<span class="required"> *</span></label>
                                <input name="email" type="text" id="email" size="30" value="" />
                                
                                <br class="clearBoth" />
                                <label for="enquiry">Message<span class="required"> *</span></label>
                                <textarea name="enquiry" cols="40" rows="3"  id="enquiry"></textarea>
                                    
                                    
                                <div class="form_buttons">
                                <input type="submit" class="button" id="submit" value="Submit" />
                                </div>
                            
                            
                            </form>
    The items I've highlighted in red should be in language files.

    I will try to include this in a future update. Having the text in the tpl_mega_menu.php file is not effecting functionality at all on the front end and the fields are standard so this is not really a high priority bug fix.

    Thanks,

    Anne

  6. #76
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,408
    Plugin Contributions
    94

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    I will try to include this in a future update. Having the text in the tpl_mega_menu.php file is not effecting functionality at all on the front end and the fields are standard so this is not really a high priority bug fix.

    Thanks,

    Anne
    Thanks, Anne. I just wanted to get this noted for your multi-language users.

  7. #77
    Join Date
    Apr 2008
    Location
    Athens
    Posts
    84
    Plugin Contributions
    0

    Default Re: Abbington Mega Template Support Thread

    Can you please make a zen cart plugin with just the mega menu to add to my site? Its something I want to do really long time and nothing is better than yours in this template!

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by lat9 View Post
    Thanks, Anne. I just wanted to get this noted for your multi-language users.
    No problem ;-) Thank you for pointing this out to me!

    Thanks,

    Anne

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by soki View Post
    Can you please make a zen cart plugin with just the mega menu to add to my site? Its something I want to do really long time and nothing is better than yours in this template!
    I have actually been thinking about this and my get to this as time allows.

    Thanks,

    Anne

  10. #80
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    No problem ;-) Thank you for pointing this out to me!

    Thanks,

    Anne
    **quietly raises hand**

    I would be sooooo interested in this if you did it.. I have been quietly looking at how to grab the menu from this great template to use as a standalone menu..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 8 of 102 FirstFirst ... 6789101858 ... LastLast

Similar Threads

  1. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  2. v154 Abbington Mega 5.3 template not displaying properly
    By irishshopper in forum Addon Templates
    Replies: 1
    Last Post: 6 Mar 2015, 04:56 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Turpy Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 3
    Last Post: 20 Feb 2012, 07:36 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM

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