Default selector in Ads-Mediabox allows you to catch images in almost 90% of WordPress themes.
Only some specific themes may require other selectors. Here’s the list of composite selectors for popular themes:
Astra
|
.ast-container a[href$=".jpg"], .ast-container a[href$=".png"], .ast-container a[href$=".jpeg"] |
Avada
|
.fusion-row a[href$=".jpg"], .fusion-row a[href$=".png"], .fusion-row a[href$=".jpeg"] |
or
|
.post-content a[href$=".jpg"], .post-content a[href$=".png"], .post-content a[href$=".jpeg"] |
BeTheme
|
.sections_group a[href$=".jpg"], .sections_group a[href$=".png"], .sections_group a[href$=".jpeg"] |
ColorMag
|
.clearfix a[href$=".jpg"], .clearfix a[href$=".png"], .clearfix a[href$=".jpeg"] |
Enfold
|
.container a[href$=".jpg"], .container a[href$=".png"], .container a[href$=".jpeg"] |
Hestia
|
.row a[href$=".jpg"], .row a[href$=".png"], .row a[href$=".jpeg"] |
Kadence
|
.entry-content-wrap a[href$=".jpg"], .entry-content-wrap a[href$=".png"], .entry-content-wrap a[href$=".jpeg"] |
Newsup
|
.row a[href$=".jpg"], .row a[href$=".png"], .row a[href$=".jpeg"] |
News Way
|
.container-fluid a[href$=".jpg"], .container-fluid a[href$=".png"], .container-fluid a[href$=".jpeg"] |
Spintech
|
.col a[href$=".jpg"], .col a[href$=".png"], .col a[href$=".jpeg"] |
The Newspaper
|
.middle_inner a[href$=".jpg"], .middle_inner a[href$=".png"], .middle_inner a[href$=".jpeg"] |
To disable built-in lightbox (iLightBox) – insert this code into functions.php child themes.
|
function remove_scripts(){ wp_dequeue_script('iLightBox' ); wp_deregister_script('iLightBox' ); } add_action( 'wp_enqueue_scripts', 'remove_scripts', 100 ); |