Results 1 to 10 of 63

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Hi Aahz,

    I can't replicate the problem, in fact in our demo this issue is not exist, so i think maybe some setup causing this in your website, probably you can give me the link of the problem page?

    By the way, do you want to remove the buttons altogether means you just want visitor to click on product's image to go to product info page?

    The related files are:

    /includes/modules/template333/product_listing.php

    You can remove the buttons at this page, if you need further info just let me know.

  2. #2
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Just an update, I plan to make this template to be responsive, not so soon but I'm trying my best, I will update the progress in this thread later.

    This will be the first free Responsive template ever.

  3. #3
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Hi ..sort of a repeat question .But how can I make the home just say home (ie remove products ,all products ,specials) and categories be removed from the black bar as I find they hinder the viewing of the categories.
    and supper template too I might add ,love the outlay ..Was going to go over to opencart as I couldn't find a decent template till now

  4. #4
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Quote Originally Posted by ATSWorld View Post
    Was going to go over to opencart as I couldn't find a decent template till now
    Oh come on! Opencart certainly has one of the better default templates* and some very nice commercial templates in the $30 or so range, but I've discovered no other cart that has a better selection of FREE templates than Zencart. Hope template is certainly at the top of the heap, but so are the templates by Picaflor, Brandon and others.

    Beyond the template issue, one thing that has kept me from putting Opencart or Prestashop on some of our various other domains is the Easypopulate issue. From my look-see, none of these other two carts have an as easy-to-use version of Easypopulate. I think that Image Handler and the SEO URL Rewriters are also superior at Zencart. When the Zencart community gets cracking on a plugin, I think that they often surpass other carts with these built-in.

    ===========
    *The progress update here at Zencart expects a new, more modern and responsive default template soon with the upcoming 1.6 version. See

    http://www.zen-cart.com/showthread.p...1-5-and-beyond
    Steve
    prommart.com

  5. #5
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Not having much success in finding out out to remove Home and categories have managed to find out to turn off categories but not remove ..
    Have been wondering if it would be possible to move the register /log in to replace Home and categories in the top bar ..Would this be possible at all

    thanks

  6. #6
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Quote Originally Posted by ATSWorld View Post
    Not having much success in finding out out to remove Home and categories have managed to find out to turn off categories but not remove ..
    Have been wondering if it would be possible to move the register /log in to replace Home and categories in the top bar ..Would this be possible at all

    thanks
    Yes you can move Register/Login and replace the Home link in navigation bar.
    You need to edit the file:

    /includes/template/template333/common/tpl_drop_menu.php

    To Remove Home and it's submenus, remove codes on line #47-54 (as below)

    Code:
                <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>
                  <ul class="level2">
                    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo BOX_HEADING_WHATS_NEW; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL); ?>"><?php echo CATEGORIES_BOX_HEADING_PRODUCTS_ALL; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo BOX_HEADING_SPECIALS; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_ADVANCED_SEARCH); ?>"><?php echo BOX_HEADING_SEARCH; ?></a></li>
                  </ul>
                </li>
    Then REPLACE With the codes below:

    Code:
          <?php if ($_SESSION['customer_id']) { ?>
    
                    <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
    
                    <?php } else { ?>
    
                     <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>">Register</a>
                    &nbsp;/&nbsp;<a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    
                    
    
                    <?php } ?>

    Then to remove current Register/Login from the top most browser, go to

    /includes/template/template333/common/tpl_header.php

    Remove all codes from From line #100-122 (as below):

    Code:
                <div id="login_header">
                    
                    
    
                    <?php if ($_SESSION['customer_id']) { ?>
    
                    <a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>
    
                    &nbsp;/&nbsp;<!--<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT_NEWSLETTERS, '', 'SSL'); ?>"><?php echo HEADER_TITLE_NEWSLETTERS; ?></a></li>-->
    
                    <?php } else { ?>
    
                    <a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>">Register</a>
                    &nbsp;/&nbsp;<a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>
    
                    
    
                    <?php } ?>
    
                 
            
                
                </div>

    You might need to adjust a little CSS here and there to compensate the changes, just let me know if this work.

  7. #7
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Thanks for info ..Will have to look into it tomorrow night and let you know if it works ..bit late now
    thanks for the reply

 

 

Similar Threads

  1. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  2. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 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. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

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