Hello;
Thanks for your query. Sorry. There isn’t any way to serve multiple domains from the same WordPress installation.
The other thing you mentioned we will update in next version. Thanks for your suggestion.
Best Regards;
–
Thanks for the reply.
I also noticed a small bug. There is no string for subject field for Email template but there is field it.
As you stated in the tip below the Email Template: Available tags – {from}, {email}, {message}, {date}, {ip}
Cheers!
Thanks for your valuable suggestions. We just updated the plugin. Please download the updated version and check it to fix everything you mentioned. Please let us know if you need further assistance. Your suggestions really help to improve the plugin.
Best Regards;
ThemeAtelier.
Hi,
thanks for the update. Work flawlessly.
In order to make it one directory to work for multiple domains may be the string {url} should get data from the actual browser. Try using this snippet:
<?php
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
$url = "https://";
else
$url = "http://";
// Append the host(domain name, ip) to the URL.
$url.= $_SERVER['HTTP_HOST'];
// Append the requested resource location to the URL
$url.= $_SERVER['REQUEST_URI'];
echo $url;
?>
Again, thanks for the addon!
Cheers!
Thank you so much. We will try it.