Title: :433
Last modified: February 14, 2018

---

# :433

 *  Resolved [sebastienspencer](https://wordpress.org/support/users/sebastienspencer/)
 * (@sebastienspencer)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/433/)
 * Hi, this plugin is a time saver for our website, we have the same form on different
   pages and use the URL feature to let us know where the from fill came from,
 * we have recently added a SSL and we are seeing the urls end with :433
 * [http://www.somesite.com:433/some-page](http://www.somesite.com:433/some-page)
 * is there any way to remove this so it doesnt get passed in the from?
 * many thanks and great work
 * Seb

Viewing 1 replies (of 1 total)

 *  Plugin Author [sevenspark](https://wordpress.org/support/users/sevenspark/)
 * (@sevenspark)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/433/#post-10051342)
 * Hi Seb,
 * Glad to hear it has helped you out!
 * If you’re using the CF7_URL shortcode, it’s defined like this:
 *     ```
       function cf7_url(){
       	$pageURL = 'http';
        	if( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on"){ $pageURL .= "s"; }
   
        	$pageURL .= "://";
   
        	if( isset( $_SERVER["SERVER_PORT"] ) && $_SERVER["SERVER_PORT"] != "80" ){
         		$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
        	} else {
         		$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
        	}
        	return $pageURL;
       }
       add_shortcode('CF7_URL', 'cf7_url');
       ```
   
 * So you could use that as a base, change the function name and shortcode name,
   and then remove the if statement about the server port. So something like this(
   untested)
 *     ```
       function cf7_url(){
       	$pageURL = 'http';
        	if( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on"){ $pageURL .= "s"; }
   
        	$pageURL .= "://";
   
        	$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
   
        	return $pageURL;
       }
       add_shortcode('CF7_seb_URL', 'cf7_seb_url');
       ```
   
 * then you’d just use the `CF7_seb_URL` as your shortcode.
 * Hope that helps!

Viewing 1 replies (of 1 total)

The topic ‘:433’ is closed to new replies.

 * ![](https://ps.w.org/contact-form-7-dynamic-text-extension/assets/icon-256x256.
   png?rev=3019574)
 * [Contact Form 7 - Dynamic Text Extension](https://wordpress.org/plugins/contact-form-7-dynamic-text-extension/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-form-7-dynamic-text-extension/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-7-dynamic-text-extension/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-7-dynamic-text-extension/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-7-dynamic-text-extension/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-7-dynamic-text-extension/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [sevenspark](https://wordpress.org/support/users/sevenspark/)
 * Last activity: [8 years, 2 months ago](https://wordpress.org/support/topic/433/#post-10051342)
 * Status: resolved