elonden
Forum Replies Created
-
Geen probleem…. 🙂
Groeten
ErwinForum: Reviews
In reply to: [WP LinkedIn Auto Publish] Great plugin, does exactly what you want it to do.No problem. Greetings from Queensland.. 🙂
Forum: Fixing WordPress
In reply to: Impossible to change admin email addressTor-Bjorn,
I don’t think it’s in the user database as it is a system configuration setting. The email address for the system seems to be in another table. Not sure which one this is.
Cheers.
ErwinForum: Plugins
In reply to: [Dropdown multisite selector] Exclude non-active sitesI assume an additional negatecriteria needs to be added to this section:
//show all sites from the WMN
function showAll(){$out = ”;
$all_wmn_sites = get_sites();
$current_site_id = get_current_blog_id();foreach ($all_wmn_sites as $site) {
if ($current_site_id != $site->blog_id) {
$the_site = get_blog_details($site->blog_id);
$out .= “<option value='” . $the_site->siteurl . “‘>” . $the_site->blogname . “</option>”;
}
}return $out;
}Hello Jason,
Thanks for this. Do you have plans for a feature that if a subscriber uses a specific email address or domain to have him/her automatically partake in one of the subscription levels?
That would be very nice.
Regards,
ErwinAs a followup I see that PayPal has sent a cancellation IPN which PMP seems to have been neglecting. So it seems the intial payment IPN is picked up but the cancellation is not.