xdosil
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Hotel Booking] When install this my wordpress hangHello @mbn7938,
My WordPress when installed this plugin was hanging, too. In my case, the problem was the date format. In Europe we use d/m/Y format instead of m/d/Y. The Europe format cause that the plugin runs very slowly.
I hope that this can help you.
I have de same issue with “hind” theme from Themefores. The theme uses CMB2, and all is saved correctly less custom metaboxes. Any suggestion?
Hello,
First, sorry if my english is not correct…
Second, I had the same issue and I resolved this:
The new structure of the tag for checkmail is [checkmail checkmail-email id:chk-email watermark “email-tag-name” “text in the textbox”]I modified the plugin to recognize the “watermark” label, and get the second value to show in the text box
In the line 72, you modify the foreach same this:
foreach ( $options as $option ) {
if ( preg_match( ‘%^id:([-0-9a-zA-Z_]+)$%’, $option, $matches ) ) {
$id_att = $matches[1];
} elseif ( preg_match( ‘%^class:([-0-9a-zA-Z_]+)$%’, $option, $matches ) ) {
$class_att .= ‘ ‘ . $matches[1];
} elseif ( preg_match( ‘%^watermark$%’, $option ) ) {
$atts .= ‘ title=”‘ . $values[1] . ‘”‘;
$class_att .= ‘ wpcf7-use-title-as-watermark’;
}
}This is correct for me…
Regards