SrGato29
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] My messages don't arriveThe correct way to do it is without “+xxxx” code (E.g. [email protected]) and that way your plugin doesnt work( it gets the wrong values) and CF7 works, the only reason that I use “+xxx” (E.g. [email protected]) is because that way your plugin capture the correct values but if I use “+xxx” my CF7 plugin doesnt send my mail so the problem is your plugin because it is not compatible with CF7, so I need a solution because I want to use both plugins, If I contact CF7 , they willl say that their plugin works perfectly because the correct and normal way to use an email is [email protected] without extra code. So please help me.
Forum: Plugins
In reply to: [Contact Form DB] My messages don't arriveCould you help me? pleasee
Forum: Plugins
In reply to: [Contact Form DB] My messages don't arriveWhen I dont use the “+xxxx” my contact form 7 send the correct values to my email for example radiobuttonvalue1 or radiobuttonvalue2 or radiobuttonvalue3 but your plugin capture the same value like radiobuttonvalue1 or radiobuttonvalue1 or radiobuttonvalue1. If I use the “+xxxx” my contact form 7 doesn’t send anything to my email but the plugin capture the correct values like radiobuttonvalue1 or radiobuttonvalue2 or radiobuttonvalue3 . Some months ago it worked with the “+xxxx” but now it doesnt work.
Forum: Plugins
In reply to: [Contact Form DB] My messages don't arriveAlso if I remove the symbol + it works,
[radio name_radio class:radiob "option1|test@domain"] [radio name_radio class:radiob "option2|test@domain"]
but the plugin doesn’t capture the correct value.Forum: Plugins
In reply to: [Contact Form DB] Export to xls failureI talked with the host support and I sent the link that you give us, and they installed the module, now for me it’s working fine, thanks
Forum: Plugins
In reply to: [Contact Form DB] Export to xls failureNo,it is not. The problem is happening on firefox too
Forum: Plugins
In reply to: [Contact Form DB] Export to xls failureI have the same problem, is Archive_Zip or php_zip? if is archive_zip , I have installed :c
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileThe wp editor is deactivated
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileHi there,
I am copying files, functions from my test site to my active site and when I download the xlsx file, I’m receiving the following error:
No se puede acceder a este sitio web
Es posible que la página web https://www.afsdp.org.pe/xxxxx/wp-admin/admin-ajax.php?action=cfdb-export&form=Formulario+de+trámites&enc=xlsx esté temporalmente inactiva o que se haya trasladado definitivamente a otra dirección.
ERR_INVALID_RESPONSEIn english it would be:
You can not access this site
It is possible that the website https://www.afsdp.org.pe/xxxxx/wp-admin/admin-ajax.php?action=cfdb-export&form=Formulario+de+trámites&enc=xlsx is temporarily down or it may have moved permanently to another address.
ERR_INVALID_RESPONSEDo you know what is happening? please
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileSorry but I don’t understand, could you make an example, please :c
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileYes , it’s a test data, so ,Could you make this new function?? because I dont know where to put $formData->posted_data array hahahah
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileHi there, sorry to bother you but in this function
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; }
Is possible to asign a position in the table? Right now the column is at the end, but my boss want to asign a position maybe next to its first value, thanks in advance
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml filemmm ok thanks . Could you give me a possible release date for the plugin upgrade?
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml filehi there,
So, Could you do something about the plugin wp editor? and Could you give me a release date for the plugin upgrade?
Thanks in advance
Forum: Plugins
In reply to: [Contact Form DB] Erro exporting xml fileSorry this is the function
function my_custom_style() { if (current_user_can('administrativos')) { echo '<style> #addColumnButton { display:none !important } </style>'; } } add_action('admin_head', 'my_custom_style');