I’m looking for a way to organize the values, such as phone numbers, on the site so that when the value is changed, all the pages that use that value are updated.
]]>I have this use case where I want a Boxzilla box to pop-up and have a Contact Form 7 form in it that loads some page default values, for example, from post meta. I can get it to work if the form is loaded in the page content, but not when it’s loaded in the pop-up box. Is there a way to achieve this?
Thanks.
álvaro
function gmw_modify_form_values( $gmw ) {
if ( 4 !== absint( $gmw['ID'] ) ) {
return $gmw;
}
$startDate = date("Y-m-d");
$gmw['form_values']['start-date'] = $startDate;
return $gmw;
}
add_filter( 'gmw_default_form_values', 'gmw_modify_form_values', 50 );
]]>I don’t know what other developers think, but I don’t think it should work this way. I think it should only consider a field translated if an value has been entered into the database.
]]>So the question is – is there any option how to enable loading variation field group at the same time as page loads?
]]>[su_lightbox type="inline" src="#ctf"][button id="footer-btn" style="border" align="center" link="/contact/" linkTarget="_self" bgColor="#3083a2" hover_color="#fff" font="16" icon="bubbles2" icon_placement="left" icon_color="accent1"]Click here →[/button][/su_lightbox][su_lightbox_content id="ctf" class="lightbox-ctf"][contact-form-7 id="15366" title=""]<span class="clearfix"> </span>[/su_lightbox_content]
element.style {
display: none;
width: auto; << Note, "none" is an invalid value!
min-width: none;
max-width: 600px;
margin-top: 40px;
margin-bottom: 40px;
padding: 40px;
background: #FFFFFF;
color: #333333;
box-shadow: 0px 0px 15px #333333;
text-align: center;
}
I do not want to use the default values, but I want to style the lightbox in my CSS. The only way to override is to add ‘!important’ on every style element. The selection box (advanced setting) ‘Skip default settings’ is enabled, and I expected that I could use my own styles without having to overrule all default settings first or enforce the new setting. Is there something I’m missing here?.
Art
]]>Is it possible to change those and other default values such as Taxes?
Thanks!
]]>I would like to set the default values for latitude und longitude in the settings page both to 0 (for example). But I get an error for latitude: “Please select a valid value. The two nearest valid values are -0.33 and 0.67.”. And for longitude “Please select a valid value. The two nearest valid values are -0.61 and 0.39.”
I get a similar message for other values. Why?
Thank you very much.
]]>