Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

X-Cart Smart Template v4.4.x

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #581  
Old 12-10-2011, 10:20 AM
 
SGS SGS is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 99
 

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

Pdub

Not sure if this will help but just in case, Smart Template 4.4.x has 3 updated pages that make it 4.4.4. compatible. One page deals with the home page. Might be worth looking at if you have not done so already.

Look at Post #473 in this thread:

skin/smart_template/customer/main/product_details.tpl
skin/smart_template/modules/Customer_Reviews/vote_reviews.tpl
skin/smart_template/customer/home.tpl

I thought there was another update given to fix the social book marks as well but am not sure if its a fix from Philj or QT?

Also, you might want to take a number and stand in the waiting line. Must be at least several dozen people waiting for Philj to resurface and resume working on fixes. I too am waiting for a few to be worked on.

Good Luck
__________________
Currently Using:

For X-cart v5.2.0
1 Business v5.2.6 license <Getting Better>!
1 Banner Mod 5.2.7 license
1 #28 iGoods Template

For X-cart v4.7.0

1 GoldPlus v4 license unused

3 Gold v4 license Unused

A wise man once said it is best to fix the cart instead of trying to use a broken cart. The horse has a very hard time pushing a broken cart!!
Reply With Quote

The following user thanks SGS for this useful post:
pdub (12-10-2011)
  #582  
Old 12-10-2011, 10:40 AM
 
vtalk vtalk is offline
 

Member
  
Join Date: Jan 2006
Posts: 28
 

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

Is http://xcartmods.co.uk/ down?
I receive the message
Forbidden

You don't have permission to access / on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
__________________
www.vtechplace.com
x-cart version 4.6.4 test
CDSEO Pro Ver 2.0, X-Cart reBOOT 3.0
Reply With Quote
  #583  
Old 12-10-2011, 10:42 AM
 
SGS SGS is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 99
 

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

Just wait awhile, it should be back up.
__________________
Currently Using:

For X-cart v5.2.0
1 Business v5.2.6 license <Getting Better>!
1 Banner Mod 5.2.7 license
1 #28 iGoods Template

For X-cart v4.7.0

1 GoldPlus v4 license unused

3 Gold v4 license Unused

A wise man once said it is best to fix the cart instead of trying to use a broken cart. The horse has a very hard time pushing a broken cart!!
Reply With Quote
  #584  
Old 12-10-2011, 11:09 AM
 
SGS SGS is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 99
 

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

The site is backup now.
__________________
Currently Using:

For X-cart v5.2.0
1 Business v5.2.6 license <Getting Better>!
1 Banner Mod 5.2.7 license
1 #28 iGoods Template

For X-cart v4.7.0

1 GoldPlus v4 license unused

3 Gold v4 license Unused

A wise man once said it is best to fix the cart instead of trying to use a broken cart. The horse has a very hard time pushing a broken cart!!
Reply With Quote
  #585  
Old 12-14-2011, 03:45 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

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

Minor update for the Smart Template dynamic search addon, to make it work better with Chrome and IE...

1) In skin/smart_template/custom/header.tpl

Remove this around line 80... (part of the search input field code - skip this if it doesn't exist)

Code:
fadeSearch();

2) Then in skin/skin/smart_template/custom/js/smart_dynamic_search/smart_dynamic_search.js

At the very end, replace...

Code:
// Hide dropdown onblur function fadeSearch() { // jQuery $('#ajax_listOfOptions').fadeOut('slow'); // non jQuery //var theSearchBox = document.getElementById('ajax_listOfOptions'); //theSearchBox.style.display = 'none'; };

With...

Code:
// Fade Out Search Dropdown on click elsewhere $(document).ready(function() { $("body:not(#ajax_listOfOptions)").click(function(){ $("#ajax_listOfOptions_iframe,#ajax_listOfOptions").fadeOut('fast'); }); });
__________________
xcartmods.co.uk
Reply With Quote
  #586  
Old 12-14-2011, 04:05 AM
 
PoC2 PoC2 is offline
 

Advanced Member
  
Join Date: Nov 2011
Posts: 65
 

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

Thanks for the heads-up Phil!

Is there a way to keep up with small changes like this? (Change file with pointers to updated files/code>)

or should we just follow this thread?
__________________
X-Cart 4.4.4
X-Cart Mailchimp
X-Cart Mods Smart Template
X-Cart Mods Advanced Videos
X-Cart Mods Thumbnail Candy
Reply With Quote
  #587  
Old 12-14-2011, 09:24 AM
  flyclothing's Avatar 
flyclothing flyclothing is offline
 

eXpert
  
Join Date: Aug 2004
Location: Gilbert, AZ
Posts: 357
 

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

I dont see the above "fadeSearch();" on line 80 in the header.tpl. I have this...


<div id="st_search">
<input id="st_search_input" name="posted_data[substring]" type="text" value="{$lng.lbl_product} {$lng.lbl_search}..." onblur="if(this.value=='') this.value='{$lng.lbl_product} {$lng.lbl_search}...';" onfocus="if(this.value=='{$lng.lbl_product} {$lng.lbl_search}...') this.value='';" {if $config.Smart_Template.st_dynamic_search eq "Y"}onkeyup="ajax_showOptions(this,'getProduct',ev ent)" onblur="this.form.submit();" {/if}/>
<input id="st_search_button" type="submit" value="" />
</div>
__________________
Jonathan
Flyclothing, LLC
PO Box 1490
Gilbert, AZ 85299-1571
P 480.422.7350
F 888.359.2568
www.flysportsgear.com?MMCF_xcartforum (X-Cart 4.5.2) FOR SALE
Reply With Quote
  #588  
Old 12-14-2011, 02:41 PM
 
info@ausnetit.com.au info@ausnetit.com.au is offline
 

Advanced Member
  
Join Date: Aug 2010
Posts: 35
 

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

Hi Phil

How do I connect products to countdown tpl file?
It's only display the MSG

Thanks
__________________
Chamath De Costa
Version X-Cart Gold.


Melbourne website design
SEO in melbourne
Reply With Quote
  #589  
Old 12-18-2011, 09:13 AM
 
yamadan yamadan is offline
 

Member
  
Join Date: Mar 2011
Posts: 27
 

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

Hi,

Is there a quick way to add a custom 404 page using this template?

Thanks
__________________
Gold 4.4.4
Reply With Quote
  #590  
Old 12-18-2011, 09:41 AM
  Mr. G's Avatar 
Mr. G Mr. G is offline
 

eXpert
  
Join Date: Nov 2010
Posts: 386
 

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

Quote:
Originally Posted by yamadan
Hi,

Is there a quick way to add a custom 404 page using this template?

Thanks
Check this post out: http://forum.x-cart.com/showpost.php?p=310221&amp;postcount=262

Please tell me if you get it to work. Because I didn't get it to work consistently, as I wrote on that post.
__________________
4.7.6 Gold Plus
XCartMods.co.uk Ultra Template
X-Cart Abandoned Cart
BCSE PayPal DPM
CDSEO Pro 2.1.8
BCSE Drop Shipper Pro
Google Rich Snippets
Time and money-saving tips I've learned as a webstore owner at http://ShoppingCart-Program.com
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 03:36 AM.

   

 
X-Cart forums © 2001-2020