nicheru
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] Custom Fields not workingHi Gabriel,
Yes I have the same slug for a couple fields which was working before(I think when it was setup first 2 years ago).
I tried updating the slug but the wsyiwyg editor it empties the field in the serialize form. Is there anyway I can update the slug and the field would not be emptied?
Thanks.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Form does not submitAs I was tracing the issue, I found out this code that is aborting the script.
if( baldrickRequests[opts.params.trigger.prop(‘id’)] ){ baldrickRequests[opts.params.trigger.prop(‘id’)].abort();
}When I commented it, it is now submitting. Will this affect anything if it is commented?
Thank you.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Form does not submitHi Josh,
I did the debug logging and there are only php notices, nothing that could stop the execution.
I added some php code in caldera_forms_submit_complete and it is working.As what I figured out the error is from the callback function, it does not receive the return values from the submission. Where do I trace this issue?
Thank you.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Form does not submitHi, this is a cross domain submission.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Condition not workingHi,
The caldera_conditionals is empty so it will not fire the script.
How does the caldera_conditionals is assigned? also how does the instanceid assigned as well?
Thank you.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Condition not workingHi,
With further debugging on first load of the form variable caldera_conditionals is undefined so it will not fire the script.
When I commented this line in core.php
$out .= ‘if( typeof caldera_conditionals === “undefined” ){ var caldera_conditionals = {}; }’;On change of phone type it will show either landline or mobile.
Is there any other way without commenting the core code?
Thank you
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Condition not workingMore information on the issue.
I have a field phonetype(dropdown) with values landline and mobile.
When I select landline two fields will show( areacode and phone number)
When I select mobile one field will show( mobile number)Hi,
The issue was that caldera_forms_render_get_field_slug is called again after submitting and the post id is not available anymore.
Is it really called twice? I am just confused since the value for the select is already there when loading the form.
Thanks.
used $field[‘config’][‘default’] to set initial values when loading
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Issue in generating dropdown fieldThe dropdown field I used is auto populated via the filter – caldera_forms_render_get_field_slug.
Hi,
When I remove this part of the code it works, so I just hardcoded the post id.
—–
if (isset($_POST[‘post_id’])) {
$postid = $_POST[‘post_id’];
} elseif (isset($_GET[‘course_id’])) {
$postid = $_GET[‘course_id’];
}—–
Is there a way where I can pass $form values in the function? I tried add $form as parameter but it is not working.
Thanks.
Forum: Plugins
In reply to: [Genesis Columns Advanced] Format is not working in do_shortcodeHi Nick,
Thank you for the quick response.
When I trace it, it has nothing to do with do_shortcode.It was because it is a custom metabox so I need to manually add wpautop.
Thank you.
fixed the issue
Hi Josh,
If I don’t add the script manually the form does not submit via ajax.
But adding the script manually, on submit it is so slow.
Do you have any suggestion or any workaround for this?
Thank you.
Forum: Plugins
In reply to: [Genesis Columns Advanced] Shortcode not working in fieldsHi Nick,
I am really new at wordpress, where can I put the code do_shortcode?
I created the custom metaboxes.Thank you.