archilton
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Quick and Easy FAQs] Running other shortcodes from within quick and easy faqI worked it out when I realised iframes didn’t work either and saw the support for that.
I added this to functions.php in the theme files:
function custom_wpkses_post_tags( $tags, $context ) { if ( 'post' === $context ) { $tags['iframe'] = array( 'src' => true, 'height' => true, 'width' => true, 'frameborder' => true, 'allowfullscreen' => true, ); $tags['input'] = array( 'placeholder'=>true, 'id'=>true, 'type'=>true, 'name'=>true, 'tabindex'=>true, 'class'=>true, 'autocomplete'=>true); } return $tags; } add_filter( 'wp_kses_allowed_html', 'custom_wpkses_post_tags', 10, 2 );Now the input shows up and works as expected
Forum: Plugins
In reply to: [Quick and Easy FAQs] Running other shortcodes from within quick and easy faqI can’t I’m afraid as it is behind a login but we are trying to use passster in one of the FAQs. I have contacted them as well.
Forum: Plugins
In reply to: [Quick and Easy FAQs] two FAQs on the same page with different filtersI have found the issue in the code and added an issue to the github repo.
For anyone trying to do this for themselves you will need to change the line in fontend/scripts.js in the quick and easy plugin folder on your server.
See the link below for the changes you need to make, they are only small changes
https://github.com/InspiryThemes/quick-and-easy-faqs/issues/19
Viewing 3 replies - 1 through 3 (of 3 total)