Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Francesco Bona

    (@francescobona)

    @aranofacundo can you help me?

    Facundo A.

    (@aranofacundo)

    Hi there,

    I hope you’re well. In this case, there might be an issue with the database tables required by the plugin.

    I suggest you first check if the following tables were created in your site database, and if so remove them:

    yith_wapo_addons
    yith_wapo_blocks
    yith_wapo_blocks_assoc

    Then you will need to add the following PHP code in the functions.php file of your current theme:

    if ( ! function_exists( 'yith_wapo_force_table_creation' ) && class_exists( 'YITH_WAPO_Install' ) ) {
    add_action('admin_init', 'yith_wapo_force_table_creation' );
    function yith_wapo_force_table_creation(){
    if ( isset( $_GET['yith_wapo_test'] ) ) {
    YITH_WAPO_Install()->install();
    }
    }
    }

    And finally go to YITH > Product Add-ons & Extra Options > Options blocks, and in the URL of the browser add the &yith_wapo_test parameter at the end of the URL. This should create the tables again and solve the issue.

    We’ll remain at your disposal.

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

The topic ‘Plugin don’t work on my website’ is closed to new replies.