Page 1 of 9 123 ... LastLast
Results 1 to 10 of 995

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default All Business template Support Thread

    Hello everyone I am happy to announce the release of my third free template to the zen cart community.

    The All Business template is a super flexible design perfect for all types of ecommerce stores--the possibilites are endless!

    See a live demo here.

    Template Features:

    * Fixed width 2 column display
    * Matching button set included
    * Matching icons
    * Home Page slideshow included
    * Cross Browser tested using Firefox, IE8, IE7, IE6, Google Chrome, Opera, and Safari.
    * Integrated links to your Twitter and Facebook
    * W3C Valid XHTML and CSS
    * Custom header including shopping cart totals (item count and dollar amount), checkout link, search, currencies with drop down menu, and languages.
    * Comes with the following modules installed: BetterCategoriesEZinfo, Column Layout Grid, About Us Page, Footer Menu , Designer Monthly Boxes
    * No changes to core files

    Download available on our site until it is approved and in the zen cart downloads section.

    See it as an apparel store:
    http://www.picaflor-azul.com/all_business/images/apparel.jpg
    As a jewelry store:
    http://www.picaflor-azul.com/all_bus...es/jewelry.jpg
    As a toy store:
    http://www.picaflor-azul.com/all_bus...mages/toys.jpg

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

    Default Re: All Business template Support Thread

    O.k., the template is now available in the downloads section:

    http://www.zen-cart.com/index.php?ma...oducts_id=1777

    I forgot to include the sql patch for the column layout grid with the module files so, if you want this module you will need to copy and paste the following into your admin--tools--install sql patches (the files for this module are included in the template package already):

    Code:
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, 
           configuration_description, configuration_group_id, sort_order, 
           last_modified, date_added, use_function, set_function) 
           VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows', 
                   'Select the layout style:<br />Each product can be listed in its own row (rows option)
                    or products can be listed in multiple columns per row (columns option)', '8', '40', NULL, 
                    now(), NULL, 'zen_cfg_select_option(array("rows", "columns"),');
    
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, 
           configuration_description, configuration_group_id, sort_order, 
           last_modified, date_added, use_function, set_function) 
           VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3', 
                   'Select the number of columns of products to show in each row in the product listing.  
                   The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);

  3. #3
    Join Date
    Oct 2010
    Posts
    5
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi there, first of all, really awesome template, really modern, layout feels clean.
    I have one problem, when you have two languages, the language header shows up but it's repeating itself, is it just me? Or is it intended to do so? Thanks.
    Attached Images Attached Images  

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

    Default Re: All Business template Support Thread

    I have one problem, when you have two languages, the language header shows up but it's repeating itself, is it just me?
    Hello I am happy that you like the template. Sorry for the mistake. I will post an update soon. For now, you can replace your: includes/templates/all_business/sideboxes/tpl_languages_header.php with this:

    Code:
    <?php
    /**                                                                                              
     * All Business Template                                                                         
     *                                                                                               
     * @package templateSystem                                                                       
     * @copyright Copyright 2007 iChoze Internet Solutions http://ichoze.com                         
     * @copyright Portions Copyright 2003-2006 Zen Cart Development Team                             
     * @copyright Portions Copyright 2003 osCommerce                                                 
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0                      
     * @version $Id: tpl_languages.php 2982 2006-02-07 07:56:41Z birdbrain $                         
     */
      $content = "";
      $content .= '<div id="lang_header" class="topBox centeredContent">';
      $lng_cnt = 0;
      while (list($key, $value) = each($lng->catalog_languages)) {
        $content .= '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('la\
    nguage', 'currency')) . 'language=' . $key, $request_type) . '">' . zen_image(DIR_WS_LANGUAGES .\
      $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a>&nbsp;&nbsp;';
        $lng_cnt ++;
      }
    $content .= '</div>';
    ?>
    Last edited by picaflor-azul; 15 Oct 2010 at 03:05 AM.

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

    Default Re: All Business template Support Thread

    I meant to add that this code will get rid of the "Languages:" completely, but I think this is o.k. since the flags are self explanatory.

    If you want to leave the "Languages:" in but only showing one time, then use this code:

    Code:
    <?php
    /**                                                                                              
     * All Business Template                                                                         
     *                                                                                               
     * @package templateSystem                                                                       
     * @copyright Copyright 2007 iChoze Internet Solutions http://ichoze.com                         
     * @copyright Portions Copyright 2003-2006 Zen Cart Development Team                             
     * @copyright Portions Copyright 2003 osCommerce                                                 
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0                      
     * @version $Id: tpl_languages.php 2982 2006-02-07 07:56:41Z birdbrain $                         
     */
      $content = "";
      $content .= '<div id="lang_header" class="topBox centeredContent">';
      $content .= 'Languages:&nbsp;&nbsp;';
      $lng_cnt = 0;
      while (list($key, $value) = each($lng->catalog_languages)) {
        $content .= '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('la\
    nguage', 'currency')) . 'language=' . $key, $request_type) . '">' . zen_image(DIR_WS_LANGUAGES .\
      $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a>&nbsp;&nbsp;';
        $lng_cnt ++;
      }
    $content .= '</div>';
    ?>

  6. #6
    Join Date
    Oct 2010
    Posts
    6
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi,

    Just found and downloaded the all business template...looks very slick and clean!

    can you please have a look here...

    http://www.pedalpartsaustralia.com/p...stralia/store/

    There is still some off the old style zencart on the right hand side?

    Would you be able to explain how to remove this?

    Thanks!

    Mark

  7. #7
    Join Date
    Feb 2009
    Location
    England
    Posts
    30
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hello and thank you for an awsome template.

    I have encountered one problem with the footer menus.

    Column 2, item 1 = About us

    And should lead to http://www.xxxxxx.com/store/index.ph...ENAME_ABOUT_US

    Yet it shows the default Page Not Found with sitemap below.

    I have checked footer_menu_defines.php and all appears fine in their (at least on first glance for a relative novice!)

    Currently the site is 'down for maintenance' and only accessible by dedicated IP addresses. If you need to look at the live site, please advise and I will disable maintenance mode to allow you access.

    Many thanks and best regards

    Bob

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

    Default Re: All Business template Support Thread

    Bob--I will need to see a link to your site to help you.

  9. #9
    Join Date
    Feb 2009
    Location
    England
    Posts
    30
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hello Anne,

    I have turned off maintenance and will leave it off for 1 hour

    The url is..

    http://www.anctgroup.com/store

    Best regards

    Bob

  10. #10
    Join Date
    Oct 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi there,
    Firstly, thank you so much for making such a fantastic template, it is an absolute joy to look at. You're very generous for sharing it with us all!

    Now, I'm having a slight issue, when I installed the template, as far as I could see exactly you had said in the install guide. I had several boxes on the right hand side which I have since disabled, this has now left a big blue box on the right and I'm unsure of how to get rid of this?

    Any help is greatly appreciated! I have sent you a PM with the URL I am having an issue with.

    Thanks!

 

 
Page 1 of 9 123 ... LastLast

Similar Threads

  1. v150 facebook all [support thread]
    By sourceaddons in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 19 Mar 2019, 04:10 PM
  2. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. All Business template -v1.5
    By heloparis in forum Addon Templates
    Replies: 5
    Last Post: 9 Apr 2012, 03:00 PM
  4. Business Activity Report 1.5.0 Support Thread
    By gharls in forum All Other Contributions/Addons
    Replies: 23
    Last Post: 6 Apr 2012, 11:12 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