cash_cs
Forum Replies Created
-
was conflict with Pantheon cache. Need to set no-cache in Pantheon for quiz pages:
https://pantheon.io/docs/cache-control/just use this code in your style.css theme file :
#fb-root {
display: none;
}/* To fill the container and nothing else */
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
width: 100% !important;
}the same after update WP
Forum: Plugins
In reply to: [LH User Taxonomies] Select user term on create user pageYou can add some hooks in lh-user-taxonomies.php (the file in LH plugin folder) and add:
add_action( ‘user_new_form’, array($this, ‘user_profile’)); (after 606 row)
add_action( ‘user_new_form’, array($this, ‘save_profile’)); (after 611 row)Forum: Plugins
In reply to: [qTranslate X] qTranslate-x (Ajax problem)Thank you, but i think, I will make my own custom wordpress widget, it will be a cheaper 🙂
do_shortcode helps, thank you!
Forum: Plugins
In reply to: [Contact Form 7 Modules] How to show field from – Advance custom fields?I have the same problem, i need all fields from $post and + ACF fields, did you find the solution?