i found it
Printable View
i found it
Can anyone help me.. my home page isn't working correcttly and I don't know how to fix it..
link is in signature.. thank you
noppie
ok now I am getting this in my debug file
'07-Jun-2014 16:23:30 UTC] PHP Warning: strrpos() expects parameter 1 to be string, array given in /home/herasonl/public_html/shop/includes/functions/functions_categories.php on line 484'
and I attached a picture of the function_categories.php and the line numbers..
and thank you in advance
noppie
Unfortunately, the debug log has identified only the victim (in this case, the function zen_get_categories_products_list has been passed an array as its first parameter instead of a category-id string) instead of the culprit (the code that made the improper call). You can use your admin's Tools->Developers Tool Kit to search for zen_get_categories_products_list in all catalog PHP files. There probably aren't a lot of calls to that function, so that will narrow the list of culprits down.
In an out-of-the-box ZC1.5.1 install, there are 4 files that use that call:
/includes/modules/featured_products.php
/includes/modules/new_products.php
/includes/modules/specials_index.php
/includes/modules/upcoming_products.php
You should run the same search to see if you have any template-override files that also make the function call.
anymore updates coming ?:blink:
my site now looks broken on the home page even on ie11, all of a sudden. no much done since last time that it was working.. if it carries on I will have to leave this template, can't afford it to be broken. shame, spent days customizing it
I have this installed and what ever i write doe not show up on the front page.. I tried adding content to to the defind main page under the tools/define page editor
and I went into the languages/html_includes and added content to both folders.. directly under the html_includes and under the tableau folder under the html_includes
and nothing show up on the front page.--
any sugestions.
thankyou
At the bottom of the template is the 3 columns blog, twitter feed, etc. its a really nice template and the work put into it is much appreciated but that part is difficult and convoluted at best to edit or update. I'd like to have that section be editable using the old style of define page define_main_page.php be recoding the tempalte to do that. Anyone have any ideas on how to do that? Thought if I just put in the orginal code: <div id="indexDefaultMainContent"><?php require($define_page); ?></div><?php } ?>page); ?></div> it would work but no.
Let me say upfront that I do NOT use this template but have downloaded it to see what this issue is about. So if you go into the file for tpl_product_reviews_write.php, you will find reference to this part which is where you pick the rating from 1 to 5 stars. Here is the part that may be causing the issue:
If you go in and take away each reference to "<!--" and "-->" it should show on your page. Why it is commented out, I don't know as I haven't used this template. But I see no reason for it to be commented out as I see no reference in the template using its own custom rating system. I assume this was an overlook on the authors part.Code:<li>
<?php echo zen_draw_radio_field('rating', '1', '', 'id="rating-1" class="star"'); ?>
<!--?php echo '<label class="" for="rating-1">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, OTHER_REVIEWS_RATING_STARS_ONE_ALT) . '</label> '; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '2', '', 'id="rating-2" class="star"'); ?>
<!-- ?php echo '<label class="" for="rating-2">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, OTHER_REVIEWS_RATING_STARS_TWO_ALT) . '</label>'; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '3', '', 'id="rating-3" class="star"'); ?>
<!--?php echo '<label class="" for="rating-3">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, OTHER_REVIEWS_RATING_STARS_THREE_ALT) . '</label>'; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '4', '', 'id="rating-4" class="star"'); ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '5', '', 'id="rating-5" class="star"'); ?>
<!--?php echo '<label class="" for="rating-5">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, OTHER_REVIEWS_RATING_STARS_FIVE_ALT) . '</label>'; ? -->
</li>
However, with this said, I had tested this template out in its initial release as a friend wanted to use it. But long story short, I decided to not to use it as I found about 12 other things that needed to be changed to bring back zencart functionality.
Hi, I've tried what you suggested for the reviews, but basically the stars appear but are misaligned with the link, so they are not clickable.
Unless I've done something wrong. I basically removed this bit both in front and back of the php
!--
So my code looks like this
<?php echo '<label......
Correct? Am I missing something? Really need to get this bit working, thanks
ok, i managed to have all the stars working in the write a review mode with this code
<li>
<?php echo zen_draw_radio_field('rating', '1', '', 'id="rating-1"'); ?>
<?php echo '<label class="" for="rating-1">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, OTHER_REVIEWS_RATING_STARS_ONE_ALT) . '</label> '; ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '2', '', 'id="rating-2"'); ?>
<?php echo '<label class="" for="rating-2">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, OTHER_REVIEWS_RATING_STARS_TWO_ALT) . '</label>'; ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '3', '', 'id="rating-3"'); ?>
<?php echo '<label class="" for="rating-3">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, OTHER_REVIEWS_RATING_STARS_THREE_ALT) . '</label>'; ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '4', '', 'id="rating-4"'); ?>
<?php echo '<label class="" for="rating-4">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FOUR, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FOUR, OTHER_REVIEWS_RATING_STARS_FOUR_ALT) . '</label>'; ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '5', '', 'id="rating-5"'); ?>
<?php echo '<label class="" for="rating-5">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, OTHER_REVIEWS_RATING_STARS_FIVE_ALT) . '</label>'; ?>
</li>
i can write a review, it gets posted but then i'm taken to a funny page, below is the screenshot. basically it should better put a message
thanks for taking time in reviewing bla bla bla.
the other thing i noticed is that even after the review is approved from the admin, the product still shows
be the first to write a review, or similar. so still unusable. any help here?
Attachment 14271
FIXING RATING SYSTEM
-------------------------------------------------------------------------
The Tableau template utilizes the "JQuery Star Rating Plugin" from FyneWorks.
Part One:
-------------------------------------------------------------------------
Unfortunately, the following Star Rating Plugin files were not included in the template: "star.gif" and "delete.gif"
Attachment 14272 and Attachment 14273 respectively.
Right click each image and save these files in your
/includes/templates/YOUR_TEMPLATE/images/ folder
Part Two:
-------------------------------------------------------------------------
The Tableau CSS file located in
/includes/templates/YOUR_TEMPLATE/css/auto_loaders/jquery.rating.css
needs updating to correctly display (or not depending on your preference) both "star.gif" and "delete.gif."
Part Two A:
-------------------------------------------------------------------------
To prevent "delete.gif" from displaying:
(IF the following line numbers don't match the line numbers in your jquery.rating.css, then look for the code and match it to your CSS file and modify accordingly.)
Leave lines 3-5 of the default Tableau jquery.rating.css as is.
3. div.rating-cancel {
4. display: none !important;
5. }
To display "delete.gif," comment out lines 3-5 by beginning line 3 with /* and ending line 5 with */
On line six add:
NEW LINE 6. div.rating-cancel,div.rating-cancel a{
NEW LINE 7. background-repeat: no-repeat;
NEW LINE 8. background-position: 0 -16px;
NEW LINE 9. background-image: url(../../images/delete.gif)
NEW LINE 10. }
(The original line 6 code
div.star-rating {
margin-right: 2px;
}
will end up starting on line 11)
Where "url(../../images/delete.gif)" is the path to your "delete.gif"
Part Two B:
-------------------------------------------------------------------------
To correctly display and allow your customer to rate your products:
Replace the original Tableau CSS coding for (NOW) line
15: div.star-rating,div.star-rating a{background:url(../../images/stars_plugins.png) no-repeat 0 0px}
("stars_plugins.png" doesn't exist)
with:
NEW LINE 15: div.star-rating,div.star-rating a{
NEW LINE 16: background-repeat: no-repeat;
NEW LINE 17: background-position: 0 0px;
NEW LINE 18: background-image: url(../../images/star.gif)
NEW LINE 19: }
Where "url(../../images/star.gif)" is the path to your "star.gif"
-------------------------------------------------------------------------
Ultimately, you will end up with a jquery.rating.css that looks like this:
Lines 3 - 19 (Again line numbers are relative to your css file.)
/*div.rating-cancel {
display: none !important;
} */
div.rating-cancel,div.rating-cancel a{
background-repeat: no-repeat;
background-position: 0 -16px;
background-image: url(../../images/delete.gif)
}
div.star-rating {
margin-right: 2px;
}
/*div.rating-cancel,div.rating-cancel a{background:url(delete.gif) no-repeat 0 -16px}*/
div.star-rating,div.star-rating a{
background-repeat: no-repeat;
background-position: 0 0px;
background-image: url(../../images/star.gif)
}
-------------------------------------------------------------------------
This should now display the rating system as (if I'm not mistaken) Numinix intended.
BTW, Thanks, Numinix for your hard work! :smile:
It appears that you have reset the rating system to the default Zen-Cart rating system by un-commenting it.
Without knowing more about the changes you've made to your template, the most effective advice I could offer would be to revert to the original Numinix Tableau Template rating system and apply the changes I've posted.
Here is the code as it originally appeared in the Tableau
/includes/templates/tableau/templates/tpl_product_reviews_write_default.php
in case you deleted the original code and need to compare.
(you can also retrieve the code from the Tableau template files you downloaded.)
PHP Code:
<div class="ratingRow">
<ul>
<li>
<?php echo zen_draw_radio_field('rating', '1', '', 'id="rating-1" class="star"'); ?>
<!--?php echo '<label class="" for="rating-1">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_ONE, OTHER_REVIEWS_RATING_STARS_ONE_ALT) . '</label> '; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '2', '', 'id="rating-2" class="star"'); ?>
<!-- ?php echo '<label class="" for="rating-2">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_TWO, OTHER_REVIEWS_RATING_STARS_TWO_ALT) . '</label>'; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '3', '', 'id="rating-3" class="star"'); ?>
<!--?php echo '<label class="" for="rating-3">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_THREE, OTHER_REVIEWS_RATING_STARS_THREE_ALT) . '</label>'; ?-->
</li>
<li>
<?php echo zen_draw_radio_field('rating', '4', '', 'id="rating-4" class="star"'); ?>
</li>
<li>
<?php echo zen_draw_radio_field('rating', '5', '', 'id="rating-5" class="star"'); ?>
<!--?php echo '<label class="" for="rating-5">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE, OTHER_REVIEWS_RATING_STARS_FIVE_ALT) . '</label>'; ? -->
</li>
</ul>
</div>
Much luck to you.
thank you, enzo, as soon as i have some time to spare i'll give it a go and refer back.
Has anybody upgraded ZC into version 1.5.3 using this template? I have 1.5.1 now and hesitating to upgrade ZC. So many files that are having an impact with this template!
Thanks for the update, will do as soon as I have time. A couple of questions, I'm still at Zen 1.5.1, would it be recommended to upgrade cart first and then Template?
BUG REPORT:
I'm not sure this classifies as a "bug" per say but the CSS directory contains a stylesheet.css & stylesheet.php file. Since this discovery, I've learned that inline styles, as generated by the stylesheet.php, override all other styles.
As a newb, this made customizing the look of this template an adventure. On discovering the nearly identical stylesheet.php, I deleted it and so far so good.
Despite the pain, I learned something today! As such, it was more than worth it! LOL!
I spoke too soon. Please DISREGARD my so called "bug" report. The stylesheet.php is necessary. Without it, changes made when configuring the tableau template in the admin panel will not be saved.
I will say this though as this happened to me: For those of you who are using Firebug or the like to determine where in the css files you would need to go to, to change a color or what have you; realize that when it reads something about an inline style and doesn't mention what file is being referenced for the styles you see, it's really coming from the stylesheet.php. (hows THAT for a run on sentence!)
Knowing this will save you a lot of time trying to figure out why changes you made to your stylesheets aren't taking hold.
If you do need to make changes to your stylesheet, it would be best to start in the template configuration admin panel. After that, add your changes that can't be made via the admin panel directly to the stylesheet.php... unless the same rules aren't duplicated in stylesheet.css... then you should probably add it there instead...
As you can probably guess, for the newb, such as myself, it can get really confusing if you're not paying strict attention.
I appreciate the hard work y'all at Numinix have put into this template and I would have loved the configuration settings that have been included in the new template configuration screen if it werent' for the fact that I am using background images in certain places instead of just colors.
As I'm currently using textures and not flat out colors, I can't use the admin template configuration screen. In fact, it made modifying the template much harder as it made managing the differences between stylesheet.css and stylesheet.php confusing and hard to keep track of.
For everyone who is only concerned with modifying the color scheme and NOT adding background textures; be sure to leave stylesheet.php alone. In my opinion, the new system the kind folks at Numinix added to the template configuration panel is actually really great!
All this said, if y'all at Numinix add the option to add background image textures in addition to the already included option to control the color scheme, your new system would go from really great to AWESOME!
Has anyone figured out why this error occurs?
Attachment 14470
One moment categories list fine, you add a product and BAM! This error pops up.
I can see the products loading on the front page carousel but if you search for a product or click on categories this error pops up.
I installed Tableau but it seems it was a good idea. My site is www.cryo64.com and now I finally found a comment where says why the banner wasn't showing. But now even I change the images it still showing the images in the demo. Only the first image that I replace it for the one that come in the demo.. THe categories are no more linkables. The nice images below showed in the demo don't appear. Please help!!! Thanks
Finally I resolved all the problems. THe banner works. I realized that the images only change if you modify the html code. Thanks Numinix! I hope to buy some of your stuff in the future. However I think to move to Prestashop, so I hope you sell modules for that. Thanks!
A new problem. Now customers are clamming for the DOWNLOAD BUTTON in theirs orders. Is missing!
I am currently trying to get the accordion on the product info pages to work. Has anybody had any success with this?
So far I have tried adding a column to the database in the table product_descriptions titled product_descriptions2. Then I have attempted to use the data from this table in the tpl_product_info.php template in the same way that the first description (product_descriptions) is referenced.
The first tab of the accordion (Product Description):
The second tab of the accordion (was called specification, now renamed to Ingredients):Code:<section class="tab-content">
<h3 class="tab"><?php echo TEXT_TAB_ACCORDION_DESCRIPTION; ?></h3>
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription1" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
</section>
So far this has not worked, and has only resulted in a blank specifications/ingredients tab.Code:<section class="tab-content">
<h3 class="tab">INGREDIENTS</h3>
<!--bof Product description2 -->
<div>
<?php if ($products_description2 != '') { ?>
<div id="productDescription2" class="productGeneral biggerText"><?php echo stripslashes($products_description2); ?></div>
<?php } ?>
</div>
<!--eof Product description2 -->
</section>
Any tips on how to get this to work?
Site is at: http://www.akin.co.nz/
Hi, I had the same question, ended up putting a signup form for my Joomla newsletter in there. I would prefer having them sign up to my Zen Cart newsletter obviously, but after reading this post from DrByte I changed my mind :) :
http://www.zen-cart.com/showthread.p...94#post1094494
Eventually I will put a Mailbeez sign up form there.
Hello
Installed this amazing theme. Many thanks to the developers. However I am stuck with image size issue. No matter what size i set in the Image Configuration tab, the images are locked by default to a specific size. Please guide me where am I going wrong.
Here is the link to my site http://mushi.in/estore/index.php?mai...ndex&cPath=152
In response to my own question!
It was actually quite easy to get the second description working. Just need to install Numinix Product Fields and then install the second description module. Then the second description will be enabled. If you have trouble running the SQL command (as I did) then try executing it from withing PHPmyadmin, and check that the table it is trying to create doesn't already exist. If it does exist then just exclude the statement to add a table. Hope this helps anyone who is confused like I was.
The image sizes are actually defined in the database and called by PHP. Maybe you can override with CSS, but if not...
If you want to change the size of the product image for example you will have to find out where in the database the PHP is referencing. To do this you need to locate the PHP file responsible for displaying the product image. In this case it is at /includes/templates/tableau/templates/tpl_modules_main_product_image.php.
After opening the file you can see that the database entry responsible for this particular image is MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT.
You can now find this and edit the value in phpmyadmin.
Be warned though. If you do change the values in the database then everywhere that Medium_Image is referenced will change size (which for me was perfect!).
After loading the files of tableau, the site goes blank, having only this text "WARNING: An Error occurred, please refresh the page and try again."
I can't access the admin either, it doesn't find it at all. The site had only a basic installation done with "classic", no products, nothing set up before the tableau installation.
The latest version of the template was used (via ZC plugins).
The ZC log says:
PHP Fatal error: 1146:Table 'customer123_ws153.ws153_template_configuration_group' doesn't exist :: SELECT * FROM ws153_template_configuration_group ==> (as called by) /home/omnirotor/public_html/shop/includes/init_includes/init_template_config.php on line 10 <== in /home/omnirotor/public_html/shop/includes/classes/db/mysql/query_factory.php on line 155
It seems no SQL was installed. How do I trigger it? The package has no separate SQL file to upload.
Hi,
I have installed this template and like it very much :smile:. However I have one problem, when I attempt to change the logo, social links or anything on the configure template page in admin it crashes my browser with the following error "Internet Explorer cannot read this webpage format" HTTP 406.
I have tested on 1.51 & 1.53 and get the same issue. Firefox & IE. I have tried reinstalling a new store but keep getting the same issue. Can anyone help.
Please.
Sorry bad post! Won't delete so edit to this.... Sorry :blush:
I have a categories in header but when I add categories they do not so up under it. How do I get them to so under it.
Any updates on why the first page of this template is so slow? I have been trying to work it out with no luck.
It's probably the product carousel on the first page. As I recall, there are too many products lined up for the carousel which causes the lag. Somewhere earlier in this thread was a method to limit the number of products in the carousel, speeding up loading. Don't recall how but it wasn't in admin but in the code for that module. Perhaps things have changed, though.
I got the SQL installed finally by installing all again from the scratch and now the template works.
How can I put the banner slides in a certain order? Now it seems that it goes in some kind of random order… I thought it would go in an opposite order so that the first picture I input will be the last of the slides but then it didn't go that way either. It could be the editing some slides mixes the order, and it seems it is not following any naming titles in alphabetical order, neither sort order.
Hi there.
Using latest version of template...
Excuse my stupidity, but I have loaded a few hundred products and categories into my Tableau ZenCart, but I can't figure out how to get the js-nav-menu to work!
I know it must be something stupid I'm overlooking, but any guidance would be appreciated.
Cheers
Chris
Hi, thanks for responding.
I think this might be a hosting issue, forum reading has pointed me towards sec_mod2 as being the problem. The only details I can find is http 406 Not Acceptable. With regards to error logs I don't know how to turn them on or where to find them, Doh!
FYI: Your template works well with 123 Reg (UK) and no problems, but GoDaddy return this error on multiple host accounts. GoDaddy support zen and offer installations via their Installatron so is beneficial for them to resolve this issue and seem keen to help.
I will let you know the result when they have finished their investigations.
Thanks
I have the same issue and can't seem to get it working despite trying to turn the tabs on/off. I'm on 1.5.3 and the carousel works intermittently, the drop down does not work and the header seems to be duplicated. I am not sure what to do.
http://oddbodkin(dot)com/1.5.3shop
Looking further, I'm throwing two errors: a 404 error on http://oddbodkin.com/1.5.3shop/inclu...v_hover_up.png
and a 403 Forbidden error on: http://oddbodkin.com/1.5.3shop/inclu...igrate.min.map
Neither file exists and I couldn't find them in any iteration of tableau. I really want to get this template working properly because it's gorgeous!
Glad to hear that there will be a fix for carousel soon. But is this the only thing causing the extremely slow first page load. I have been investigating with New Relic and it looks like minify is having some strange issues (especially as I do not have it enabled).
Attachment 14695
I'm also encountered the same problem with my recent installation. I've tried reinstall a few times...problem still persist. I have tried with turned ON and OFF for both my catergories in Layout Boxes Controller & Categories Tab Menu ON/OFF in Layout Setting.
Anyone has any clues for me? Your kind assistance is very much appreciated. Thanks.
Hello - you might need to reinstall 1.3.1 of Tableau as we just tried installing it on a vanilla ZC and have had no problems with the drop down menu. Please follow all installation instructions provided in the documentation. Please let us know if the problem continues.
If it does please check your logs files inside of your logs directory which can be found at YOUR_CATALOG => Logs and let us know if there are any issues there. Thanks!
Where doe the files for the template go in Zencart 1.5x?
I downloaded the template, unzipped it, and changed the two folders the instructions said to change for my website. I then uploaded the whole folder (tableau) that included the folders docs, and the one changed to the name of my catalog to the TEMPLATES folder in my zencart. When I go into Admin it is not seeing the template although the other templates there are showing.
Hey! Thanks for the question. The way you install tableau is the same way you would with the majority of Zen Cart plugins. All the folders within the YOUR_CATALOG directory match the folder structure of Zen Cart. You should upload these files into the appropriate directories.
Just an update we recently found a bug with the category drop down in relation to Zen Cart installs that use DB Prefixes. We have submitted a patch of Tableau to fix this bug to ZC (V1.3.2). Please watch for when that release gets released.
Thank you for the response. In my 1.5X version of Zencart, some of the folders in the template are not present. For example, there is a bmz_cache" folder with the template but there is not one in the installed cart to copy the contents of that folder to. In the "cache" folder, for another example" there is no nmx_disk_Cache folder as there is in the template; no "cron" folder under YOUR_CATALOG directory, etc. I may be over-thinking the problem, but based on your note am I correct that if there is no folder of the same name I just copy that folder over and if there is a folder of the same name I just add the files from the template folder to that existing folder?
How can I disable the carousel? I thought I had before, but still had massive loading times. I would like to remove it completely to see if it makes any substantial difference.
Thanks in advance
Thanks for the free and wonderful template. I really like it. In the process of customization I found there are 2 issues. I fixed the first one. Still working on the second one.
1. "Add to Cart"button is just "80px" so it show up as half. Only "Add to" appears and the rest is truncated. Need to edit includes / templates / tableau / css / product_info.css and add a specific value in that part "width:160px;".
2. It seems like all products being listed under "Best sellers" by default even though there is no sale at all.Code:#cartAdd .button_in_cart {
width:160px!important;
background: none;
cursor: pointer;
border: 1px solid #fff;
color: #caf200;
font: bold 18px Asap, Helvetica, sans-serif;
margin: 0;
padding: 10px 15px;
text-transform: uppercase;
Hi Everyone,
I have installed this template and really like it, thank you.
My main problem is when I click on a category my side boxes show up just like I want them to.
Like on this page
But they don't show up on my landing page. Is there a way I could get them to show up on the left side on this page.
I'd like the sidebox on this page as well
I've been reading for days, and trying different setting but I can't seem to figure this one out. :frusty:
Thank you,
Linda
SLOW FIRST PAGE SOLUTION!
So I have been struggling with an extremely slow load time on the first page. After trying other ideas and solutions in this thread, and having no joy, I decided to route out the issue by deconstructing the index bit by bit.
Turns out the cause of my 7-15 second loading time is actually the code that calls and displays the RSS feed for the Our Blog section under the carousel!
When I was modifying the template I removed the functionality of this column, but apparently left the part of the code that calls the RSS. I'm guessing that the reason for the slow load is that the server is trying to fetch the RSS feed data, or it is simply just badly coded.
So to fix the epic loading time just remove the code that fetches the RSS feed and displays it. To do this:
1. BACK UP!
2. Open to edit /YOUR_CAT/includes/templates/tableau/templates/tpl_index_default.php
3. Remove from just under <!-- end/about us --> (around line 180) through to <!-- end/our blog --> (around line 230)
4. If you like you can replace the code with the following to add a column in place of the one you removed. Customise as you like.
Note: Edit the red bits how you like.Code:<div class="content--column">
<div class="content--header">
<span class="ico is-blog"></span>
<h3>Blog</h3>
<span class="content--intro">
</span>
</div>
<div class="content--body">
<!--span class="blogdate"><?php //echo date('D, j M Y', strtotime($item_date[0])); ?></span-->
<p class="content--text">Here is some text in place of the the blog that was slowing the whole site down!</p>
<a href="/index.php?main_page=page&id=15" class="button">Read More</a>
</div>
</div>
Hope this helps anyone suffering from this issue. It is a shame the blog functionality doesn't work but I am sure it can be fixed.
hi, i'm the process of updating both cart and template. i've done it on a test site, which is curretly working on 1.5.3 and tableau 1.3.2
so tonite i started to do the template on live site with 1.3.3, it all looks fine a part a very big problem. don't know for what reason, the header just duplicate itself right in the middle of the screen. this happened to the test site as well, and it only happens when the Numinix Disk Cache is enabled, no problems when it is disabled, on both live and test site.
i am now uploading a backup to the live site, but if you would like to have a look check here
please note, there is some problem with images not showing as well on the test site, but this did not happened on the live one. server is the same. any help or hint would be very appreciated
http://test.londonsatman.co.uk/
Anyone figure out how to change the tab that the carousel start on from "Best Sellers" to "Featured"? Read a few posts a while back and managed to change the order of the tabs, but not which one appears first/open.
Can anyone tell me where I can edit the background header and fooder colors? I've attempted in the global configuration and keep getting an error. Thanks
Thanks for the reply, but when I try to save the configuration, I receive this error:
An appropriate representation of the requested resource /vvad1029/template_select.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
That's why I was trying to change it manually.
Hi, I have just installed this and selected this template and now totally lost my admin. I get an error message:
1050 Table 'zen_hide_categories' already exists
in:
[RENAME TABLE hide_categories TO zen_hide_categories]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
What do i do to get it back? Plus there is no table called hide categories. How do I get it back to the old template which worked?
Thanks.
I am loving the looks of Tableau. Only I can't seem to find out how to change the title on the accordion that says "FEATURES".
As you may know... What is automatically generated in this area when a customer expands this tab are things like Model #, Product Weight, etc. So I don't think "FEATURES" is really the best description for this section.
I've spent days and nights pouring through files and code trying to figure out how and where to (make what I thought would be a simple) change to the title of this tab - I'm at my wits end, feeling dumb and frustrated.
I'm hoping one of the smart :bow: experts here, will be able to explain to me how and where to change this tab's title - like I'm a three year old.
:please: - 'cause the lack of sleep over this one has turned my brain to jello :bangin:
I tried to change some configurations after hovering over the Tableau icon and clicking configure... the configuration page is OK but when I try to save any change I get a Forbidden message which says that I don't have permission to access the template_select.php file in the admin (renamed) folder
It's the latest Tableau version in a 1.5.3 clean install with no modifications of any sort that seems to work with no issues so I imagine I'm missing something stupid... any hints or suggestions?
Thanks and happy new year :)
Yes Numinix, you were right and it was an issue caused by the mod_security... I got in touch with namecheap.com, they have white listed the necessary rules and the template configuration now works as expected.
Great and prompt support from both Numinix and Namecheap... excellent :smile::smile:
Flavio
Hi,
This is a very wonderful template and I plan to use it for my next upgrade to 1.5.3
Currently I am testing it, and would like your help to resolve it.
The in Categories (Header)menu the second level box opens from top ( and it's height is equal to Category 1 level Box),
I want it to do following:
1) open right adjacent to parent category
2) Size of Category Level 2 Box to be relative to number of category only, (not full box)
Currently it is like this:
Attachment 14818
I want it to look like this.
Attachment 14819
Please help!
Hi, this just happened to me. I quickly restored the admin as follows:
1. Open admin\includes\installers\tableau\1_3_2.php in a txt editor.
2. Comment out (//) lines 2 & 22 then save the file.
Worked for me. I don't know if this has any negative impact elsewhere but it solves my issue with no apparent affect. My template installed correctly up to current version 1.3.4 and appears fine. Maybe an expert might be able to advise.
I hope this helped.
This problem resolved itself...... Strange! I raised a ticket with GoDaddy and thought was leaning towards mod_sec2. They have advised they made no changes (but closed the ticket) and are unable to tell me what the issue was. My Zen logs were not generating any error reports and "apparently" neither was the server....... Anyway works lovely...... Thank you.
Hi everyone.
Is anyone able to help with getting twitter running?
I have supplied the information required in twitter/index.php and added the Twitter Account name via the admin. All I get is a flash message saying "searching Twitter..." and then nothing. Obviously I have checked the Keys & Tokens are correct.
Any suggestions would be good.
Cheers All
Highly unlikely that that's a safe change. No writable directory on your server should ever be directly referred to in an http URL. That's a security mess waiting to happen.
It would be better to to use '/home/your_username/public_html/cache/' or whatever the complete path for DIR_FS_SQL_CACHE is in your /includes/configure.php file.
So I was able to use Zen Cart fine then uploaded this template. The front end shows fine but the admin area wont load i get error
WARNING: An Error occurred, please refresh the page and try again.
All forms of refresh and using a different pc also didn't help.
I checked the error log and got
[08-Jan-2015 19:49:27 America/Detroit] PHP Fatal error: 1050:Table 'zen_hide_categories' already exists :: RENAME TABLE hide_categories TO zen_hide_categories ==> (as called by) /home/bienville/public_html/cart/zcadmin/includes/installers/tableau/1_3_2.php on line 3 <== in /home/bienville/public_html/cart/includes/classes/db/mysql/query_factory.php on line 155
When I check the 1_3_2.php line 3
$db->Execute("RENAME TABLE hide_categories TO ". TABLE_HIDDEN_CATEGORIES);
Does anyone have any ideas.
Please
Hello,
I'm adding images to the "about us" page. Where do I need to upload the image files?
Thanks!
Is there a way to disable the mobile site side of things love the main but I've always hated mobile websites. It's the only thing preventing me using this theme.
I can't seem to figure out how to remove it.
This one was also something that happened to me. I solved it as follows (updated from page 19 this thread).
1. Open admin\includes\installers\tableau\1_3_2.php in a txt editor.
2. Comment out (//) line 2 & then delete line 22 (only a curly brace } on this line) then save and upload the file.
Worked for me. I don't know if this has any negative impact elsewhere but it solves my issue with no apparent affect. My template installed correctly up to current version 1.3.4 and appears fine. Maybe an expert might be able to advise.
I hope this helped.
Hi,
This is a responsive template. All in one system with screen resolution deciding which css version to show. Have a look at stylesheet_responsive.css (includes/templates/tableau/css/stylesheet_responsive.css) as a starting point.
I started using this one a little while ago and like it very much. A little heavy with css but FireFox Element Inspector is a useful tool.
Regards
I'm trying to add my wordpress blog to the appropriate section per the Numinix instructions. I've followed the directions exactly. What am I doing wrong? I've tried all of the wordpress.org directions, also.
http://www.metaldetectingandotherstu...Blog/?feed=rss
http://www.metaldetectingandotherstu...log/?feed=rss2
http://www.metaldetectingandotherstu...Blog/?feed=rdf
http://www.metaldetectingandotherstu...log/?feed=atom
What am I doing wrong? I just want to get back to selling metal detectors. lol
Thanks for any input.
Ray