• Resolved benlbot

    (@benlbot)


    WordPress : 5.4 with custom Theme
    WP_Recipe_Maker Version :?5.11.1
    WP_Recipe_Maker_Premium Version :?5.11.0?

    Hello,?

    I run into an issue with the import feature in the premium plugin. The export json come from another site using the same premium plugin version.

    In the File wp-recipe-maker-premium\includes\public\class-wprmp-import-json.php at the line 81 the function set_transient was returning false whithout any error on the import page.

    I had to replace the array by the json string in the set_transient function at line 81 in wp-recipe-maker-premium\includes\public\class-wprmp-import-json.php and replace

    $json = get_transient( 'wprm_import_recipes_json' ); at line 122

    for the following code

    $str = get_transient( 'wprm_import_recipes_json' );
    $json = json_decode( $str, true );

    This solved my issue.

    Let met know if you need more informations.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Brecht

    (@brechtvds)

    Thanks for letting me know and the detailed solution. I’ll do some testing and look into it.

    Technically these support forums only allow questions/topics about the free plugin, so if you have any other questions or suggestions at all, please contact us at [email protected] directly.

    Thread Starter benlbot

    (@benlbot)

    Ok, I was writing an e-mail and finaly post it here.

    Thanks for the quick answer.

    Plugin Author Brecht

    (@brechtvds)

    We just released WP Recipe Maker 6.0.0 and included this change. Thanks again for letting me know!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Issue with the import feature of the premium version’ is closed to new replies.