Tell me more ×
SmugMug Stack Exchange is a question and answer site for SmugMug developers and end users. It's 100% free, no registration required.

I know how to make my homepage a full screen slideshow and I know there is a Smugmug gallery style that is slideshow. But I would like to use the JFriend HTML5 slideshow or the Fastline Media Full Screen slideshow as a regular gallery style. Is there a way to do that via customization?

share|improve this question
I have never done it, but I would assume you just create an HTML only page and insert in your JFriend script into that page. Have you tried that? – dpollitt Jan 29 '12 at 15:56

1 Answer

If you look at page 7 and 8 of Jfriends documentation http://www.pixel99.com/smugcustom/slideshow/jfriend-html5-slideshow-tutorial-1.1.0.pdf

It shows you how to put the code in for a gallery or category, from there its just a matter of tweaking your CSS to make it fit your needs.

For the Fastline Media version, you would need to edit the Javascript code directly so that it will work on other pages

For example you could change this

YE.onDOMReady(function()
{
    if(YD.hasClass(document.body, "homepage") && YD.hasClass(document.body, "notLoggedIn")) {

    var hideOn = [
        'mycustompage',
        'galleries',
        'map',
        'featured',
        'recent',
        'featured-events',
        'find',
        'mysearch'
    ];

to this

YE.onDOMReady(function()
{
    if(YD.hasClass(document.body, "category_Sports") && YD.hasClass(document.body, "notLoggedIn")) {

    var hideOn = [
        'mycustompage',
        'galleries',
        'map',
        'featured',
        'recent',
        'featured-events',
        'find',
        'mysearch'
    ];

I changes the document.body from homepage to category_Sports to show on my Sports category.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.