Hi,
Till version 6.3.3 there was a problem with advance iframe and the royal theme. They both used the same variable for the options.
To fix this use at least 6.3.4 of advanced iframe or advanced iframe pro or
open advanced-iframe.php
Search for $options = $cons_advancediFrame->getAdminOptions(); if (!empty($options['alternative_shortcode'])) { add_shortcode($options['alternative_shortcode'], array($cons_advancediFrame, 'do_iframe_script'), 1); // setup shortcode alternative style }
and replace this with
$aioptions = $cons_advancediFrame->getAdminOptions(); if (!empty($aioptions['alternative_shortcode'])) { add_shortcode($aioptions['alternative_shortcode'], array($cons_advancediFrame, 'do_iframe_script'), 1); // setup shortcode alternative style }
Have fun with advanced iframe and the royal theme, Michael
|