So I just bought the Pro version.
The page I'm trying to integrate is an old php page and the urls work with parameters. The page that should be in the iframe is on the same domain! Like this
"http://www.my-wordpress-website.com/site-to-integrate/index1.php?action=subpage"
Mapping the page url works fine. However I want to exclude the whole "http://www.my-wordpress-website.com/site-to-integrate/index1.php?action=" part and only keep the parameter value. I want my result to look like this:
"http://www.my-wordpress-website.com/iframe-page/?page=subpage"
Here's my shorcode
Code:
[advanced_iframe securitykey="****" use_shortcode_attributes_only="true" src="http://www.my-wordpress-website.com/site-to-integrate/index1.php" width="100%" height="600" id="advanced_iframe" map_parameter_to_url="page" add_iframe_url_as_param="same" add_iframe_url_as_param_prefix="www.my-wordpress-website.com%2Fsite-to-integrate%2Findex1.php%3Faction%3D" onload_resize_delay="2" resize_on_element_resize="#main" enable_external_height_workaround="false" ]
Sadly it just wont cut away the prefix value. It will still add the entire iframe url to my "?page=" parameter.
Whats wrong?