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 Adapt Template (https://forum.x-cart.com/showthread.php?t=64553)

KCAutosound 09-04-2012 01:55 PM

Re: X-Cart Adapt Template
 
That did the trick. Cool deal. Got another one for ya. I know you have the Adapt Custom Product Fields which will show the Glossary and is great but how hard is it to implement your Glossary mod into the Feature Comparison so I can move it to a tab and do this to compare my systems.

http://www.kcautosound.com/images/forums/compair.jpg

Pitak 09-10-2012 05:27 AM

Re: X-Cart Adapt Template
 
Phil, 2 of the Custom Promo Badge options are not displaying in the thumbnails.
They are no.11 (download) and no.12 (on sale). The others are displaying fine.

JacksmithxD 09-10-2012 05:33 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by Pitak
Phil, 2 of the Custom Promo Badge options are not displaying in the thumbnails.
They are no.11 (download) and no.12 (on sale). The others are displaying fine.


Whats your URL I'll take a look, just inbox me mate. :D

JacksmithxD 09-10-2012 05:36 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by KCAutosound
That did the trick. Cool deal. Got another one for ya. I know you have the Adapt Custom Product Fields which will show the Glossary and is great but how hard is it to implement your Glossary mod into the Feature Comparison so I can move it to a tab and do this to compare my systems.

http://www.kcautosound.com/images/forums/compair.jpg


Hi KC, you should put a support ticket up and get some custom work done as it's time consuming on Phils part to make changes to custom code etc. This thread should be about Adapt, not personal custom changes for your website. :-)

On another note, you should try to fix your site before you do to much custom work, there seems to be quite a few .css issues as far as I can see.

http://www.xcartmods.co.uk/xcartmods.co.uk-assistance-installations-custom-work.html

PhilJ 09-10-2012 05:37 AM

Re: X-Cart Adapt Template
 
Quote:

That did the trick. Cool deal. Got another one for ya. I know you have the Adapt Custom Product Fields which will show the Glossary and is great but how hard is it to implement your Glossary mod into the Feature Comparison so I can move it to a tab and do this to compare my systems.

You can add the glossary to any elements, by wrapping this code around anything...

Code:

{if $config.Adapt.adapt_addon_glossary eq "Y"}<span class="glossary_highlight">{/if}
YOUR CONTENT
{if $config.Adapt.adapt_addon_glossary eq "Y"}</span>{/if}


Quote:

Phil, 2 of the Custom Promo Badge options are not displaying in the thumbnails.
They are no.11 (download) and no.12 (on sale). The others are displaying fine.

Pitak, thank you for reporting that, in skin/adapt/css/altskin.css

Replace...

Code:

ul.row_view li .product_block.promo10, .product_promo.promo00 {
    background: #fff url("../images/promos/10.png") no-repeat scroll left top;
}


With...

Code:

ul.row_view li .product_block.promo10, .product_promo.promo10 {
    background: #fff url("../images/promos/10.png") no-repeat scroll left top;
}

ul.row_view li .product_block.promo11, .product_promo.promo11 {
    background: #fff url("../images/promos/11.png") no-repeat scroll left top;
}

ul.row_view li .product_block.promo12, .product_promo.promo12 {
    background: #fff url("../images/promos/12.png") no-repeat scroll left top;
}


PhilJ 09-10-2012 06:12 AM

Re: X-Cart Adapt Template
 
Just a note for CDSEO users...

If your layout gets messed up when navigating to subcategories, you can apply this small fix...

In skin/adapt/js/adapt_custom.js

In line 6, replace...

Quote:

path: 'skin/adapt/css/grid/',

With the full path to your store...

Eg.

Quote:

path: 'http://www.yourstore.com/skin/adapt/css/grid/',

Use https:// if necessary.

Thanks to Jack for the heads up.

qwerty 09-10-2012 07:15 AM

Re: X-Cart Adapt Template
 
hi phil the code you said to change regarding altskin.css need to be changed you have it showing the same image promo 10

PhilJ 09-10-2012 07:19 AM

Re: X-Cart Adapt Template
 
oops, sorry, pasting error, fixed.

KCAutosound 09-11-2012 03:44 PM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by JacksmithxD
On another note, you should try to fix your site before you do to much custom work, there seems to be quite a few .css issues as far as I can see.


Yeah. That's kinda screwy. Seems to display fine in all other browsers but in Internet Explorer the header goes kinda nuts.

JacksmithxD 09-12-2012 05:34 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by KCAutosound
Yeah. That's kinda screwy. Seems to display fine in all other browsers but in Internet Explorer the header goes kinda nuts.


I've just went live, and mine seems fine. Hmm might be worth uploading the original .css files if you haven't touched them, same with the grid.css ones.

KCAutosound 09-12-2012 06:23 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by JacksmithxD
I've just went live, and mine seems fine. Hmm might be worth uploading the original .css files if you haven't touched them, same with the grid.css ones.


frustrating. I've replaced the CSS files with the originals, removed my live chat script and still hasn't changed anything. I have noticed that it's not pulling my Tweets in the window and in the header one of the drop menus is messed up so maybe a script issue. My test site is showing fine too so I'm going to have to go through the installation steps and see what I have missed or misplaced.

JacksmithxD 09-12-2012 06:43 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by KCAutosound
frustrating. I've replaced the CSS files with the originals, removed my live chat script and still hasn't changed anything. I have noticed that it's not pulling my Tweets in the window and in the header one of the drop menus is messed up so maybe a script issue. My test site is showing fine too so I'm going to have to go through the installation steps and see what I have missed or misplaced.


Have you replaced ALL .css files? as they're some in different folders. Since the issue seems to be mainly with IE, you could source the IE.css and swap it with the original, also the menus look like they might have something to do with the grid setup, replace those too. I'll see if I can be more specific when I get some spare time. :D

KCAutosound 09-12-2012 07:14 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by JacksmithxD
Have you replaced ALL .css files? as they're some in different folders. Since the issue seems to be mainly with IE, you could source the IE.css and swap it with the original, also the menus look like they might have something to do with the grid setup, replace those too. I'll see if I can be more specific when I get some spare time. :D


Replaced both the CSS files in the Adapt folder and the ones in the common_files folder and same results. I have noticed that the news ticker doesn't work either or the rounded corners on the mega menu don't show either.

JacksmithxD 09-12-2012 07:15 AM

Re: X-Cart Adapt Template
 
Would double check your install then, might of missed a step, happens quite easily! :)

Pitak 09-14-2012 09:12 AM

Re: X-Cart Adapt Template
 
Phil, I don't see the "Wish List" and "Gift Registry" links in the my account box.
Is this intentional? How do I add them in?

zgrumendo 09-14-2012 10:37 AM

How to put in the Home and other buttons on the toolbar?
 
Hi... I'd like to put some static pages on the menu bar in addition to the Mega menu (which rocks!) how do I go about doing that?

Also, I have noticed that both the ink site and the car site are slow... is this due to the adapt template, or your servers... as I have noticed that my adapt template in development also appears to be slower than my existing template... not sure what that may be caused by...

Thanks!

PS... I had seen a couple of sites that had white backgrounds that Phil had posted in the past but I can't seem to find them... would like to see other sites that are based on this template... if possible.

PhilJ 09-14-2012 11:35 AM

Re: X-Cart Adapt Template
 
Quote:

Phil, I don't see the "Wish List" and "Gift Registry" links in the my account box.
Is this intentional? How do I add them in?

The Gift Registry link (giftregs.php) actually appears in the 'Special' side menu box.

To add Wishlist links, modify...

skin/adapt/customer/authbox.tpl
skin/adapt/addons/menus/header_dropdown.tpl

After...

Code:

    <li><a href="orders.php">{$lng.lbl_orders}</a></li>

Insert...

Code:

    {if $active_modules.Wishlist ne ""}
    <li><a href="cart.php?mode=wishlist">{$lng.lbl_wish_list}</a></li>
    {/if}


Quote:

Hi... I'd like to put some static pages on the menu bar in addition to the Mega menu (which rocks!) how do I go about doing that?

skin/adapt/addons/menus/header_mega_dropdown.tpl

Before the last...

Code:

</ul>

Insert...

Code:

<li><a href="#">Information <i class="icon-chevron-down"></i></a>
<ul>
<li><a href="#link1"><i class="icon-chevron-right"></i> Page 1</a></li>
<li><a href="#link2"><i class="icon-chevron-right"></i> Page 2</a></li>
<li><a href="#link3"><i class="icon-chevron-right"></i> Page 3</a></li>
</ul>
</li>


Or if you want dynamic static page links...

Code:

<li><a href="#">Information <i class="icon-chevron-down"></i></a>
    <ul>
    {foreach from=$pages_menu item=p name=page}
    {if $p.show_in_menu eq 'Y'}
    <li><a href="pages.php?pageid={$p.pageid}"><i class="icon-chevron-right"></i> {$p.title|amp}</a></li>
    {/if}
    {/foreach}
</ul>
</li>


Quote:

Also, I have noticed that both the ink site and the car site are slow... is this due to the adapt template, or your servers...

Your site can be as fast as you want it to be, it depends how prepared you are to optimise things.

Jack at the ink site has got his pages down to a insanely fast speed by adding Max CDN, optimising images, disabling unnecessary modules etc. etc.

Plus he's with a reputable x-cart hosting company, ie. not a budget shared host.

With any X-Cart store, it's best to keep things as simple as possible.

There's many tools to test your site as you optimise, one of which is Pingdom (yes I'm well aware of the performance of the demo).

totaltec 09-14-2012 12:12 PM

Re: X-Cart Adapt Template
 
Well hosting aside here is a comparison between Ideal_Comfort and Adapt

Ideal Comfort (stock X-cart 4.5.2 with just a few extras taken from http://trainingpen.com/manufacturers_carousel/) :
Total HTTP Requests: 217 Total Size: 1245430 bytes

Adapt (taken from http://demos.xcartmods.co.uk/adapt/):
Total HTTP Requests:228 Total Size:2760716 bytes

Now admittedly this is not just the difference in skin. The site would need to be identical in every other way to achieve a true comparison. Images play a large role, and the adapt template has the slider on the home page.

But initially it appears to me that adapt is not very "lite". It is a robust template with lots of extra features, so you can expect it to weigh a little more. For me the extra weight is pretty bad, I usually try to optimize X-cart to come in at around 120-130 requests and about 360-450kb after compression. (BTW neither of these sites are using compression)

PhilJ 09-14-2012 12:29 PM

Re: X-Cart Adapt Template
 
It's a feature-rich template, the demo has all features enabled... just how many of those features you wish to use is entirely up to you.

Much of the load comes from images, of which there are many on the homepage.

As mentioned, Jack managed to get his homepage to ~20 requests / under 350k (!), simply by adding Max CDN and disabling some features.

Every store owner should take steps to optimise their site wherever possible. Here's an insightful video I found.

JacksmithxD 09-14-2012 04:05 PM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by PhilJ
It's a feature-rich template, the demo has all features enabled... just how many of those features you wish to use is entirely up to you.

Much of the load comes from images, of which there are many on the homepage.

As mentioned, Jack managed to get his homepage to ~20 requests / under 350k (!), simply by adding Max CDN and disabling some features.

Every store owner should take steps to optimise their site wherever possible. Here's an insightful video I found.


As Phil says, I've done quite well with the speed of my site! Setting MaxCDN up was probably the best thing I've done, and I highly recommend it!

Heres a recent SS of my site speed: Tested from Amsterdam, Netherlands on September 15th. - Note i'm in the UK so it might even be slightly quicker if it was tested in London, I've only recently had this setup in the last 24-48 hours. :)

Granted my homepage hasn't got many modules enabled or an image slider running as of yet, but I've went from 8 seconds to 1.6-2 secs on average. It's very impressive what you can do if you don't bloat your site with rubbish. Phils demo has every feature and module enabled, so it will indeed be bloated, he is also with 1&1 (not saying it's a bad host but personally prefer Handsonwebhosting/EWD as they know x-cart very well)

As long as my site loads under 3-4 seconds I'm happy. I also tested my site with a module that shows Detailed images when you hover over a product image and the site pages were around 1.2MB and even then I could get that to load in around 2 seconds.

I'm sure I could do a lot more too, but I'm happy with the speed, it's awesome! :)

zgrumendo 09-14-2012 11:31 PM

Re: X-Cart Adapt Template
 
Can anyone help me? to solve the problem on the web that I am develop?

I already post here, but have not found a solution.
http://forum.x-cart.com/showthread.php?t=64834

the checkout process, when it will change the type of delivery or payment. I get this problem.

"An error occurred while processing a request. Please refresh the page.

If the problem still persists after refreshing the page please contact us on the matter."

And after clicking refresh page

"
Server error
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request."

thank you
muhammad hafidz istihori

Pitak 09-15-2012 12:04 PM

Re: X-Cart Adapt Template
 
Phil, 2 issues I'm having:

1. The Search for a category box only display results that are in the English language categories even though I'm on another language. Can you please provide a fix?

2. When I try to access the FAQs page http://domain/pages.php?pageid=1 (The link is on the Help pull down menu), it returned a 404 page.
I noticed that your demo site's FAQs page points to http://domain/FAQ.html. Is there an option somewhere to enable FAQ?

Thanks.

Regards,
Pitak

totaltec 09-18-2012 10:42 AM

Re: X-Cart Adapt Template
 
I've been looking real hard at this template, and I have to say I am very impressed. The level you have taken this to simply amazing. Rock on Phil!

zgrumendo 09-18-2012 11:08 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by totaltec
I've been looking real hard at this template, and I have to say I am very impressed. The level you have taken this to simply amazing. Rock on Phil!


How about your site.. what is it? It is crazy fast from one page to another.. ie.. no lag at all. Obviously highly optimized.. what have you done? Is it an x-cart site as well?

totaltec 09-18-2012 07:12 PM

Re: X-Cart Adapt Template
 
I'm an X-cart dev, its what I do full time. Yes it is optimized and its also an older version of X-cart which is leaner. I'm sure Phil's template could be optimized to be just as fast. It starts with your hosting of course, then it depends n your ability to optimize. Every site is different, and sacrifices have to be made sometimes to get things up to speed. Here is a thread where I recorded some progress notes while I optimized a client's site:http://forum.x-cart.com/showthread.php?t=62991&highlight=optimization
@Phil sorry for the OT.

Pitak 09-19-2012 10:24 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by Pitak
Phil, 2 issues I'm having:

1. The Search for a category box only display results that are in the English language categories even though I'm on another language. Can you please provide a fix?

2. When I try to access the FAQs page http://domain/pages.php?pageid=1 (The link is on the Help pull down menu), it returned a 404 page.
I noticed that your demo site's FAQs page points to http://domain/FAQ.html. Is there an option somewhere to enable FAQ?


Phil, the first issue isn't very important. But can you help to get the FAQs page to work?

PhilJ 09-19-2012 10:59 AM

Re: X-Cart Adapt Template
 
Quote:

Phil, the first issue isn't very important. But can you help to get the FAQs page to work?

I'm looking into the first issue.

To change the link to the Help > FAQs page, edit skin/adapt/addons/menus/header_dropdown.tpl

Look for this line...

Quote:

<li><a href="pages.php?pageid=1">{$lng.lbl_adapt_custom_f aqs}</a></li>

Adjust to whatever your FAQ static page ID is.

Pitak 09-19-2012 11:41 PM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by PhilJ
To change the link to the Help > FAQs page, edit skin/adapt/addons/menus/header_dropdown.tpl

Look for this line...



Adjust to whatever your FAQ static page ID is.

I have downloaded and edited the FAQ SQL patch from your template FAQ page, then re-patch the database with it. Now how do I display these on the static page?

PhilJ 09-20-2012 04:17 AM

Re: X-Cart Adapt Template
 
Quote:

I have downloaded and edited the FAQ SQL patch from your template FAQ page, then re-patch the database with it. Now how do I display these on the static page?

Add this code to your FAQ static page...

Quote:

{include file="addons/faqs/faqs.tpl}

Ensure you have this option checked in General Settings...

"Parse Smarty tags in the content of embedded static pages"

zgrumendo 09-20-2012 12:36 PM

Re: X-Cart Adapt Template
 
Phil,

As i was looking at this web site, http://www.robertsonpackaging.com/ which I believe is your 'previous' awesome template, I really liked the menu structure on the left hand side.. is there any way of using that on the Adapt template?


I also like the feature that you had on the top right hand corner tab for special offers...

Thanks again,

PhilJ 09-20-2012 02:01 PM

Re: X-Cart Adapt Template
 
1 Attachment(s)
Quote:

As i was looking at this web site, http://www.robertsonpackaging.com/ which I believe is your 'previous' awesome template, I really liked the menu structure on the left hand side.. is there any way of using that on the Adapt template?

It's possible, although the vertical flyouts wouldn't perform too well responsively, ie. in tablets or mobile devices.

I've given you the option of mega dropdown menu or dropdown/flyouts which should be sufficient, plus you don't really want to have two lots of multi-level menus running, as it may harm SEO and/or slow down your site.

But if you really want the vertical flyouts, get in touch.
Quote:

I also like the feature that you had on the top right hand corner tab for special offers...

If you'd like to add the page peel effect to your Adapt template, I've attached the files and instructions here :)

zgrumendo 09-21-2012 08:40 AM

Re: X-Cart Adapt Template
 
Quote:

Originally Posted by PhilJ
It's possible, although the vertical flyouts wouldn't perform too well responsively, ie. in tablets or mobile devices.

I've given you the option of mega dropdown menu or dropdown/flyouts which should be sufficient, plus you don't really want to have two lots of multi-level menus running, as it may harm SEO and/or slow down your site.

But if you really want the vertical flyouts, get in touch.

If you'd like to add the page peel effect to your Adapt template, I've attached the files and instructions here :)


Thanks Phil! When you say you have given us the mega dropdown or flyout... you are referring to the horizontal menu's or vertical? For the horizontal - I love the Mega Menu.. huge improvement to what I had before.. but for the vertical menu, the only option I could see is - the checkbox for:

Enable 2 level vertical sliding category menu

Is there anything else that I am missing as to options for the vertical menu?

Thanks again,

futurac 09-24-2012 05:02 AM

X-Cart Adapt Template
 
the template looks awesome, have many options ...

only problem is that my xcart is 4.3 and i need to upgrade it to 4.5.2..

zgrumendo 09-25-2012 12:33 AM

Re: X-Cart Adapt Template
 
http://imageshack.us/a/img803/4055/captureqy.png

I check after the lexity, will rise to the top of the page. Anyone know how to make the page does not rise to the top?

PhilJ 09-25-2012 04:16 AM

Re: X-Cart Adapt Template
 
Seems that Lexity adds considerable needless overhead, so probably best to disable it and just stick with Analytics.

espresso 10-07-2012 06:01 PM

Re: X-Cart Adapt Template
 
Phil, please tell me you didn't hijack BCSE's testimonial mod?
I believe they have a file testimonial.php which I believe you are replacing.

PhilJ 10-07-2012 09:17 PM

Re: X-Cart Adapt Template
 
No, is the straight answer to that.

vtalk 10-08-2012 03:33 PM

Re: X-Cart Adapt Template
 
1 Attachment(s)
Hi Phil
I just install the template to our test site, http://www.vtechplace.com/xcart

How do I disable the promotions box?
Thank you

PhilJ 10-09-2012 02:43 AM

Re: X-Cart Adapt Template
 
Quote:

How do I disable the promotions box?

In skin/adapt/customer/bar.tpl

Delete or comment out...
Quote:

{include file="custom/menu_promo.tpl"}

And / Or...

Quote:

{include file="custom/menu_image_rotator.tpl"}

espresso 10-10-2012 09:57 PM

Re: X-Cart Adapt Template
 
Quote:

Phil, please tell me you didn't hijack BCSE's testimonial mod?
I believe they have a file testimonial.php which I believe you are replacing.

Quote:

Originally Posted by PhilJ
No, is the straight answer to that.


Well, I've been using BCSE testimonials for many years. I installed adapt and voila, get ton's of sql errors.

As I mentioned, you name a file as "testimonial.php". I also find in your patch sql that you have a table named "testimonials", just like the mod from BCSE.

I know what you are going to say next: You can't test for every other mod.

Further, why use BCSE mod if your template has it all built in.

I am not going to argue with you.

For anyone that is installing the adapt template on an existing older version and is using BCSE testimonials: Export your testimonial table first with the help of phpMyadmin. You can then easily import it back into adapt. you'll need to tweak field names though. But this way, you'll not loose your testimonials from the old site.

Now back to the issue. Why is it that 3rd party developers, listed on the QT Marketplace don't have to adhere to some sort of quality standards ? Even QT, when it hijacked altered carts on sale mod violated file and table naming conventions.

I urge developers to prepend their file and table names with a unique identifier. Many of the major 3rd party mods are doing this already, a simple thing.

Phil, we are accustomed to your great mods over several years, just my 20 cents.


All times are GMT -8. The time now is 09:14 PM.

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