• Resolved pamade1

    (@pamade1)


    Hello,
    My video doesn’t load–just says “Loading” continuously. I’ve tried the plugin with both mp4 and url, but neither works. I thought it might be the file was too large, so I went all the way down to 224p, but no luck. What might I be doing wrong?

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author richteam

    (@richteam)

    Hi pamade1.

    Thank you for sharing your problem with us. Sorry for the late reply.

    Please you can find this folder in the plugin “iis-captions.js”,

    There you will see such a code.

    "use strict";

    Remove this field from the folder. After that, it will work normally.

    We are waiting for your reply.

    Thank You

    Plugin Author richteam

    (@richteam)

    Dear pamade1..

    Please can you tell us, did it look like as You want? Is the plugin working fine?

    Thank You

    Thread Starter pamade1

    (@pamade1)

    Hi guys,

    No it didn’t work. I deleted just that piece of code you listed. It is still perpetually loading.

    pamade1

    Plugin Author richteam

    (@richteam)

    Dear pamade1.

    Please, can You find the iis-captions.js file from the plugin and delete all the code in this file.

    find the file Widget.php

    after the line 9436 do enter and put this code.

    Plugin Author richteam

    (@richteam)

    IdealImageSlider.Slider.prototype.addCaptions = function() {
    IdealImageSlider._addClass(this._attributes.container, 'iis-has-captions');
    Array.prototype.forEach.call(this._attributes.slides, function(slide, i) {
    var caption = document.createElement('div');
    IdealImageSlider._addClass(caption, 'iis-caption');
    var captionContent = '';
    if (slide.getAttribute('title')) {
    captionContent += '<div class="iis-caption-title">' + slide.getAttribute('title') + '</div>';
    }
    if (slide.getAttribute('data-caption')) {
    var dataCaption = slide.getAttribute('data-caption');
    if (dataCaption.substring(0, 1) == '#' || dataCaption.substring(0, 1) == '.') {
    var external = document.querySelector(dataCaption);
    if (external) {
    captionContent += '<div class="iis-caption-content">' + external.innerHTML + '</div>';
    }
    } else {
    captionContent += '<div class="iis-caption-content">' + slide.getAttribute('data-caption') + '</div>';
    }
    } else {
    if (slide.innerHTML) {
    captionContent += '<div class="iis-caption-content">' + slide.innerHTML + '</div>';
    }
    }
    slide.innerHTML = '';
    if (captionContent) {
    caption.innerHTML = captionContent;
    slide.appendChild(caption);
    }
    }.bind(this));
    return IdealImageSlider;
    }
    Thread Starter pamade1

    (@pamade1)

    So I added that code in the widget file at that location, but then it actually showed up on my page. So I had to remove it.

    Plugin Author richteam

    (@richteam)

    Dear pamade1.

    When did you change the code, did your plugin works fine, yes? Did we understand you correctly? If so why did you delete it after the changes?

    Thank You

    Plugin Author richteam

    (@richteam)

    Dear pamade1.

    We are glad that we could help you. If you have any questions, we will be happy to help.

    Thank You

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Video stuck loading but never finishes’ is closed to new replies.