by Tamás Kiss
1 (0 reviews)
Eazy Image Slider Block
Eazy Image Slider Block adds an easy to use and configurable slider block.
Tested up to WP 6.5 (Current: 6.9)
v1.0.0
Current Version v1.0.0
Updated 1 year ago
Last Update on 04 Apr, 2024
Synced 11 hours ago
Last Synced on
Rank
#52,651
-449 this week
Active Installs
1+
-50%
KW Avg Position
N/A
—
No change
Downloads
1.7K
+2 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
42,504
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 9 more installs to reach 10+
Rank Changes
Current
#52,651
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.0
- Last Updated
- Apr 04, 2024
- Requires WP
- 6.1+
- Tested Up To
- 6.5
- PHP Version
- 7.4 or higher
- Author
- Tamás Kiss
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Skyboot Custom Icons for Elementor
200K+ installs
#254
Performance Lab
200K+ installs
#267
Photo Gallery by 10Web – Mobile-Friendly Image Gallery
200K+ installs
#268
Frequently Asked Questions
Common questions about Eazy Image Slider Block
.eazy-image-slider .tns-nav button
and for the active state:
.eazy-image-slider .tns-nav button.tns-nav-active
Example you can put in your themes style.css:
.eazy-image-slider .tns-nav button {
background-color: #fcc;
}
.eazy-image-slider .tns-nav button.tns-nav-active {
background-color: #e22;
}
and for the active state:
.eazy-image-slider .tns-nav button.tns-nav-active
Example you can put in your themes style.css:
.eazy-image-slider .tns-nav button {
background-color: #fcc;
}
.eazy-image-slider .tns-nav button.tns-nav-active {
background-color: #e22;
}
.eazy-image-slider .tns-controls button:before
and for the hover state:
.eazy-image-slider .tns-controls button:hover:before
Example you can put in your themes style.css:
.eazy-image-slider .tns-controls button:before {
background-color: #fcc;
}
.eazy-image-slider .tns-controls button:hover:before {
background-color: #e22;
}
and for the hover state:
.eazy-image-slider .tns-controls button:hover:before
Example you can put in your themes style.css:
.eazy-image-slider .tns-controls button:before {
background-color: #fcc;
}
.eazy-image-slider .tns-controls button:hover:before {
background-color: #e22;
}
For the styles:
function eazyimageslider_remove_style() {
wp_dequeue_style( 'eazy-image-slider-style' );
}
add_action( 'wp_enqueue_scripts', 'eazyimageslider_remove_style', 99 );
For the script:
function eazyimageslider_remove_script() {
wp_dequeue_script( 'eazy-image-slider-view-script' );
}
add_action( 'wp_enqueue_scripts', 'eazyimageslider_remove_script', 99 );
What does vh mean in the restrict slides height setting?
VH is a unit relative to the viewport. Which means if you set your slides height to be restricted to 50vh, the slides will have the height of 50% of the viewport.
function eazyimageslider_remove_style() {
wp_dequeue_style( 'eazy-image-slider-style' );
}
add_action( 'wp_enqueue_scripts', 'eazyimageslider_remove_style', 99 );
For the script:
function eazyimageslider_remove_script() {
wp_dequeue_script( 'eazy-image-slider-view-script' );
}
add_action( 'wp_enqueue_scripts', 'eazyimageslider_remove_script', 99 );
What does vh mean in the restrict slides height setting?
VH is a unit relative to the viewport. Which means if you set your slides height to be restricted to 50vh, the slides will have the height of 50% of the viewport.