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

X-Cart - reBOOT - Responsive Template

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #561  
Old 05-12-2014, 11:06 AM
  bigredseo's Avatar 
bigredseo bigredseo is offline
 

X-Man
  
Join Date: Oct 2002
Location: Omaha, NE, USA
Posts: 2,364
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Mike,

It's not in this thread actually, but here's the details:

X-Cart 4.6.1 (Business)
Reboot 2.2
IE: 11.0.9600.16659

I also SOMETIMES get it on the first page loading when in Chrome Version 34.0.1847.131 m

The website is http://www.synergydirect.com
Generally it's the main banner that on the first loading it shows at 50% height.

By default it's set to 100% height/auto, since it resizes based on the browser width. I've attempted using the CSS and @mobile etc to specifically set height and widths, but it doesn't seem to affect things in IE.

The next step is replacing the preloading images call and replacing the lazy loading of slides. Haven't done that, but will be attempting that tonight/tomorrow morning.

I briefly looked at replacing the slider with Soliloquay. I'm a huge fan of Soliloquay, a wordpress slider that kicks major butt - too bad they don't make a stand alone version though
__________________
Conor Treacy - Big Red SEO - @bigredseo
Search Engine Optimization & Internet Marketing - We Bring Your Website Out Of Hiding!
If you can't be found on Google, Bing or Yahoo, you pretty much don't exist on the Internet.
Omaha SEO Office with National & Local SEO Services
Hourly Consulting - great for SEO Disaster Recovery, Audits and DIY Guidance
Reply With Quote
  #562  
Old 05-12-2014, 12:19 PM
  totaltec's Avatar 
totaltec totaltec is offline
 

X-Guru
  
Join Date: Jan 2007
Location: Louisville, KY USA
Posts: 5,823
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by bigredseo
The website is http://www.synergydirect.com
Generally it's the main banner that on the first loading it shows at 50% height.
Actually when I first loaded it in IE, it rendered properly. Then when I closed the browser and came back, it didn't. Then refresh the page, loads fine. That is a frustrating problem to try and track down!

I like the woo flexslider myself: http://www.woothemes.com/flexslider/

Acts a lot better when resizing the browser in my opinion : here is an example in X-cart: http://www.ghpnutrition.com/

Edit:
Looks like it is initially getting its height from:
.owl-item.loading{
min-height: 150px;
background: url(../images/loading.gif) no-repeat center center
}
in skin/reboot/reboot_sliders_carousel.css

It sounds like you already suspect this, but the javascript that resizes based on height is using the lazy loading temp image to base itself on. so removing the lazyload will probably fix the issue. In the JS you should find:
// Banners Module
//---------------------
$(".banner_slider").owlCarousel({
autoPlay: 5000,
slideSpeed: 500,
paginationSpeed: 500,
transitionStyle: "fade",
pagination: true,
paginationNumbers: false,
lazyLoad: true,
singleItem: true,
items: 1,
scrollPerPage: true,
autoHeight: true,
responsive: true,
mouseDrag: true,
touchDrag: true,
navigation: false,
});
Try setting lazyLoad in the above code to false just to see if that affects it.
__________________
Mike White - Now Accepting new clients and projects! Work with the best, get a US based development team for just $125 an hour. Call 1-502-773-6454, email mike at babymonkeystudios.com, or skype b8bym0nkey

XcartGuru
X-cart Tutorials | X-cart 5 Tutorials

Check out the responsive template for X-cart.
Reply With Quote

The following user thanks totaltec for this useful post:
PhilJ (05-13-2014)
  #563  
Old 05-12-2014, 12:56 PM
 
designguru designguru is offline
 

X-Adept
  
Join Date: Dec 2010
Posts: 418
 

Default Re: X-Cart - reBOOT - Responsive Template

How to update? I know I can send in a ticket to get the files but how to maintain a child theme during the update when I had to re-structure for example the product page (html/tpl code) before?
__________________
X-Cart Pro 4.6.2 with many modules
X-CART Pro 4.4.1
Reply With Quote
  #564  
Old 05-13-2014, 01:53 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Conor, in skin/reboot/css/reboot_sliders_carousels.css

Replace...
Code:
/* preloading images */ .owl-item.loading{ min-height: 150px; background: url(../images/loading.gif) no-repeat center center }
With, eg.
Code:
/* preloading images */ .owl-item.loading{ min-height: 296px!important; background: url(../images/loading.gif) no-repeat center center }
With 296px being the largest scaled height of the slider images in desktop view.

You can set..
Quote:
autoHeight: false,
In skin/reboot/js/reboot.js
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
totaltec (05-13-2014)
  #565  
Old 05-13-2014, 03:32 AM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,
How can I set positions of the products in the manufacturer page.Currently I can set positions of the products in category page manually but how to do that on manufacturer level also?

Also in our store default search is not working reboot ajax search is showing one results but normal search is displaying different products.

Where is the mismatch?

Please provide me a solution.

Thanks.
__________________
X-cart Platinum
4.6.1
Reboot template
Reply With Quote
  #566  
Old 05-13-2014, 11:33 AM
 
Mak Mak is offline
 

Newbie
  
Join Date: May 2014
Posts: 6
 

Default Re: X-Cart - reBOOT - Responsive Template

Is this available/compatible with X-Cart 5?
__________________
X-Cart 5
Reply With Quote
  #567  
Old 05-13-2014, 12:05 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Is this available/compatible with X-Cart 5?
No only v4.6.x at the moment. X-Cart v5 is a completely different platform.
__________________
xcartmods.co.uk
Reply With Quote
  #568  
Old 05-14-2014, 04:29 PM
  jcorneli's Avatar 
jcorneli jcorneli is offline
 

Advanced Member
  
Join Date: Jul 2007
Posts: 74
 

Default Re: X-Cart - reBOOT - Responsive Template

I'm trying to get the two rss feeds setup on a cron job. I can't get the regular stuff to work. Are there any instructions anywhere.

php /home/username/public_html/reboot_rss_news.php

Thanks
__________________
www.usapolicesupply.com
v4.6.3

Xcartmods reBoot Template
WebsiteCM CDSEO Pro SEO
BCS Multipe Upselling Links
Firetank Feed Manager

BCS Product Importer Updater Pro
BCS Drop Shipper Pro
BCS Quote Request Module
BCS Printable Online Catalog
Reply With Quote
  #569  
Old 05-14-2014, 04:38 PM
 
elmirage001 elmirage001 is offline
 

X-Wizard
  
Join Date: Apr 2007
Posts: 1,964
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by jcorneli
I'm trying to get the two rss feeds setup on a cron job. I can't get the regular stuff to work. Are there any instructions anywhere.

php /home/username/public_html/reboot_rss_news.php

Thanks

This is working for me

lynx -dump http://www.YOUR_URL/reboot_rss_news.php
__________________
X-Cart GoldPlus v4.7.12 | reBOOT (reDUX) Template v4.7.12.9 | Always The Best
Reply With Quote

The following 2 users thank elmirage001 for this useful post:
jcorneli (05-15-2014), PhilJ (05-14-2014)
  #570  
Old 05-15-2014, 11:06 PM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by xtech
Hi Phil,

In our store default search is not working reboot ajax search is showing one results but normal search is displaying different products.

Where is the mismatch?

Please provide me a solution.

Thanks.

Any solution for this issue?
__________________
X-cart Platinum
4.6.1
Reboot template
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 07:52 AM.

   

 
X-Cart forums © 2001-2020