maxwell398
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] wp-json/contact-form-7/v1/contact-forms/6580/feedback 500Hello,
I have a same problem.
I disabled all plugins except contact form, I created a basic form that I tested on my page but I still get the error and the form is not sent, the wheel is spinning.

Site : https://preprod.girod.co.uk/contact/
Plugin : contact form 7,
Material Design for Contact Form 7 (Premium), Akismet Anti-Spam
Template : H-code
Do you have a solution?
Thank you for your help
Sincerely
Maxime Donzé
Forum: Plugins
In reply to: [Image Hotspot by DevVN] Ajouter le texte alternatif sur l’image principaleOk i have a solution,
code :
<div class="wrap_svl" id="body_drag_<?php echo $idPost;?>"> <div class="images_wrap"> <img alt="<?php the_title(); ?>" src="<?php echo $maps_images; ?>"> </div>I get the title of the photo, it’s not the alt tag but it’s ok for me
- This reply was modified 5 years ago by maxwell398.
Forum: Plugins
In reply to: [Image Hotspot by DevVN] Ajouter le texte alternatif sur l’image principaleHello @erand
Thank you for your reply but the objective is to get the completed “alt” field from the WordPress media library automatically by modifying the source code below:
<div class="wrap_svl" id="body_drag_<?php echo $idPost;?>"> <div class="images_wrap"> <img src="<?php echo $maps_images; ?>"> </div>I searched and found this :
<?php echo get_post_meta($attachment_id, '_wp_attachment_image_alt', true) ?>but I am not a developer and I don’t know how to adapt it to solve my problem.
Any ideas?
thank you in advance
Forum: Plugins
In reply to: [WP Swiper] add the alt tag in the slidervoici le code en question
$images = get_post_meta($slider_id, 'vdw_gallery_id', true); if(isset($images)){ if($randomize_slides == true){shuffle($images);} foreach($images as $image){ $html .= " <img class='swiper-slide' src='".wp_get_attachment_url($image, 'large')."' />"; } }