nghtmre
Forum Replies Created
-
I did the same. I’m waiting for a fix. Thank you for your message, it reassures me that I am not alone ??
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] After UpdateSince the last update:
The Back display is not stable.
The validation of registrations is difficult
Not all actions are difficult.I’ve been using the plugin for 2 years, 1st time an update is this shitty….
It is and it works again. Thanks for the update.
Forum: Plugins
In reply to: [Travelers' Map] Display errorHello,
Thank you for your investment and your response.
I will study that.
Really thank you.
Cordially.
Forum: Plugins
In reply to: [WP Job Manager] Search Logic and Geocoding Not WorkingHello,
Sorry to disturb you.
What plugin do you use to get the map?I’m looking to achieve a bit the same thing and I can’t find the best plugin.
I thank you in advance.
cordially
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Error in consoleOk I found the solution.
It was WP Rocket acting up.I’m sorry for the inconvenience.
Forum: Plugins
In reply to: [Travelers' Map] Task automationHello @socrapop,
Thank you very much for your reply.
I totally understand that you don’t have time and this is normal.Your plugin is already very well thought out and is already helping me a lot.
It’s a great job.
I’m going to see with a friend who has a better level than mine in the hope of …
Thank you again for your answer.
cordially
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] link instead of descriptionOk thank you for your reply.
cordially
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] attachmentsHello,
I thank you for your feedback.
I am using the Astra theme.
I think and hope that this is not due to the theme in view of the number of downloads.
Otherwise you would already know.Below is the code for one of the forms I use.
However, even the forms where there is no conditional, the attachments are not transmitted.
As soon as I deactivate your plugin it works fine.
I don’t see why at all
I thank you in advance.
Regards
<div id="formulaire-responsive" class="clearfix"> <div class="rang-form"> <div class="demi-colonne">Votre prénom [text* first-name]</div> <div class="demi-colonne">Votre nom [text* last-name]</div> </div> <div class="rang-form"> <div class="demi-colonne">Email [email* your-email]</div> <div class="demi-colonne">Téléphone [text* your-phone]</div> </div> <div class="rang-form"> <div class="colonne">Je suis[radio radio-31 use_label_element default:1 "un(e) Pompiers de Paris" "un(e) ancien(ne) Pompiers de Paris" "un(e) conjoint(e)" "un(e) Militaire"]</div> </div> [group group-bspp clear_on_hide] <div class="rang-form"> <div class="colonne">Votre matricule[number* number-351 min:10000 max:150000 class:colonne]</div> </div> [/group] [group group-conjoint clear_on_hide] <div class="rang-form"> <div class="colonne">Matricule de votre conjoint(e)[number* number-351 min:10000 max:150000 class:colonne]</div> </div> <div class="rang-form"> <div class="colonne">Nom de votre conjoint(e)[text* name-ctp]</div> <div class="colonne">Prénom de votre conjoint(e)[text* first-ctp]</div> </div> [/group] [group group-militaire clear_on_hide] <div class="rang-form"> <div class="colonne">Votre NID [number* number-351 min:10000 max:150000 class:colonne]</div> </div> <div class="rang-form"> <div class="colonne">Suivi par un Conseiller DEFMOB[select* menu-769 include_blank "PDM Nord-Est" "PDM IDF - MRO" "PDM Ouest" "PDM Sud-Ouest" "PDM Sud Est"]</div> </div> <div class="rang-form"> <div class="colonne">Nom de votre conseiller[text* name-ctp]</div> <div class="colonne">Prénom de votre conseiller[text* first-ctp]</div> </div> [/group] <div class="rang-form"> <div class="colonne">Numéro de l'offre [number* number-355 min:1 max:9999999 class:colonne id:refId]</div> </div> <div class="rang-form"> <div class="colonne">Lien de l'offre [text* menu-599 class:colonne id:jobPermalien]</div> </div> <div class="rang-form"> <div class="colonne">Votre message [textarea* your-message]</div> </div> <div class="rang-form"> <div class="colonne">Laissez nous votre CV [file file-900 limit:1048576 filetypes:doc|docx|pdf class:colonne]</div> </div> [acceptance acceptance-588] j'accepte les conditions générales d'utilisation. [/acceptance] <div class="rang-form"> <div class="colonne">[submit "Envoyer"]</div> </div> </div><!--fin de formulaire-responsive-->
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] attachmentsI would like to point out that even the forms on which there is no conditional, the attachments are not sent in the reception email.
Forum: Plugins
In reply to: [WP Job Manager] Download Joblisting DataIf you find a solution I’m interested
Ok thank you for your reply.
I am obliged to orient myself elsewhere in this case.
Good luck for the future.
Regards.
Forum: Plugins
In reply to: [WP Job Manager] Show numbers of jobs in the meta description (per category)Hello,
personally I wanted to display the number of offers available so I did that.
I hope this will help you.Cordially
<?php $query = new WP_Query( array('post_type' => 'job_listing','meta_key' => '_filled', 'meta_value' => 0 ) ); echo $query->found_posts; ?>
Forum: Plugins
In reply to: [WP Job Manager] Job KeywordHello,
I have provided you with the documentation link that might help you.
Do not hesitate, cordially
function my_wpjm_meta_key_dm() { global $wpdb, $job_manager_keyword; $searchable_meta_keys[] = '_my_meta_field'; return $searchable_meta_keys; } add_filter('job_listing_searchable_meta_keys', 'my_wpjm_meta_key_dm');
Forum: Plugins
In reply to: [WP Job Manager] Job KeywordHope this piece of code can help you.
Cordially
function my_wpjm_meta_key_dm() { global $wpdb, $job_manager_keyword; $searchable_meta_keys[] = '_job_location'; return $searchable_meta_keys; } add_filter('job_listing_searchable_meta_keys', 'my_wpjm_meta_key_dm');
- This reply was modified 3 years, 3 months ago by nghtmre.