• for higher than php7.2 you need to change le last line of /wp-content/plugins/shortcurl/index.php

    old:
    add_action('widgets_init', create_function('', 'return register_widget("SHORTCURL_Widget_Class");'));

    new:
    add_action('widgets_init', function(){return register_widget("SHORTCURL_Widget_Class");});

The topic ‘Super!!’ is closed to new replies.