Forums / Addon Templates / All Business template Support Thread

All Business template Support Thread

Results 1 to 20 of 997
05 Oct 2010, 19:58
#1
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

All Business template Support Thread

Hello everyone :smile: 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_business/images/jewelry.jpg
As a toy store:
http://www.picaflor-azul.com/all_business/images/toys.jpg
12 Oct 2010, 00:59
#2
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

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

http://www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_53&products_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):

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);
14 Oct 2010, 21:47
#3
mxzas avatar

mxzas

New Zenner

Join Date:
Oct 2010
Posts:
5
Plugin Contributions:
0

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.
15 Oct 2010, 01:59
#4
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

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 :smile: 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:

<?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>  ';
    $lng_cnt ++;
  }
$content .= '</div>';
?>
15 Oct 2010, 02:10
#5
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

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:

<?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:  ';
  $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>  ';
    $lng_cnt ++;
  }
$content .= '</div>';
?>
15 Oct 2010, 02:58
#6
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

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/pedalpartsaustralia/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
15 Oct 2010, 03:19
#7
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

Hello :smile: I have designed this template to be used as a 2 column design only with with left hand column styled. There is no included styling for the right hand column. You can turn the right hand column off in admin--layout settings. I have included screen shots of all the admin settings necessary to make the template look just like the demo. Please read the install.txt file for instructions.
15 Oct 2010, 03:34
#8
mxzas avatar

mxzas

New Zenner

Join Date:
Oct 2010
Posts:
5
Plugin Contributions:
0

Re: All Business template Support Thread

Thanks for the awesome quick reply, the problem I am having now is that I have replaced the languages_header.php with your updated code, but it has no effect, I have also tried to make it empty, the main page still shows the language bar and two languages.
15 Oct 2010, 03:48
#9
mxzas avatar

mxzas

New Zenner

Join Date:
Oct 2010
Posts:
5
Plugin Contributions:
0

Re: All Business template Support Thread

Ah, I got it now, changing the languages_header.php under /sideboxes/ would alter the results for me, weird.
15 Oct 2010, 15:28
#10
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

Ah, I got it now, changing the languages_header.php under /sideboxes/ would alter the results for me, weird.


Great, I am glad that you got it. You need to put the file:

includes/templates/all_business/sideboxes/tpl_languages_header.php
16 Oct 2010, 14:12
#11
dealman876 avatar

dealman876

New Zenner

Join Date:
Jan 2010
Posts:
49
Plugin Contributions:
0

Re: All Business template Support Thread

Great template, thinking about using it to redesign my store. everything seems fine until i get to the secure pages where there is a blue strip on top of the header, and all header padding under categories, new products, etc are gone. any help solving this would be great. thanks again
16 Oct 2010, 14:14
#12
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

I would need a link to the page to offer any help.
17 Oct 2010, 04:48
#13
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

Re: All Business template Support Thread

picaflor-azul:

Hello :smile: I have designed this template to be used as a 2 column design only with with left hand column styled. There is no included styling for the right hand column. You can turn the right hand column off in admin--layout settings. I have included screen shots of all the admin settings necessary to make the template look just like the demo. Please read the install.txt file for instructions.


Thanks.

I think i have it sorted now!
17 Oct 2010, 06:23
#14
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

Re: All Business template Support Thread

Hi Again,

I have followed the instructions for the twitter and face book links...

8. Customize Facebook and Twitter links
=======================================

Go to:

includes/languages/english/extra_definitions/all_business/footer_menu_defines.php

Find line 56 and 57 and add the urls to your twitter and facebook accounts.

this is what i have put in...

define('TWITTER', 'http://www.twitter.com/pedalpartsaus');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall');

But the links dont work?
www.pedalpartsaustralia.com

Thanks

Mark
17 Oct 2010, 13:09
#15
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

markew--I went to:

www.pedalpartsaustralia.com

and do not see your zen cart??

There is just a launching soon page.
18 Oct 2010, 07:50
#16
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

Re: All Business template Support Thread

Ah...whoops!

here it is!

pedalpartsaustralia.com/pedalpartsaustralia/store/

sorry!

Mark
18 Oct 2010, 16:01
#17
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

Mark,

Your define statements should be:

define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');


If this does not work then you can always hard code them into the footer.
19 Oct 2010, 12:59
#18
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

Re: All Business template Support Thread

picaflor-azul:

Mark,

Your define statements should be:

define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');


If this does not work then you can always hard code them into the footer.


Hi,

I put the code in exactly as you said but then my whole store vanished i changed the '' at the end of each link back to a single ' and my store is now back, but the links again dont work?

How would i hard code them into the footer? im not sure what that means.

Thanks
19 Oct 2010, 13:16
#19
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Posts:
6,940
Plugin Contributions:
24

Re: All Business template Support Thread

Sorry about that--they should be single quotes.

You can edit the includes/templates/all_business/common/tpl_footer_menu.php file:

Change:

<span id="social-media">
<a href="<?php echo TWITTER; ?>"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image"  alt="twitter link" /></a>
<a href="<?php echo FACEBOOK; ?>"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image"  alt="facebook link" /></a>
</span>


to:

<span id="social-media">
<a href="your twitter url"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image"  alt="twitter link" /></a>
<a href="your facebook url"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image"  alt="facebook link" /></a>
</span>
19 Oct 2010, 23:15
#20
markew avatar

markew

New Zenner

Join Date:
Oct 2010
Posts:
6
Plugin Contributions:
0

Re: All Business template Support Thread

picaflor-azul:

Mark,

Your define statements should be:

define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');


If this does not work then you can always hard code them into the footer.


Awesome thanks!