It sounds like you have not uploaded all of the files or have uploaded the files to the wrong location on your server.
Thanks,
Anne
Printable View
is there a mod or an "easy" way to make the All Business template mobile ready?
looks a little involved, but i think i can handle it...thx
Hi Anne,
Many thanks for your all business template.
Can you please advise how I can centre text on the home page aswell as remove the slide numbers under the slideshow.
Apologies if this has been covered already, I have searched and not been able to find the answers to my questions.
Thanks...
The slider navigation is already below the slider. If you post a link to your site and be more specific about where you want to move the navigation I can take a look.
You can add text to the main page in admin--tools--define pages editor --define_main_page.php This file already has php code on it so be sure that you are using a plain text editor to add your text.
Thanks,
Anne
I have installed this template and really love it! I do have one question: the three tabs towards the bottom of the home page (Featured, New, and Specials) how do I change their order so that New shows up as the default instead of featured. See image:
Attachment 10648
PM sent
I just submitted a new, updated version of the template package.
* I updated the AddThis code on the product info page to include the Pinterest Pin It button
* I updated the product info page layout for a more custom look. The price, attributes, and add to cart are in their own box next to the product image with the description, AddThis, product details, etc. below
* The new, updated html readme file has been added
* I added social media icons for youtube, pinterest, google plus, and your blog in the footer
* I added tabbed home page centerbox content for new products, featured products, and specials
See the readme file from the new package for information on changed files and new files added.
Thanks,
Anne
Hi Anne... great templates... we really love them.
Yesterday I picked up an interesting issue...
On all_business, we applied a hex colour to #headerWrapper
#headerWrapper {background: #000;}
And the black extended all the way through the main content area too...
I then did a COUNT of DIV tags and found:-
In your tpl_header.php there are:
ELEVEN opening <div tags
TEN closing </div> tags
HOWEVER... when I slipped in a </div> into the header, it seemed to close off the headerWrapper, and put the black exclusively in the header area:
ORIGINAL CODE in tpl_header.php (Around line 100)
Code:<br class="clearBoth" />
<!--eof-branding display-->
MY "STICKING PLASTER" (Around line 100)
Code:<br class="clearBoth" />
<!--eof-branding display-->
</div>
Am I missing something? Is there supposed to be another closing </div> in the "body" areas that I somehow don't have? I am thinking a mod addition might be the culprit... but we did the styling on a completely "virgin" install of ZC1.5, then applied all_business, then tried the headerWrapper styling... no added mods...
Your expertise and comments would be most welcome.
Can you post a link to the site so that I can take a look.
I just applied the:
to my demo of the all business using firebug and did not see the problem:Code:#headerWrapper {background: #000;}
http://www.picaflor-azul.com/free-de...d=all_business
The demo has the latest version of the template 1.5 installed (upate is pending approval here but available for download on my site). with no add ons except the template switcher.
Thanks,
Anne
Unfortunately, for reasons of a non-disclosure and confidentiality agreement with the client, I can't post the link...
But what I will do is see if I can replicate the issue on a clean install of 1.5 with JUST the all_business template installed, and if it re-appears, I'll PM you that link...
See this tpl_header.php file from the most recent version of the template package. I belive that all of the div and /div tags match up. I have commented them in the file:
I removed the other comments for clarity.Code:<?php
/**
* Common Template - tpl_header.php
*
* this file can be copied to /templates/your_template_dir/pagename<br />
* example: to override the privacy page<br />
* make a directory /templates/my_template/privacy<br />
* copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
* to override the global settings and turn off the footer un-comment the following line:<br />
* <br />
* $flag_disable_header = true;<br />
*
* @package templateSystem
* @copyright 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_header.php 4813 2006-10-23 02:13:53Z drbyte $
*/
?>
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
echo htmlspecialchars(urldecode($_GET['error_message']));
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
echo htmlspecialchars($_GET['info_message']);
} else {
}
?>
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<!--bof headerWrapper--><div id="headerWrapper">
<!--bof navMainWrapper--><div id="navMainWrapper">
<!--bof navMain--><div id="navMain">
<ul class="back">
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a> | </li>
<?php if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> | </li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | </li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a> | </li>
<?php } } ?>
<li><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART ?>" alt="cart icon" class="cart-icon" /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a> | </li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<?php }?>
</ul>
<!--eof navMain--></div>
<br class="clearBoth" />
<!--eof navMainWrapper--></div>
<!--bof navMainSearch--><div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
<!--eof navMainSearch--></div>
<!--bof logoWrapper--><div id="logoWrapper">
<!--bof logo--><div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<!--bof taglineWrapper--><div id="taglineWrapper">
<?php
if (HEADER_SALES_TEXT != '') {
?>
<!--bof tagline--><div id="tagline"><?php echo HEADER_SALES_TEXT;?>
<!--eof tagline--></div>
<!--eof taglineWrapper--></div>
<?php
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<!--bof bannerTwo--><div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?>
<!--eof bannerTwo--></div>
<?php
}
}
?>
<!--eof logo--></div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
<!--eof logoWrapper--></div>
<br class="clearBoth" />
<!--bof header-lan-curr--><div id="header-lan-curr">
<?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?>
<?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?>
<!--bof clearBoth--><div class="clearBoth">
<!--eof clearBoth--></div>
<!--eof header-lan-curr--></div>
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof headerWrapper--></div>
<?php } ?>
Thanks,
Anne
Hi Anne
Thanks for taking time on this...
I installed a totally CLEAN ZC1.5, then put in the all_business template - and like you say, it DOES NOT give the #headerWrapper behaviour I am experiencing on the other site.
It must therefore be something we did internally here... I will ask my team to look into it, and tell me how they are installing the template and ZC...
I appreciate your attention to this... and if/when I find the reason for the behaviour, I'll come back to this thread to tell others what caused it and why... If they have the same issue, they will be able to correct it.
hi, can any one please let me how to make the "new, feature, special" tabs to automatically show products on the main page like in the demo site? i have tried Configuration -> Index Listing and turn everything other than "0". but it didn't work. here is my site: http://rbteaimports.com/ .
also, can any one please tell me how to make the products in the categories to show in grid format instead of column format? i have installed the sql patch, but not sure what to do from there. thank you so much!
Hi, i finally found the answer for my first problem. it is in here http://www.zen-cart.com/showthread.p...72#post1134272 . i am still looking for the answer for my second problem.
anyway, thank you so much for all these beautiful templates, Anne!
I am having issues with the meta tags not being copied over from the template. When i hard code them to html_header.php they work but display the same accross all products but when using the <?php echo META_TAG_KEYWORDS; ?> etc. the meta tags don't copy and it is affecting my search engine rankings could you please tell me what i have done wrong?
thanks in advance
I have reset the template back to how it was and when using an seotoolset programme i get the errors as when i started
there has to be something i missing here surely.Quote:
<title> tag not found
<meta name="description"> tag not found
<meta name="description"> appears after your <meta name="keywords">
<meta name="keywords"> tag not found
<meta name="description"> appears after your <meta name="keywords">
Will try that when i get access back to the server and update to what happens i have tried restoring bk to the default zen template which works so will re-install the template.
Thank you for your help in this matter that has resolved what ever the issue was although an original issu came up on the seo tool set with the key words being before the description but that was easily resolved by switching them round in the header. Could you please send me an html banner either here or by pm to yourself as i would prefer to keep it out of the footer but wish to show my gatitude for the template and the support by providing the link to you.
thanks in advance.
Trouble with the center module showing "New", "Featured" or "Specials" items. It will not autoload showing for example my new items on the page. I have to press the button "new" before it shows up on my site.
What can I do so that it will automatically show up with the Newest items there?
you can see what i mean on my site: brodreneolsen.com
Tnx.
If you want to change which tab shows by default, see this:
http://www.zen-cart.com/showthread.p...72#post1134272
Thanks,
Anne
I would like to say a huge thank you for the template......... It is More Than GREAT!!!
Please could you kindly tell me how to add some text just under the "Search Bar" in my header section????
I would like to add some bold text underneath, including our telephone number etc. It looks as though there is too much white space.
Please visit my website - www.Sycamore-Cleaning-Service.co.uk
Many many thanks for all your time and effort...... I dare say picaflor-azul has fed many a family around the world and generate a income for 1,000s
You are a legend..... THANK YOU!!!!!!!!!
Thank you so much for your kind words--they are much appreciated :-)
You will add your text to the includes/templates/all_business/common/tpl_header.php file. Just look for the search box code and add your code under this. You can add styles in the stylesheet.css file.
Thanks,
Anne
Could you be more specific on how you fixed this. i need to fix mine and I do not know what to change in the layout settings. Thanks in advance....Larry
Could you be more specific on how you fixed this and what you changed in the layout settings as I need to fix this as well and have beein looking on how to fix this for weeks now. Thanks in advance...Larry
Nevermind I figured it out as well lol. Thanks for posting where you found it. Wow i cannot believe it took me so long to find that.
hi anne,
my site is http://adavendsolutions.com
my slide images are not functioning properly. they were perfect until yesterday. i made no changes to the site.
i can show you my define_main_page.php (cut and paste) i have made sure that the images are named correctly in my directory.
i am checking with my host to see if there was an issue too.....thank in advance
ok, reloaded define_main_page.php, made my changes and it works.
perfect as always...thanks.
New to ZC, just installed on my sandbox this week (ZC 1.5.1, PHP 5.2.17, Apache 2.2.6 on Win XPsp3) and picked your template as a starting point because it had the best documentation of all I looked at. Very nice work, thank you very much.
Just FYI and not a big deal to most. I downloaded from the ZC templates page, maybe they are out of date.
But just in case, Line 59 of ...templates-all_business-common-tpl_header.php has 2 short_open_tags. I know most hosting sites still support them but I don't develop with them.
Thanks Again, plan to look at yorkshire_clean next. Still trying to learn how to admin a ZC site (modules on/off/placement, sideboxes, layouts, etc.) short of buying the e-Start manual (which I plan to do if I pick ZC for this project) is there any documentation WRT the admin backend and what all the options do?
DUH, disregard last question. Just found your "Easy Help Tutorials", GREAT place to start.
Thanks again
I have changed my template to all_business, I really like it. I have went through the whole support thread, but I cannot find if the define font on the define pages can be changed in the style sheet and where to change it. The text is a little to small. Can you help me with this. I don't know any thing about the em fonts,
What's with this style sheet. This is the only style sheet no matter what size I change the font to it will not change. The text is so small vistors cannot read it. Can someone please help me. I search google for the different sizes in the em. and tried to change it but its still the same.
I would like all the category pages font size changed. I have started manually changing the define pages font size, its going slowly but what else can I do, or go back to the template I was using. I don't know what I am doing wrong but the style sheet don't seem to change the fonts.
I did post a link to my website earlier: Website: bargainsonlinesite.com
This is the style sheet I am editing, in the all_business template, stylesheet.css
is this the correct or wrong one
I got it to work, now I lost my footer trying to get the Featured Products to show. Any way to remove that featured text from under the featured box. I reuploaded the footermenu but it still didn't work.
When a product or category is clicked on, the header jumps down and leave wide blue space at the top, this happens with Internet Explorer and firefox.
hello Anne,
I want to put an SSL icon from TrustWave in the footer - the code is <script type="text/javascript" src="https://sealserver.trustwave.com/seal.js?style=invert"></script> , this script results in a clickable image - I'm sure you know what I mean. So how do I add it to the footer in the same section where the payment icons are? (I have tried but failed miserably)
cheers, Mike
hello
Trying to get an affiliate tracking code to work. I added it to /public_html/includes/templates/all_business/templates/checkout_success/tpl_footer.php
but it does not show.
Can anyone help me get this working
thanks
ian
hello
the page to edit appears to be /includes/languages/english/html_includes/define_checkout_success.php, this is where the other checkout success page content is , however when i add the clixgalore or google tracking code it displays no checkout success content (not even the original page content )
Any suggestions, using either clixgalore or idevaffiliate tracking code
<!-- Google Code for medical sheepskins ozwool Conversion Page -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = xxxxxxxx;
var google_conversion_language = "en";
var google_conversion_format = "1";
var google_conversion_color = "ffffff";
var google_conversion_label = "xxxxxxxxxxxxxxxx";
var google_conversion_value = 50;
/* ]]> */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/xxxxxxxxxxxxxxxxxx/?value=50&label=xxxxxxxxxxxxxxxx&guid=ON&script=0"/>
</div>
</noscript>
thanks
ian
ok i'm confused as to the actual override folder, if the folder is /includes/languages/english/html_includes/define_checkout_success.php
what is the overrides folder as everything i have tried does not work?
Any one help
thanks
IAn
Hi
I'm trying to get the correct links for the social media icons, I have followed the instructions and put in the correct URL:
This however seems to be pointing it back at my own site so I get a page not found error.Code:Line #55 : define('TWITTER_ICON', 'twitter.png');
Line #64 : define('TWITTER','http://www.twitter.com/barker_cummings');
Is the template picking up the URL from another location?
Hope someone can give me a pointer on this one, it's driving me mad :blush:
Thanks
I added that and used both the code
<!-- STart clix code -->
<?
$gv_query1= "SELECT * FROM zen_orders_total WHERE (class='ot_total' AND orders_id='$zv_orders_id')";
$gv_result1 = mysql_query($gv_query1);
$gvrow = mysql_fetch_array($gv_result1);
$gvsv=$gvrow[4];
$gvoid=$gvrow[1];
echo "<img src=\"https://www.clixGalore.com/AdvTransaction.aspx?AdID=xxxx&SV=" . $gvsv . "&OID=" . $gvoid . "\" height=\"0\" width=\"0\" border=\"0\">\n";
?>
<!-- End clix code -->
and (seperately)
<!-- STart clix code -->
<img src="https://www.clixGalore.com/AdvTransaction.aspx?AdID=xxxx&SV=<?php echo $order_summary['order_subtotal']; ?>&OID=<?php echo $order_summary['order_number']; ?>" height="0" width="0" border="0">
<!-- End clix code -->
and all it displayed when called up was this - both sale vale and order id = nothing
<img src="https://www.clixGalore.com/AdvTransaction.aspx?AdID=xxxx&SV=&OID=" height="0" width="0" border="0">
any ideas to what is missing?
thanks
ian
Hi Anne
I have all business template installed (1.3.9 version)
Whilst investigating an issue earlier today I found a rake of error messages in the cache folder.
PHP Deprecated: Function ereg() is deprecated in /var/www/vhosts/OURSITE/httpdocs/includes/index_filters/all_business/default_filter.php on line 121
There was a PHP upgrade alright as part of moving to the current server.
That line of code is:
Would you have a quick fix for this by any chance ?Code:// set the default sort order setting from the Admin when not defined by customer
if (!isset($_GET['sort']) and PRODUCT_LISTING_DEFAULT_SORT_ORDER != ' ') {
$_GET['sort'] = PRODUCT_LISTING_DEFAULT_SORT_ORDER;
}
if (isset($column_list)) {
if ((!isset($_GET['sort'])) || (isset($_GET['sort']) && !ereg('[1-8][ad]', $_GET['sort'])) || (substr($_GET['sort'], 0, 1) > sizeof($column_list)) ) {
for ($i=0, $n=sizeof($column_list); $i<$n; $i++) {
if (isset($column_list[$i]) && $column_list[$i] == 'PRODUCT_LIST_NAME') {
$_GET['sort'] = $i+1 . 'a';
// $listing_sql .= " order by p.products_sort_order, pd.products_name";
break;
} else {
// sort by products_sort_order when PRODUCT_LISTING_DEFAULT_SORT_ORDER is left blank
// for reverse, descending order use:
// $listing_sql .= " order by p.products_sort_order desc, pd.products_name";
//$listing_sql .= " order by p.products_sort_order, pd.products_name";
break;
}
}
Thanks Anne
Apologies for that. I was under the impression it was part of the template.
Hello, I was wondering if you could help me to remove the "featured" tab from the center box. I would like to only show new products and specials. Thank you!
Hello, I have another question about the center boxes. Is there a way to add a separator between the tabs or adjust the colors for each tab? Thank you.
need help on the site Im working on cant find a fix on the
#contentMainWrapper { want it to stack here is the link
http://chessvideo.com/combochessspecials-c-46.html
Hello again. I'm back with another question on the centerboxes.
Is there a way that I can add in [More] to the centerbox listings that show the New, Featured, and Special products as it only displays the amount that you specify, there's no way to view all of the products from the centerbox. Thank you!
Love the All Business template! Simple, clean, and professional looking all at the same time. Great work!
I do have one small issue I am unable to figure out. The Facebook "Like" button on the product pages only seems to work if you add a comment. If I simply click the Like button and "Post to facebook" (without a comment), it doesn't show up on my page...
I am utilizing Zen Cart 1.5.1 and the most recent All Business template zip file.
You can test it out here in any of the products: http://www.giantpythons.com/store
Try updating the Add this code to the latest version in the includes/templates/all_business/templates/tpl_product_info_display.php:
www.addthis.com
Thanks,
Anne
Hi Annie,
Do you have any idea what would affect my centerbox(new, features, specials, etc.). Suddenly my top labels are stacked vertically and the products are not centered. The only thing I changed was some of the product details. Any idea what I could adjust to correct the problem? Thank you.
Thank you for a nice template. I love the image slider.
I would like to customise it a bit. I have already changed the button/icons and would like to use similar button/icons in place:
header text in the side boxes (categories, What's new etc.).
Top links (home, login, checkout).
New, special featured.
Could you advice where and how to place images in the code please?
thanks,
Mark
Can anybody help me out please?
thanks.
Never mind. Found it here - http://www.zen48.com/?p=121
/public_html/includes/templates/responsive_all_business/common/tpl_header.php
Around lines 45-65.
@picaflor-azul, hello, I have installed an avonlee_contempo.1.6 on my website http://atopfashionstore.com,however, it has been a long time without new client registered.. today, I am trying to register account, but it does not show any place to registered.. I guess that should be part of the reason why I got no clients..
here is the link http://www.atopfashionstore.com/inde...action=process
I guess there should be a column asking new clients to creat account or something.. but somehow it is missing, I have no idea where I can find it back? I am a totally idiot on this website thing.. could you please give me some help..
Thank you so much....
Out of curiosity, do you have any other website modules added or do you just have the template? You may want to check that you have all of the pages uploaded properly. I think--and someone who knows better can correct me if I am wrong on this--the part to create a new account is in its own PHP file which is referenced.
It looks like your create an account page is broken. Check your logs folder for errors and correct them.
The template you are using is not responsive(mobile friendly). Google is now penalizing sites that fail their mobile friendly test.
https://www.google.com/webmasters/to...onstore.com%2F
I would recommend switching to a responsive template package. The Westminster New, Winchester Black, Winchester Responsive, and Responsive Sheffield Blue v2.0 are my most recently updated and advanced responsive template packages. They can be all be used as a 1, 2, or 3 column layout, with or without the left/right columns on the home page.
Thanks,
Anne
Understand that the last post to this thread was almost 2 years ago and that there is now a responsive version to this template, but the issue may still apply to this and other related templates. There was a post made in the forum that discussed a change needed to the language selection dropdown because in the case of the Chinese language install, the subfolder is called schinese and it was schinese that was displaying in the language box when it was the active language instead of the admin entered Chinese as the name of the language. The solution to the issue was posted here: https://www.zen-cart.com/showthread....09#post1327109 and is also cross posted in the responsive all business template thread.
Hi Anne, just a quick question. Can you have grid selected for column layout on your desktop and then have list selected for mobile ? It just looks better and I didn't know how much of an effort it might be to make the change. I've been using your template for quite some time now and still love the look. Regards, Mitch