Home › Forums › Quform WordPress › checkboxes – This value is not valid
- This topic has 5 replies, 2 voices, and was last updated 4 years ago by Ally.
- AuthorPosts
- November 25, 2020 at 6:19 pm #32278amatorParticipant
Hi,
When I choose checkbox with longer text I got error message “This value is not valid”. How I can enable longer values here?
November 26, 2020 at 9:00 am #32279amatorParticipantLooks 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.
November 26, 2020 at 10:20 am #32283AllySupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
November 26, 2020 at 10:30 am #32284amatorParticipantI’ve send you details.
November 26, 2020 at 11:56 am #32285amatorParticipantThis 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,
November 27, 2020 at 9:29 am #32290AllySupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- AuthorPosts
- You must be logged in to reply to this topic.