Forum Replies Created
- AuthorPosts
amator
ParticipantThis is issue with Orphans plugin. Here is solution:
if ( ! class_exists( 'iworks_orphans_skip_entries' ) ) { class iworks_orphans_skip_entries { /** * List of entries IDs to skip! */ private $skip_ids_list = array( 1175, ); public function __construct() { add_filter( 'orphan_skip_replacement', array( $this, 'skip' ) ); } public function skip( $status ) { if ( ! is_main_query() ) { return $status; } $post_ID = get_the_ID(); if ( in_array( $post_ID, $this->skip_ids_list ) ) { return true; } return $status; } } } new iworks_orphans_skip_entries;
Add it to functions.php of your child theme
Add here your pages id where you have forms to disable Orphan plugin.private $skip_ids_list = array( 1175,
amator
ParticipantI’ve send you details.
amator
ParticipantLooks like checkbox field don’t line “z” sign.
Try add new value, for example “z z z”. When I try choose this value on front end, there is a error “this value is not valid”.Other options like “Dom z basenem” where is also “z” gives error.
amator
ParticipantLooks like there is some issues with Litespeed cache plugin. Can you help me fix that?
amator
ParticipantGreat! Thank you again!
Maybe in the future you can add new field “age”, to be calculated form date form. Or other simple “math” functions
I think a lot of people need this.
Or adding custom js code to each form separately (not one for every form) also might help (for someone who know js). But for all other people simple math should be enough
amator
ParticipantHi Ally,
What if I need calculate Age in two or more forms? I try with:
$dateField = $(‘.quform-field-1_3’),
$dateField = $(‘.quform-field-3_32’),
$hiddenField = $(‘.quform-field-1_4’),
$hiddenField = $(‘.quform-field-3_33’),but this not work
amator
ParticipantThank you! I don’t know why I found your plugin so late. Definitely one of the best forms plugin on market. Keep it up!
amator
ParticipantIt Works perfect!
thank You!- AuthorPosts