Hi
I used a different approach.
1.-Install plugin “Code Snippets”. Add new snippet with this code:
function add_custom_query_var( $vars ){
$vars[] = “ticketid”;
return $vars;
}
add_filter( ‘query_vars’, ‘add_custom_query_var’ );
My variable is ticketid. Make sure to activate snippet after creation.
2.-Install plugin “Insert PHP” and go the page you want to modify Auto iFrame.
3.-Add this code to page:
[insert_php] $ticketid = get_query_var( ‘ticketid’ );[/insert_php]
[auto-iframe link=”http://anydomain.com/any/view.php?ticketid=%5Binsert_php%5Decho $ticketid;[/insert_php]” tag=10 width=100% height=100% autosize=yes]
4.-Go to your page:
http://anydomain.com/yourpage/?ticketid=123456
Its done