• Resolved bredamcguigan

    (@bredamcguigan)


    Hi

    After upgrading to version 7.02 it won’t move past the site configuration setting. I filled in the shop details but it won’t activate. I rolled back to version 6 but none of the old setting are there.

    Also there seems to be a section to start orders with a number, I don’t want the plugin changing the order numbers, can I disable that?

Viewing 6 replies - 1 through 6 (of 6 total)
  • i too have had so many issues. rolled back to 6.0.0 but the old settings are now gone. Did you have any luck getting them back on 6.0.0?

    Thread Starter bredamcguigan

    (@bredamcguigan)

    No I have to manually put the shop details in again.

    Regards

    Breda

    Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @bredamcguigan, and @labels4everything,

    Sorry for the inconvenience caused to you due to this.

    Our developer has reviewed the issue, and it has now been resolved.

    You can add this filter to the “functions.php” file of your active theme or via the Code Snippets plugin:

    add_action( 'init', function() {
    if ( ! current_user_can( 'manage_options' ) ) {
    return;
    }
    if ( get_option( 'wcdn_legacy_restore_done' ) ) {
    return;
    }
    $backup = get_option( 'wcdn_legacy_backup' );
    if ( empty( $backup ) ) {
    return;
    }
    foreach ( $backup as $key => $value ) {
    update_option( $key, $value );
    }
    delete_option( 'wcdn_migration_7_completed' );
    update_option( 'wcdn_legacy_restore_done', true );
    } );

    Please add this custom code on your end and check if you are getting the old settings or not.

    yes, after rolling back to 6.0.0 and adding this via code snippets, the old settings do come back and it works again.

    I used this to get the old settings in 6.0 back, but the print button has disappeared on the order pages. Also the links in order e-mails “Print: Open print view in browser” lead to a blank page now.

    Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @labels4everything and @lisegssns,

    We have released a new version of the plugin today (v7.1.1), which includes several important fixes and improvements.

    We recommend you to update to the latest version of this plugin and check on your end if everything is working as expected after the update.

    If you still feel something is missing or not customizable as expected, please share more details — we’ll be happy to review it and work on further improvements.

    Looking forward to your response.

Viewing 6 replies - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.