Page 1 of 1

Sellerdeck Mobile Theme

Posted: Sun Aug 24, 2014 2:25 am
by AndyBo
I have changed one of our websites to use the Mobile Theme from Sellerdeck.

After importing the Sellerdeck design I reimported the Dynamic Choice Design and made the changes as per the readme file.

The Dynamic Choices are no longer working on the live website (should change the main image) although they work fine in the Sellerdeck preview window and also if I preview the current page in both IE and FF.

I have tried looking to see what the differences are using Firebug and all I can see is that the file site calls "http://www.giftmill.co.uk/cgi-bin/dx000001.pl" whereas the preview site has nothing.

An example page is http://www.giftmill.co.uk/shop/Shop-112 ... l#SID=1498

Any ideas?

Re: Sellerdeck Mobile Theme

Posted: Sun Aug 24, 2014 6:50 am
by norman
The following 2 lines of SellerDeck code (in layout Standard Javascript Header Functions) are breaking all subsequent jQuery $(document).ready statements and will adversely affect all other add-ons.

Code: Select all

AddEvent(window, "load", SwapDesktopMobileFilters);
AddEvent(window, "resize", SwapDesktopMobileFilters);
It looks like the routine SwapDesktopMobileFilters is nowhere in the SD generated code or supplied JavaScript files. It should be in actinicsearch.js.

One for SellerDeck to fix.

A quick fix at your end would be to comment out these two lines (by putting // in front of them) as they are doing nothing at present except breaking other code.

Re: Sellerdeck Mobile Theme

Posted: Thu Aug 28, 2014 2:47 pm
by AndyBo
Many thanks Norman.

I have commented out the lines in Standard JavaScript Header Functions and everything seems to be working OK