herbert
Forum Replies Created
-
Forum: Plugins
In reply to: [GF Mollie by Indigo] fire own function on payment completedFollow up info:
– in rg_lead payment status is set to ‘processing’, other payment columns are empty
– in rg_lead_meta there is always some payment data stored
No completed or fail …
Is this normal behaviour of the plugin or a bug?Forum: Plugins
In reply to: [GF Mollie by Indigo] fire own function on payment completedHello @ Indigo,
So where can I see the payment data in UI or database where it shows the payment_complete of payment_fail? There is only a fail or complete email but no data in the database?
Hello Michael,
Test update: It seems to be working in all emails (order and client).
Is it possible to remove the fields only in client emails and not in admin (order) mails?
Thank you Michael.
We will be testing it and I will let you know how it works out.Here too! I would like to exclude the check out manager custom fields from the order email. Any way to do this?
Forum: Plugins
In reply to: [Date Picker in List Fields for Gravity Forms] Using datepicker for time onlyOvann thank you for the info.
It is some work but it all works now. Just wanted to share this so maybe someone can use it.
For now I fixed it by loading the jquery.timepicker.min.js, some css styling.And adding this to the form HTML field:
<script> jQuery(document).ready(function($){ $('input.timepicker').timepicker({ timeFormat: 'HH:mm', // year, month, day and seconds are not important minTime: new Date(0, 0, 0, 0, 0, 0), maxTime: new Date(0, 0, 0, 8, 0, 0), // time entries start being generated at 6AM but the plugin // shows only those within the [minTime, maxTime] interval startHour: 6, // the value of the first item in the dropdown, when the input // field is empty. This overrides the startHour and startMinute // options startTime: new Date(0, 0, 0, 0, 0, 0), // items in the dropdown are separated by at interval minutes interval: 15 }); }); </script>
I am using 15 minute intervals and max 8 hours as this is used for a registration form of worked hours.
I changed the input field in de form with this code in functions.php:
// ------------------------------------ // add the timepicker class to list items // ------------------------------------ function change_column_content( $input, $input_info, $field, $text, $value, $form_id ) { //build field name, must match List field syntax to be processed correctly $input_field_name = 'input_' . $field->id . '[]'; $tabindex = GFCommon::get_tabindex(); $new_input = '<input type="text" name="' . $input_field_name . '" ' . $tabindex . ' class="timepicker" value="'.$value.'" />'; return $new_input; }
And add the above function to the different fields. Make sure the numbers match your form fields.
if(!is_admin()) { // row 1 field 2 add_filter( 'gform_column_input_content_1_2_2', 'change_column_content', 10, 6 ); // row 1 field 3 add_filter( 'gform_column_input_content_1_2_3', 'change_column_content', 10, 6 ); .... et cetera }
It is working perfectly! Thank you ovann86
@ovann86 -> Okay that sounds great. I will wait for your release.
Thank you.Thank you! ??
@ovann86 sorry for the late response…
I used this:<script> gform.addFilter( 'gform_datepicker_options_pre_init', function( optionsObj, formId, fieldId ) { optionsObj.firstDay = 1; if ( formId == 1 ) { optionsObj.onClose= function (dateText, inst) { jQuery(this).val(jQuery.datepicker.iso8601Week(jQuery(this).datepicker("getDate"))); } } return optionsObj; }); </script>
It is working perfectly. Only problem is that the form won’t validate on submission.
Forum: Plugins
In reply to: [Responsive Photo Gallery] Plug-in has no data after domain moveJust fixed it myself with a temporary work around.
In my case grunt wordpress deploy changes the serialised array values on pull_db and push_db, which is good. But in this case there are mulitdimensional serialised arrays used by this plug-in (post_meta -> rpg_all_photos_details) and the main character count is not updated in this run.
Follow me
- Make export from WP Export function -> Responsive Photo Gallery
- On new location delete all the galleries
- On new location do the import via WP Importer, asign all to correct user
- Run search replace with on the post meta table(rpg_all_photos_details), use https://github.com/interconnectit/search-replace-db
- Done all galleries are working again.
If you are moving the database by hand, just use the search replace db tool in the link above. It changes the multidimensional serialised arrays correctly. No need for the other steps.
Happy moving!
Forum: Plugins
In reply to: [Responsive Photo Gallery] Plug-in has no data after domain move@weblizar
Thanks for the quick response.
Is there something I can do manualy in the database so it will work. Just as a quick fix?Sorry for the delay Aesqe, got stuck in the holidays over here…
I hope this helps…Forum: Plugins
In reply to: [Post Thumbnail Editor] JS bug prevents uploading media in Page/Post editorSome extra info… For me it occurs on a wp 4.1.4 network install in combination with wp-seo plugin version 2.1.1 network activated.
If I have some time I will try to test more…In wp 4.1.4 versions 1.8.2 -> 1.8.4 all have the problem of partly hidden copy all attachments window. It is in the upper left corner behind admin bar and admin sidebar. Tested in Firefox 37.0.2. and Chrome 40.x.