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

Conveyor belt slideshow javascript for Featured Items

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions
 
Thread Tools Search this Thread
  #41  
Old 05-19-2011, 02:03 AM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Quote:
Originally Posted by PhilJ
Here's a mod for featured products, based on this...
http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm

Hi PhilJ,

Excellent mod.Work perfectly on 4.4.2 versions.Can I able to call Our price , market price,Buy now button here additionally.

Then How to code??

Can you guide me?
__________________
4.6.1 Platinum


Reply With Quote
  #42  
Old 05-22-2011, 09:54 PM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Hi Glen,
Excellent work.Works fine on 4.4.2.Can I able to call Market price,Our Price,Buy Now Button additionally with this mod?

Can any one help me??

Thanks to all.
__________________
4.6.1 Platinum


Reply With Quote
  #43  
Old 05-26-2011, 03:35 AM
  Rajdeep's Avatar 
Rajdeep Rajdeep is offline
 

Senior Member
  
Join Date: May 2007
Posts: 115
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Excellent Mod.

How to call products name here,below the image uniformly??
__________________
X-Cart Pro 4.1.9
[Migrated from Gold 4.1.8 to Pro 4.1.9 - Feb 2008]
Add Ons: X-FancyCategories, X-Magnifier, X-FeatureComparison, X-SpecialOffers
Reply With Quote
  #44  
Old 05-26-2011, 09:42 AM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Quote:
Originally Posted by ProMuscles
I think that if you do not have uniform images the slideshow would be a little tacky for a site. However, if you had manufacturers instead of products I think it would be great. Is there anyway that this can be moddes to have the manufactures scroll across the page.

That is what I'm looking for too. With Google now requiring "brand" for every product, it makes a long list of manufacturers (we have around 200). Something like this that scrolls the manufacturer's logos would be great. Instead of the list in the menu that x-cart has by default, I just have a link to manufacturers.php. I was using a dropdown list using Javascript but it wasn't very SEO friendly and looked kink of tacky as well since the colors didn't fit in with the rest of the site.
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote
  #45  
Old 05-26-2011, 09:50 AM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Hi JWait,

Can you help me how to call products name and buy now button additionally in this scroller??

It is an excellent mod to call thumbnail image but I cannot able to call products name below the images.

How to call it??

can you help me??

Thank you.
__________________
4.6.1 Platinum


Reply With Quote
  #46  
Old 05-27-2011, 08:20 AM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: Conveyor belt slideshow javascript for Featured Items

For the Product Name, have you tried using {$products.product} or {$products.[product]}? In other words, whatever productid you are using in the "{" brackets.

As for a "buy now" button, I don't even know if it is possible, and may be beyond the scope of this mod.
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote
  #47  
Old 05-27-2011, 10:43 PM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Hi JWait,
Thanks for your help.I have called product name but the entire page distorted.

I have given my codes below-

{section name=product loop=$f_products}
leftrightslide[{counter}]='<a href="product.php?productid={$f_products[product].productid}">{$f_products[product].product}{include file="product_thumbnail.tpl" productid=$products[product].productid image_x=$config.Appearance.thumbnail_width product=$products[product].product tmbn_url=$products[product].tmbn_url}</a>'

{/section}

I want to call products name below or above thumbnail uniformly with text wrapping.

Here is my screen shot.
http://www.health-shoppe.com/FINAL/10.jpg
__________________
4.6.1 Platinum


Reply With Quote
  #48  
Old 05-28-2011, 07:01 AM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Quote:
Originally Posted by Learner
Hi JWait,
Thanks for your help.I have called product name but the entire page distorted.

I have given my codes below-

{section name=product loop=$f_products}
leftrightslide[{counter}]='<a href="product.php?productid={$f_products[product].productid}">{$f_products[product].product}{include file="product_thumbnail.tpl" productid=$products[product].productid image_x=$config.Appearance.thumbnail_width product=$products[product].product tmbn_url=$products[product].tmbn_url}</a>'

{/section}

I want to call products name below or above thumbnail uniformly with text wrapping.

Have you tried adding a "break" tag?
{section name=product loop=$f_products}
leftrightslide[{counter}]='<a href="product.php?productid={$f_products[product].productid}">{$f_products[product].product}<br />{include file="product_thumbnail.tpl" productid=$products[product].productid image_x=$config.Appearance.thumbnail_width product=$products[product].product tmbn_url=$products[product].tmbn_url}</a>'

{/section}
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote
  #49  
Old 05-29-2011, 09:42 PM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Hi JWait,

Thanks for your reply.After adding break entire page getting destructed and call twice repeatedly. Here is my screenshot-

http://www.health-shoppe.com/FINAL/11.jpg
__________________
4.6.1 Platinum


Reply With Quote
  #50  
Old 06-10-2011, 10:07 PM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: Conveyor belt slideshow javascript for Featured Items

Hi JWait,

How to solve the alignment issue? Can you help me ??
__________________
4.6.1 Platinum


Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions



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 02:06 AM.

   

 
X-Cart forums © 2001-2020