Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove MenuCool Trial version for localhost for the lastest version v2015.10.26.

Tags:

slider

I am trying to make the slider work in my local machine either using http://localhost/thumbnail-slider or using http://127.0.0.1/thumbnail-slider. In both the cases I am getting the message occasionally "Thumbnail Slider trial version".

I tried all the steps in the below url with no success in any of the solution for the version v2015.10.26 jquery menucool slider not working

like image 652
Janakiraman Balakrishnan Avatar asked Jul 27 '16 15:07

Janakiraman Balakrishnan


3 Answers

Try this

Find the

vb=function(d,c){for(var b=[],a=0;a<d[e];a++)b[b[e]]=String[kb](d[Z](a)-(c?c:3));return b.join("")},

From slider js file and Replace with

vb=function(d,c){return " "},
like image 51
Shailesh Chauhan Avatar answered Nov 08 '22 20:11

Shailesh Chauhan


Try this, It worked for ThumbnailSlider Slider v2015.10.26.

vb = function (d, c) {
                for (var b = [], a = 0; a < d[e]; a++)
                    b[b[e]] = String[kb](d[Z](a) - (c ? c : 3));
                if (b.join("") == "Thumbnail Slider trial version")
                    return "";
                return b.join("")
            },
like image 32
urfusion Avatar answered Nov 08 '22 19:11

urfusion


For Ninja Slider v2016.12.29

It's both of the answers above:

find the a.replace(/(?:..)?(\w)([\w-])?[^.](\w).[^.]*$/,"$1$3$2") in jquery-slider.js file

change to a.replace("","$1$3$2")

AND

yb = function (d, c) {
            for (var b = [], a = 0; a < d[e]; a++)
                b[b[e]] = String[nb](d[Z](a) - (c ? c : 3));
            if (b.join("") == "Ninja Slider trial version")
                return "";
            return b.join("")
        },

Although I had to make it

yb = function (d, c) {
        for (var b = [], a = 0; a < d[e]; a++)
            b[b[e]] = String[nb](d[ab](a) - (c ? c : 3));
        if (b.join("") == "Ninja Slider trial version")
            return "";
        return b.join("")
    },

Notice d[Z] was changed to d[ab].

P.S. I tried buying the $29 license, but the website won't let the order go through.

like image 26
sugapablo Avatar answered Nov 08 '22 19:11

sugapablo