Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • aparma Friend
    #189110

    Hi
    I need an help to link an image on Slide Show Lite to a k2 category ( that already has a link on the mainmenu)
    Is it possible? I see in the panel module that if I edit the image open a popup with some fields to fill (title,link, description)
    but I can not get it to work.
    Please can someone help me with this?
    Best regards

    Ninja Lead Moderator
    #499768

    You can follow my solution here

    aparma Friend
    #500171

    Thank you very much!
    Now the links work.
    There is only one thing I want to ask:
    On a picture the mouse cursor remains as a pointer, and does not change in the hand cursor. If you click the link works and open the page, but a user does not understand that the pictures are links. Is there a way to fix this?
    Thanks anyway for the help.

    Ninja Lead Moderator
    #500228

    You can try to fix it this way

    Open mod_jaslideshowlite/assets/js/script.js file

    from


    animFinished: function(){
    var options = this.options,
    vars = this.vars;

    vars.running = false;

    if (!vars.stop && (options.autoplay && (vars.curIdx < vars.total -1 || options.repeat))) {
    this.start();

    vars.jslider.addClass('ja-ss-progress');
    }
    }

    change to


    animFinished: function(){
    var options = this.options,
    vars = this.vars;

    vars.running = false;

    if(options.urls){
    vars.mainFrame.setStyle('cursor', options.urls[vars.curIdx] ? 'pointer' : '');
    }

    if (!vars.stop && (options.autoplay && (vars.curIdx < vars.total -1 || options.repeat))) {
    this.start();

    vars.jslider.addClass('ja-ss-progress');
    }
    }

    Remember to backup old file before making changes

    aparma Friend
    #501123

    I tried your fix, but the result is that the slideshow loads only the first image, and the pointer does not change.
    Thanks anyway for your help.

    Ninja Lead Moderator
    #501231

    Please pm me URL, admin login info and ftp account of your site. I will fix the problem directly on your site.

    aparma Friend
    #501341

    <em>@Ninja Lead 383560 wrote:</em><blockquote>Please pm me URL, admin login info and ftp account of your site. I will fix the problem directly on your site.</blockquote>

    Thank you! I sent you a PM

    Ninja Lead Moderator
    #501366

    I have fixed the problem directly on your site this way

    Open modules/mod_jaslideshowlite/assets/js/script.js file

    From


    animFinished: function(){
    var options = this.options,
    vars = this.vars;
    vars.running = false;
    if (!vars.stop && (options.autoplay && (vars.curIdx < vars.total -1 || options.repeat))) {
    this.start();
    vars.jslider.addClass('ja-ss-progress');
    }
    }

    Change to


    animFinished: function(){
    var options = this.options,
    vars = this.vars;
    vars.running = false;
    if(options.urls){
    vars.jslider.setStyle('cursor', options.urls[vars.curIdx] ? 'pointer' : '');
    }
    if (!vars.stop && (options.autoplay && (vars.curIdx < vars.total -1 || options.repeat))) {
    this.start();
    vars.jslider.addClass('ja-ss-progress');
    }
    }

    Please check it again, let me know if it helps

    aparma Friend
    #501412

    Thank you very much! Now is perfect and works well!
    If I may I would need a little additional help on the menu.
    Can I ask you here, I better open another thread?
    This thread can be put as resolved.
    Thanks again
    Best Regards

    Ninja Lead Moderator
    #501481

    Yes, you should raise it in a new thread, it would be better.

Viewing 10 posts - 1 through 10 (of 10 total)

This topic contains 10 replies, has 2 voices, and was last updated by  Ninja Lead 11 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum