Add class to Elementor Image

Περιγραφή

You need add your custom CSS class to Elementor image widget? Me too!

So i created this simple plugin to help. Just install and use the new input in Image widget to add your custom class.

More plugins?

Check my other plugins: WordPress Plugins

WordPress Tips?

Check my blog: WordPress Tips

Plugins Suggestions?

Please, send to me: plugins@eduardovillao.me

Στιγμιότυπα

  • image custom class

Εγκατάσταση

  1. Install plugin in your WordPress.

  2. Open Elementor editor and use the new input in Image Widget to set custom Class.

Κριτικές

26 Μαρτίου 2024
I use SiteGround for my hosting. It's built in caching plugin has a lazy load setting. Unfortunately this broke a particular grid layout in my design. There is an option to stop lazy loading on and individual basis by adding the class "skip-lazy" to the desired image. This plugin allowed me to do just that.
28 Φεβρουαρίου 2023
Was trying to figure out way to add a class only to my featured images in my Elementor layout for blog posts, so I can disable lazyload on them, and this plugin works great. Highly recommend it. That said, I ended up deciding not to use it since I found a Functions.php code snippet that worked for my needs. I prefer to not use additional plugins if I can help it. But if you need more granular control over classes on images and you use Elementor, this plugin is what you need. But if you just need to do what I did, here's the snippet that worked for me: function db_add_class_to_single_featured_image($attr) { remove_filter('wp_get_attachment_image_attributes','db_add_class_to_single_featured_image'); if ( is_single() ) { $attr['class'] .= ' no-lazy'; } return $attr; } add_filter('wp_get_attachment_image_attributes','db_add_class_to_single_featured_image');
20 Δεκεμβρίου 2022 1 απάντηση
I was hoping to exclude background images from lazy loading, but I need to be able to add a class to do it. This unfortunately does not do that. For my needs it's 0 stars, but I give it 5 stars for other uses, so it's a 3 average for me.
5 Δεκεμβρίου 2022
Thank you for this. I use it to disable lazy loading on images loaded inside the viewport.
15 Απριλίου 2022
Thank you for create this plugin. It's realy help
Ανάγνωση όλων των 8 κριτικών

Συνεισφέροντες & Προγραμματιστές

“Add class to Elementor Image” είναι λογισμικό ανοιχτού κώδικα. Οι παρακάτω έχουν συνεισφέρει στη δημιουργία του.

Συντελεστές

Το “Add class to Elementor Image” έχει μεταφραστεί σε 1 γλώσσα. Ευχαριστούμε τους μεταφραστές για τις συνεισφορές τους.

Μεταφράστε το “Add class to Elementor Image” στην γλώσσα σας.

Ενδιαφέρεστε για την ανάπτυξη;

Περιηγηθείτε στον κώδικα, ανατρέξτε στο αποθετήριο SVN ή εγγραφείτε στο αρχείο καταγραφής αλλαγών ανάπτυξης μέσω RSS .

Σύνοψη αλλαγών

1.3

Fix: do not workin on the latest versions of Elementor.
Changed: Compatibility with WordPress 6.3.

1.2.4

Changed: Compatibility with WordPress 6.2.

1.2.3

Changed: Compatibility with WordPress 6.1.

1.2.2

Changed: Compatibility with WordPress 6.0.

1.2.1

  • Fix php notice “Undefined index: cei_image_custom_class” in some cases.
  • Support to plugins translation.
  • Improve plugins header requirements.
  • Compatibility with WP 5.8.3.

1.2

  • Add support to “Featured Image” Widget (Elementor PRO).
  • Compatibility with WP 5.8.

1.1

  • Add support to “Image Box” Widget.

1.0

  • Initial release.