[Plugin: MeeNews Newsletter Plugin] Meenews doesnt work with some plugins
-
Hello
I downloaded the free version of Meenews Newlstter plugin. I am running WP 2.8.5. When creating a newsletter design and upon trying to add a post to the news this URL will not resolve
/wp-admin/admin.php?page=meenews/designNewsletter.php
I checked the Firebug console and there are 2 errors
ShareThis is not defined
google_protectAndRun is not definedIt seems from these error that the newsletter doesn’t work with the ShareThis and Google Ads plugins.
I would hope there is a way to filter these out from the post before attempting to write to the newsletter template.
Here is the code for the designNewsletter.php
<?php
if($_POST[“show”]==”Post”){
require_once(‘../../../wp-config.php’);
include_once(“class.coreTvnews.php”);
include_once(“class.users.php”);
include_once(“class.design.php”);$post = TvDesignNews::extractPost($_POST[“id”]);
echo TvNewsletter::generateRow($post,1);
die();
}if($_POST[“send”]== $traducciones[‘Btn_GN’]){
$newsletter = $_POST[“finalDesign”];
$title = $_POST[“titleDesign”];
$newsletter= TvDesignNews::generateFinalNeswletter($newsletter);
$message = TvDesignNews::saveNewsletter($newsletter, $title);TvNewsletter::echoAdvertiseMessage($traducciones[‘textNSOk’]);
}
TvNewsletter::desingNewsletterBack();
?>
- The topic ‘[Plugin: MeeNews Newsletter Plugin] Meenews doesnt work with some plugins’ is closed to new replies.