Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I had the exact same issue activating this plugin caused my mobile menu to stop working. After a little digging I realized this plugin includes bootstrap.js when my theme already had it included. This second inclusion caused many issues.

    To fix it is easy. Simply modify the following file and comment out line 15:

    ./ink/install/installation.php:15

    That will remove the second bootstrap.js and should fix your themes issues while using this plugin.

    After enabling debugging as other advised I found the error is the update trying to create columns/indexes that already exist. The following SQL statements fixed the issue for me:

    ALTER TABLE 'wp_aff_hits' DROP 'campaign_id'
    ALTER TABLE 'wp_aff_hits' DROP INDEX 'aff_hits_acm'
    
    ALTER TABLE 'wp_aff_referrals' DROP 'campaign_id'
    ALTER TABLE 'wp_aff_referrals' DROP INDEX 'aff_referrals_ac'
    ALTER TABLE 'wp_aff_referrals' DROP INDEX 'aff_referrals_c'
Viewing 2 replies - 1 through 2 (of 2 total)