Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author simonpedge

    (@simonpedge)

    Hmmm, I cannot seem to replicate the error you getting when trying to delete slides, and I’ve just tried on 2 separate test sites.

    Try to see if you are getting some sort of JavaScript error by opening up your browser console (press CTRL + SHIFT + J together) and then performing a ‘Delete Slide’ and then see if any error message displays within the console. If so then this will give me something to work on.

    Also try editing your ‘wp-config.php’ file (in the root folder of your site) and change the ‘WP_DEBUG’ line to ‘true’ and then try deleting a slide. This will shor any PHP errors occurring. Change it back to ‘false’ once done testing.

    Thread Starter masterbassie

    (@masterbassie)

    I have the following errors but no php errors or console errors happen when I click delete.

    https://s10.postimg.org/6na4fcend/Screen_Shot_2016_02_03_at_2_49_38_PM.png

    Plugin Author simonpedge

    (@simonpedge)

    Do you have a CodeMirror plugin installed?
    If so, try to disable this plugin and then try deleting a slide – I think there may me a clash with this plugin.

    Thread Starter masterbassie

    (@masterbassie)

    Ok i figured out that issue. However i have an issue where the style=”background-image….” is getting stripped out. It doesn’t seem to strip out all styles just that one

    Plugin Author simonpedge

    (@simonpedge)

    Hi, can you please provide me with more information on what you are trying to do?

    Thread Starter masterbassie

    (@masterbassie)

    I’m trying to use the following testimonial plugin with SA.
    https://codecanyon.net/item/testimonials-wordpress-plugin/5710957

    This is the testimonial plugin in action
    https://clients.digitalgravitymedia.com/test/testing1/

    Here is the slider
    https://clients.digitalgravitymedia.com/test/testing2/

    When I add the shortcode the images don’t appear. I also tried adding just the html but it strips out the inline styling.

    Plugin Author simonpedge

    (@simonpedge)

    Ok, what you can do to get around this is change line 930 of /wp-content/plugins/slide-anything/php/slide-anything-admin.php
    FROM:
    $slide_content = wp_kses_post($_POST[$slide_edit_id]);
    TO:
    $slide_content = $_POST[$slide_edit_id];

    An you need to change line 174 of /wp-content/plugins/slide-anything/php/slide-anything-frontend.php
    FROM:
    $output .= “<div style='”.esc_attr($slide_style).”‘>”.wp_kses_post($slide_content).”</div>\n”;
    TO:
    $output .= “<div style='”.esc_attr($slide_style).”‘>”.$slide_content.”</div>\n”;

    Plugin Author simonpedge

    (@simonpedge)

    Hi, the latest version of Slide Anything, version 1.5 just released, should now work with your testimonial shortcode.

    Thread Starter masterbassie

    (@masterbassie)

    awesome thank you!

    Plugin Author simonpedge

    (@simonpedge)

    This has been resolved

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Delete slide doesnt work’ is closed to new replies.