• it’s work with some notice errors. I change in wp-cirrus.php:
    line 42:
    echo $before_widget . $before_title . $options['title'] . $after_title;
    by

    $title = ( isset($options['title']) )? $options['title'] : "";
    		echo $before_widget . $before_title . $title . $after_title;

    line 54:
    if ( $_POST['wpcirrus-options-submit'] ) {
    by
    if ( isset($_POST['wpcirrus-options-submit']) ) {

    line 82:
    if ($errors){
    by
    if ( isset($errors) ){

    line 88:
    }
    by

    }
    $options['title'] = ( isset($options['title']) )? $options['title'] : "";

    line 362:
    if($options['mode'] == 'both'){
    by

    $options['args'] = ( isset($options['args']) )? $options['args'] : "";
    if($options['mode'] == 'both'){

    And everythings are ok 😉

The topic ‘good but…’ is closed to new replies.