972 creative
Forum Replies Created
-
Hi there. This post was regarding 7.1, but is the plugin compatible already with 7.0?
Forum: Plugins
In reply to: [Contact Form 7] Better WPML compatibility – Load correct language strings@webdados – Did you ever figure this out? I’m having the same issue.
Hi Damian
This is a good solution in theory, but not practical.
In addition to CF7 emails and WC emails, we also have default system emails that go out. In those case, we do in fact need to be able to choose from and email fields.
Thoughts?
Thanks for a great plugin regardless!
ToddThanks! I think that clarified things.
I believe I am.
I called the column email.
Is that not correct? We used your demo template file.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change credit card logosHi
See https://prntscr.com/cnr6kf. It’s at the bottom of the Processing Options page.
My intention was to link to their image URLs this way if branding changed it’d be changed on our site as well.
Thanks,
ToddForum: Plugins
In reply to: [PayPal for WooCommerce] Change credit card logosAppreciate the quick response.
My suggestion is to allow multiple images to be added as replacements and to allow external URLs. For example, I wanted to use the newer logos that Braintree shows in their admin system which are all served as individual files.
Thanks!
Thanks for the reply.
You helped but I was looking to record what’s before the pipe, so I used this:
$formData->posted_data[$fieldName] = $valueSelected;
Forum: Plugins
In reply to: [PayPal for WooCommerce] Payment methods in account pageI was referring (here) to WooCommerce built-in functionality.
For now I hid those pages from our customers my account section.
Hi Michael
This worked, but a question…
In your KB article, we took one field, chose to display before the pipes and added a new column in the DB for what was after the pipes.
My need doesn’t require that I create a new column and record the data after the pipes. So what here in my code can I remove to eliminate the new column altogether?
function form_with_pipes_handler($formName, $fieldName, $newFieldName, &$formData) { if ($formData && $formName == $formData->title && property_exists($formData, 'WPCF7_ContactForm') && method_exists($formData->WPCF7_ContactForm, 'form_scan_shortcode')) { $scanned_form_tags = $formData->WPCF7_ContactForm->form_scan_shortcode(); $emailSelected = $formData->posted_data[$fieldName]; if (is_array($emailSelected) && count($emailSelected) == 1) { $emailSelected = $emailSelected[0]; } $valueSelected = null; foreach ($scanned_form_tags as $tag) { if ($tag['name'] == $fieldName) { foreach ($tag['raw_values'] as $rawValue) { // value|email $valuesArray = explode('|', $rawValue); if (count($valuesArray) == 2 && $valuesArray[1] == $emailSelected) { $valueSelected = $valuesArray[0]; break; } } } if ($valueSelected != null) { break; } } if ($valueSelected != null) { $formData->posted_data[$fieldName] = $valueSelected; $formData->posted_data[$newFieldName] = $emailSelected; } } return $formData; } function location_form_handler($formData) // Use a different function name for each form { $formName = 'Contact Page'; // change this to your form's name $fieldName = 'location'; // change this to your field's name $newFieldName = $fieldName . '_email'; return form_with_pipes_handler($formName, $fieldName, $newFieldName, $formData); } add_filter('cfdb_form_data', 'location_form_handler'); // ensure 2nd param matches above function name
Thanks,
ToddThanks. Much appreciated.
Hi
I simply want a way to make sure, 100% sure, that your plugin doesn’t send any mails.
How do I do this?
Thanks,
ToddForum: Plugins
In reply to: [Import and export users and customers] Uploading list and managing passwordsHi
I’m sorry. I don’t understand.
Can you clarify, maybe with screenshots?
Thanks,
ToddHi Javier
I’m sorry. I don’t understand the response.
How can I make sure that your plugin does not send any emails? Which settings do I need to select?
Maybe I need to leave these settings unchecked?
Thanks,
Todd