• Resolved loadingartist

    (@loadingartist)


    I am using the latest WordPress with Generatepress. MetaSlider was working for me until very recently, now the settings page is always blank when I go to it. The slider I have running is still working, but I cannot edit or add any new sliders.

    I have tried deactivating all other plugins, but the problem persists.

    I have also tried checking the console log, but nothing comes up.

    I am running Windows, on the Brave browser (but I also tried Chrome).

    Thank you for your time,
    Gregor

    EDIT: I have also tried deactivating and reinstalling MetaSlider, but no change

    EDIT: I tried downgrading to 3.14.0 but no change

    • This topic was modified 4 years, 11 months ago by loadingartist.
    • This topic was modified 4 years, 11 months ago by loadingartist.
Viewing 3 replies - 31 through 33 (of 33 total)
  • Thread Starter loadingartist

    (@loadingartist)

    @kbat82 THAT WORKS! Oh man what a journey. Thank you very much for your help and patience!

    Hi @loadingartist

    Glad it works!

    However, just a head up. The change above isn’t PHP5.2 compatible so the actual fix I will release will look a little different. It should still work though. Actually, if you care to update the code now you can try it out.

    That section will essentially end up like this, probably!

    <?php 
    	$slider_settings = get_post_meta($slider_id, 'ml-slider_settings', true);
    	foreach ($slider_settings as $key => $value) {
    		$slider_settings[$key] = htmlentities2($value);
    	}
    	$tour_position = get_option('metaslider_tour_cancelled_on');
    ?>
    <metaslider
    	:id='<?php echo $slider_id; ?>'
    	v-bind:settings='<?php echo json_encode(array_map('htmlspecialchars', $slider_settings)); ?>'
    Thread Starter loadingartist

    (@loadingartist)

    @kbat82 Nice, that works too! Thank you so much, again!

Viewing 3 replies - 31 through 33 (of 33 total)
  • The topic ‘Settings page blank’ is closed to new replies.