William Rotich

Results 4 comments of William Rotich

Please add banner ads position option

I think you are not Loading the banner then show cordova.plugins.codeplayfacebookads.loadInterstitialAds(options,success,fail); cordova.plugins.codeplayfacebookads.showInterstitialAds("",success,fail);

` var options = { interstitialid: "55XXXXXXXXXXX_68XXXXXXXXXXXXX", isTesting: true }; this.platform.ready().then(() => { cordova.plugins.codeplayfacebookads.loadInterstitialAds(options).then(success, fail); function success(result) { cordova.plugins.codeplayfacebookads.showInterstitialAds(options).then( '"", '""); } function fail(result) { console.log("Fail", result); } });`

Make sure you run loadInterstitialAds first, after success callback follow by showInterstitialAds. Make sure its loaded before showing. Always work for me.