• Resolved scalpmonkey

    (@scalpmonkey)


    Hi,

    any way this can be modified to serve multiple domains from same wordpress installation?

    Two thinks are important. Instead of “THIS DOMAIN” it should pull the url from the browser and also in the email sent to me (seller) there should be the url that the form was sent from.

    Thanks,
    S@

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author ThemeAtelier

    (@themeatelier)

    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;

    Thread Starter scalpmonkey

    (@scalpmonkey)

    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!

    Plugin Author ThemeAtelier

    (@themeatelier)

    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.

    Thread Starter scalpmonkey

    (@scalpmonkey)

    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 = "https://";   
    	// 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!

    Plugin Author ThemeAtelier

    (@themeatelier)

    Thank you so much. We will try it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Dynamic fields and emails’ is closed to new replies.