X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   X-Cart Smart Template v4.4.x (https://forum.x-cart.com/showthread.php?t=55088)

Mudjocky 01-25-2011 12:22 PM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by PhilJ
chamberinternet, look for and change the height in #st_footer_center { ... }

mpepel, make sure you have added international titles/descriptions etc. for your products (?)

ilter, IE8 will run sluggishly if you have all features enabled on the homepage. Chrome, FF etc. all run nicely.

Mudjocky,
Featured Products - skin/smart_template/custom/featured_xxxx.tpl (carousel or pager) - Insert {$f_products[product].productcode}
New Products - skin/smart_template/custom/featured_new_products.tpl - Insert {$n_products[product].productcode}
Random Products - skin/smart_template/custom/featured_new_products.tpl - Insert {$r_products[product].productcode}

The new and random products functionality requires further customisation, in order to appear on category pages.


Cant get this to work.....suggestion?

PhilJ 01-26-2011 08:09 AM

Re: X-Cart Smart Template v4.4.x
 
To fix the incorrect display of bonus points, please do the following...

1) skin/smart_template/css/altskin.css

At the bottom insert...
Code:

/*----------------------------------------*/
/**
* Bonuses view
*/
.bp-icon-header {
height: 35px;
text-align: center;
vertical-align: middle;
color: #ff6d00;
font-weight: bold;
font-size: 18px;
background: transparent url(../../common_files/modules/Special_Offers/images/bp_icon_top_middle.gif) repeat-x;
}
.bp-icon-footer {
height: 19px;
text-align: center;
vertical-align: middle;
color: #fff;
font-weight: bold;
font-size: 10px;
white-space: nowrap;
background: transparent url(../../common_files/modules/Special_Offers/images/bp_icon_bottom_middle.gif) repeat-x;
}


2) In skin/smart_template/custom/css/common.css

Find and delete or comment out this line (around line 263)...
Code:

td { padding: 3px; }

3) Run cleanup.php

mpepel 01-26-2011 10:02 AM

Re: X-Cart Smart Template v4.4.x
 
PHIL,
Sorry, language in New Products still doesn▓t work. I think it has to do something with
Code:

{if $config.Smart_Template.st_featured_simple ne "Y"}
        {include file="customer/simple_products_list.tpl" products=$n_products}

in skin/smart_template/custom/featured_new_products.tpl.
When I change n_products to products=$f_products √ works perfect; also products=$products √ works OK. But $n_products is not translating at all.
I appreciate for any help.

Klemens
www.rozmach.com

Mr. G 01-26-2011 12:55 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Phil,
Can you get to my question here, please? http://forum.x-cart.com/showpost.php?p=307209&postcount=159
Thanks!

PhilJ 01-26-2011 01:22 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Mr. G, sure, here we go...

1) Turn off the category caching, as it's buggy. You can do so from 'Modules > Flyout menus'.

2) skin/smart_template/css/altskin.css

Replace...

Code:

font.bread-crumb {
  font-size: 1.0em;
}


with...

Code:

font.bread-crumb {
  font-size: 1.0em;
line-height: 1.5em;
}


3) skin/smart_template/customer/authbox.tpl

Remove class="last" from ...

Code:

    <li><a href="help.php?section=Password_Recovery" title="{$lng.lbl_forgot_password|escape}" class="last">{$lng.lbl_forgot_password}</a></li>

Then after, insert...

Code:

<li><a href="xxxx.html" title="xxxx" class="last">xxxx</a></li>

4) You can use any of the default jQuery easing styles.

This is the carousel plugin used if you want to customise further.

Just a heads up, I recently noticed is that the carousel slows down considerably in IE if you have Cufon enabled in the smart template settings...

To remedy that, do the following...

1) skin/smart_template/custom/featured_carousel.tpl

Change...

Code:

<h3><a href="product.php?productid={$f_products[product].productid}&amp;featured=Y">{$f_products[product].product}</a></h3>
To...
Code:

{if $config.Smart_Template.st_cufon eq "Y"}<h4>{else}<h3>{/if}<a href="product.php?productid={$f_products[product].productid}&amp;featured=Y">{$f_products[product].product}</a>{if $config.Smart_Template.st_cufon eq "Y"}</h4>{else}</h3>{/if}
2) skin/smart_template/custom/css/common.css

After...
Code:


ul#feat_carousel .feat_block h3 { width: 90%; height: 60px; margin: 0; padding: 0; font-weight: bold; font-size: 1.2em; }
ul#feat_carousel .feat_block h3 a { text-decoration: none; }

Insert...
Code:


ul#feat_carousel .feat_block h4 { width: 90%; height: 60px; margin: 0; padding: 0; font-weight: bold; font-size: 1.2em; }
ul#feat_carousel .feat_block h4 a { text-decoration: none; }


Mr. G 01-26-2011 02:45 PM

Re: X-Cart Smart Template v4.4.x
 
Thanks Phil!
1. I added my $.02 to the bug report.
2. Looks great!
3. Oops. I want to add an <li> to the box after login...

PhilJ 01-26-2011 03:27 PM

Re: X-Cart Smart Template v4.4.x
 
3) In that case, just add the same code after...
Code:


<a href="javascript:void(0);" onclick="javascript: setTimeout(function() {ldelim}document.loginform.submit();{rdelim}, 100);" class="last">{$lng.lbl_logoff}</a>
</form>
</li>


bhal@inforeem.com 01-26-2011 05:05 PM

Re: X-Cart Smart Template v4.4.x
 
Dear Phil,
I am facing a problem on Checkout page where on the right side of page few menu items like Shopping Cart | Contact us are overlapping with My Account and Sign Out.

Thanks.
http://forum.x-cart.com/attachment.p...2&d=1294260931
__________________
x-cart 4.4.1

sabinudash 01-27-2011 01:15 AM

Re: X-Cart Smart Template v4.4.x
 
In Chrome browser, site logo appears towards the center of the page. Any suggestions to fix it?

It appears fine on firefox and IE though.

jondoe 01-27-2011 06:17 PM

Re: X-Cart Smart Template v4.4.x
 
Hi phil, I've posted new products through importing csv but the new products aren't shown in the New Product's panel. Do you know why?

PhilJ 01-27-2011 07:17 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Jon, new products go by the "add_date" database field.

If you can, reimport your new products with the "add_date" as zero.

They should then appear as new products.

PhilJ 01-27-2011 07:21 PM

Re: X-Cart Smart Template v4.4.x
 
sabinudash, I'm not seeing that, screenshot?

Bhal, please post a ticket, I'll try and help

sparker2 01-28-2011 09:16 AM

New Products
 
Phil, as far as the new products go, is there a way to show only new products from the last 30 days? I am not understanding how the mod determines the new products.

masada3336 01-31-2011 04:27 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Phil,
Just real quick - do you know how I can assign a unique categories.tpl based on a category id? I need to remove the "buy now" button for one single category.
Also, I've tried to find a way to have a unique home_3col.tpl based on category id (I'd like to have a custom sidebar based on the category of products) but can't seem to find an answer on the forums.
Thanks!

Bullion Counter Inc. 01-31-2011 05:38 PM

Re: X-Cart Smart Template v4.4.x
 
Phil,

Fantastic template - appreciate your work.

Just a quick question on the horizontal categories (w/ flyout enabled):
I'm looking to bold the font, and increase the space between the category labels (preferably to nicely use up all available space in the horizontal bar). Can you direct me to the file where I might do that?

Thanks in advance.

MythNReality 01-31-2011 06:46 PM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by bhal@inforeem.com
Dear Phil,
I am facing a problem on Checkout page where on the right side of page few menu items like Shopping Cart | Contact us are overlapping with My Account and Sign Out.

Thanks.
http://forum.x-cart.com/attachment.p...2&d=1294260931


I am having the same problem. I think it's the customer greeting over lap with the speed bar.

By the way, sweet template, I must say!!!

raveworx 01-31-2011 08:07 PM

Re: X-Cart Smart Template v4.4.x
 
Does the Smart Template v4.4 support dynamically resizing the number of products per row, based on the browser resolution? This feature is in v4.3 and I'm not seeing how to enable it in v4.4.

raveworx 01-31-2011 08:14 PM

Re: X-Cart Smart Template v4.4.x
 
Problem solved. I see this feature is called "Smart Columns" - for some reason, it wasn't turning on, but it's fine now.

Quote:

Originally Posted by raveworx
Does the Smart Template v4.4 support dynamically resizing the number of products per row, based on the browser resolution? This feature is in v4.3 and I'm not seeing how to enable it in v4.4.


sabinudash 02-01-2011 12:04 AM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by raveworx
Problem solved. I see this feature is called "Smart Columns" - for some reason, it wasn't turning on, but it's fine now.


Hi, I was looking for it as well. Will you please post where I can find this feature to enable?

sabinudash 02-01-2011 12:27 AM

Re: X-Cart Smart Template v4.4.x
 
1 Attachment(s)
Money-saving percentage display on product detail page does not show correctly on my store. Screenshot attached.

When 'Our price' is below 'Market price', percentage saving should appear on 'Description' tab.

Would anyone please help me fix this issue?

Many thanks.

------------
EDIT: Resolved @ #158. Thanks.

Mr. G 02-03-2011 02:37 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Phil,
I was researching for the answer to the Q1 question in this post http://forum.x-cart.com/showpost.php?p=305892&postcount=122 and didn't see any reply. Can you answer, please? Thank you.

ScrapbookSupplies 02-03-2011 04:39 PM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by Mr. G
Hi Phil,
I was researching for the answer to the Q1 question in this post http://forum.x-cart.com/showpost.php?p=305892&postcount=122 and didn't see any reply. Can you answer, please? Thank you.


Mr. G,
I might be very wrong on this, but it seems like I read something about a tabs tpl file that you can move these around in. While you're waiting for Phil you might want to look at the tpl files. This might have been in the install file. Hope it is of some help. :lol:

ScrapbookSupplies 02-03-2011 04:47 PM

Re: X-Cart Smart Template v4.4.x
 
Hi Phil,
I have a laundry list that I need some help with, if you don't mind. :lol:

First, my templates are not working when I create the html catalog. Is there somewhere that I need to add the css link to?

Second, The pop up windows for sign in, TOS, Shipping Cost Estimator, etc. default to a bright blue. This is okay on one site but the others use different color themes. Actually for some reason those little boxes (on their own, as far as I know) changed sizes and are not displaying wide enough for their contents now, but I don't think that's related to the template.

Third, The three column layout doesn't show a "checkout" link when someone adds something to their cart, they have to click "view cart" and scroll down to the "checkout" button. Is there a way to fix this? I saw it was showing on someone else's site.

Fourth, (please don't throw shoes at me - I have been putting off troubling you), when I comment out the code in the prnnotice.tpl file it throws a js error, is there something that you can think of that needs to not be commented out in this file? I am trying to comment out the code to get rid of the "Powered by xCart" logo on the printable pages.

Finally, this is the biggest issue at hand right now.... On my sister's site (www.knifegirl.com) she has waaayyyyy too many categories (she can't help herself). The categories fall to the second line but the black bar doesn't stretch with it. I couldn't see in the css where I could make that bar taller - I need to make it taller or just comment out the links entirely, where the bar is blank (removing the links and just having a plain black bar would be better).

Thanks so much Phil!
Jeanne

PS. Any hopes of you doing a customization for xPayments so it can all match?

Thanks again - YOU ROCK PHIL!!!

Soft-Reseller.com 02-03-2011 07:28 PM

Re: X-Cart Smart Template v4.4.x
 
Hello

I have just installed the template. Really the installation was very easy and I never feel that I might do some thing wrong.

It gives a great new look to my website.

I am writing points as I am digging in the templates and soon will share my views on the template.

Till now a great template.

Please Phil, don't mind for this untidy comment because I am working hard so can make my site up.

Best wishes and regards
Kashif Rashid

Henry 02-03-2011 07:39 PM

Re: X-Cart Smart Template v4.4.x
 
I would just like a response to my problems with this template. I have sent numerous support requests that have gone unanswered. I paid for the product and installation and a little support would be nice. Any help here would be appreciated.

Soft-Reseller.com 02-03-2011 11:07 PM

Re: X-Cart Smart Template v4.4.x
 
Hello

I want to place a 468x60 banner on top of the site. I have tried several ways to edit header.tpl but can't place the banner in exact position.

What I need is

http://demos.soft-reseller.com/x-cart/forum_pics/top_banner.png

If somebody can help me.

Regards
Kashif Rashid

Freakmode 02-03-2011 11:49 PM

Re: X-Cart Smart Template v4.4.x
 
Hey Phil

When we purchased the upgrade for ST 4.3 it came with a product called "Smart Comments" Is this product no longer supported or did it not work?

We never installed our copy but I can't seem to find a demo of what is was.

Thanks again for all your help we are now live and running on ST and 4.4

Soft-Reseller.com 02-04-2011 03:24 AM

Re: X-Cart Smart Template v4.4.x
 
Hello

I am facing little problem.

In detail description of a product I am using iframe.

The details with simple details shows in full Tab space.

http://www.soft-reseller.com/eshop/WinRAR.html
http://demos.soft-reseller.com/x-cart/forum_pics/description_without_Iframe.png

and where I use iframe and call a webpage there it shows like this

http://www.soft-reseller.com/eshop/AVG-PC-TuneUP-2011.html
http://demos.soft-reseller.com/x-cart/forum_pics/description_with_Iframe.png


I use iframe

1. To save space used in database
2. A single page is called on every website.
3. making change in simple html file shows change on all sites.

Please help me

Regards
Kashif Rashid

Soft-Reseller.com 02-04-2011 03:36 AM

Re: X-Cart Smart Template v4.4.x
 
Hello

I forgot to put code i am using for iframe.

HTML Code:


<IFRAME align=center src="AVG-003.html" frameBorder=0 width="100%" height=1200></IFRAME>


Regards
Kashif Rashid

Henry 02-04-2011 05:19 AM

Re: X-Cart Smart Template v4.4.x
 
Support for Smart Template seems to be non existent at this time. I am needing to hire someone that can correct some issues that I currently have with this template. Side Menus not showing on the product details page and the search bar is missing on all pages. I am needing someone that can start on this right away. Please PM me with your details. Thank You.

BBM_ 02-04-2011 06:20 AM

Re: X-Cart Smart Template v4.4.x
 
Has anyone been in contact with Phil at all recently? (within the last week?)

Soft-Reseller.com 02-04-2011 06:36 AM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by Henry
Support for Smart Template seems to be non existent at this time. I am needing to hire someone that can correct some issues that I currently have with this template. Side Menus not showing on the product details page and the search bar is missing on all pages. I am needing someone that can start on this right away. Please PM me with your details. Thank You.


Hello

I am a newbie with very little knowledge of PHP but I was thinking what you might have done so getting errors.

I have followed the steps given on

http://www.xcartmods.co.uk/demos/smart/install/install.html

and did it very well and it is very easy to install. I am not getting error related to installation.

You may try to install a fresh copy. Hope it will help you.

Regards
Kashif Rashid

open 02-04-2011 08:16 AM

Re: X-Cart Smart Template v4.4.x
 
Re: http://forum.x-cart.com/showpost.php?p=308276&postcount=192
( Try the attached, in connection with the new product mod, there's no paging.)
I have followed the tutorial above but upon using this method in Opera 11.01 I get a white line running down the right side of the screen from √ contact us to footer √
Anyone have any ideas?

Also I have implemented the FREE Latest News and Products RSS Feed Generator
Bundled with smart template v4.4x but I have a rss button ( rss_products.xml) in the incorrect place this is on fire fox and explorer also. The rss_news.xml seems to be fine.

Anyone had the same thing.
http://www.openukonline.com/24hr/store/home.php
http://www.openukonline.com/1images/help.jpg
Thanks
Alan

PhilJ 02-04-2011 11:16 AM

Re: X-Cart Smart Template v4.4.x
 
As occasionally occurs, we have received a large number of support tickets at once. I am working through them gradually.

Most issues can be easily recified. First check the basic FAQ's

The template is entirely CSS based, so you will need to at least have a basic knowledge of CSS in order to perform design changes. That is why we strongly suggest you use something like Firebug to find specific CSS classes.

If you're having layout issues, retrace what you did and try again. Always make backups. We can't be held responsible for every single mistake.

Re. Smart Comments, something was changed in v4.4.2 that mysteriously stopped the module working completely - I am working on a fix.

open 02-04-2011 01:52 PM

Re: X-Cart Smart Template v4.4.x
 
HI just had a look at http://www.xcartmods.co.uk/demos/smart/demo442/
this demo also has the white line down the right hand side when viewed in Opera Version
11.01

any ideas anyone?

Mr. G 02-04-2011 02:39 PM

Re: X-Cart Smart Template v4.4.x
 
fyi Opera has 2.5% of the browser market share. I wouldn't worry about such a small number of shoppers that will have to deal with a small appearance issue. Just my opinion :cool:

PhilJ 02-04-2011 03:13 PM

Re: X-Cart Smart Template v4.4.x
 
open, I just tested Opera and see no issues. Maybe your text size is enlarged. Try pressing CTRL + 0 (zero).

JacksmithxD 02-04-2011 06:09 PM

Re: X-Cart Smart Template v4.4.x
 
Everyone needs to REMEMBER that they only bought a TEMPLATE.

:roll:

hoskar10 02-05-2011 09:35 AM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by PhilJ
Smart Tabs are now fixed to work with clean URLs and improved. Updated files will be sent out.


Hello!

Can you add Description and Product class data into smart tabs?
Like on this site: http://www.campingstore.se/SERVISSET-16-DELAR.-SIENNA.-WE-CAMP.html

Description = Produktinformation
Product class = Specifikationer

/Henrik

open 02-05-2011 01:58 PM

Re: X-Cart Smart Template v4.4.x
 
Quote:

Originally Posted by JacksmithxD
Everyone needs to REMEMBER that they only bought a TEMPLATE.

:roll:


HI,
We all purchased xcart also and over 218,400 posts for help in the forums do show that asking and reading will get you the solution and improved features you are looking for. Then you can help other new users with your experiences. When researching what cart system to use the forum real life help files available will make a difference as to people's software choice. Keep up the super support people.


All times are GMT -8. The time now is 05:56 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.