• Hello!

    I am unable to add any sliders! Whatever I do, however I do it, it always says that I didn’t provide a title. Whenever I am done with my settings, content etc. and press “Save”. It displays the “Add/Edit Slider” page and asks me to enter skin. If I do so and press “Select” I have to start all over again until I try to save the same thing happens…

    If I go in to “Sliders” page I have a bunch of sliders and it says “Title not provided”. Is it a bug or am I doing something wrong? I am also not able to delete this sliders.. whenever I press “delete” it displays a text-only (no css etc.) site where I am not able to do anything….

    What I do:
    1. I select the “dares_serpent” skin and press “Select”
    2. I enter title “homeslider” below “Slider #ef5b938911 title”
    3. I select the text-tab (second tab, next to the image one)
    4. I select “#” as link
    5. I enter “Welcome dear visitor” as title
    6. I enter “Hello, this is a test of the slider” as content
    7. I enter “Testing the subtitle” as subtitle
    8. I press “Save” at the top right corner (I also tried this from a fresh install but I pressed “Save” that is at the bottom instead, same results)

    After pressing the “Save” button it takes me back to select skin again and it creates a slider without a title. then I am not able to do anything except of uninstalling the plugin…

    Could you please help me in this matter?

    Thank you in advance!

    https://www.ads-software.com/plugins/len-slider/

Viewing 1 replies (of 1 total)
  • So I think I figured it out.
    /wp-content/plugins/len-slider/lib/lenslider.class.php
    Line 946
    Update the function: protected function _lenslider_is_plugin_page()

    Specifically Change:
    $server_uri = “https://{$_SERVER[‘HTTP_HOST’]}{$_SERVER[‘REQUEST_URI’]}”;
    to this
    $server_uri = ($_SERVER[“HTTPS”] == “on” ? “https”:”http”).”://{$_SERVER[‘HTTP_HOST’]}{$_SERVER[‘REQUEST_URI’]}”;

    Functions Should look like this:
    protected function _lenslider_is_plugin_page() {
    $server_uri = ($_SERVER[“HTTPS”] == “on” ? “https”:”http”).”://{$_SERVER[‘HTTP_HOST’]}{$_SERVER[‘REQUEST_URI’]}”;
    foreach ($this->_allowURIs as $allowURI) {
    if(stristr($server_uri, $allowURI)) return true;
    }
    return false;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Can't add any sliders’ is closed to new replies.