U
by christopher.amirian
0 (0 reviews)
UIKIT WP Integrator
Wordpress plugin for integrating UIKIT front-end framework from yootheme.com
Tested up to WP 3.9.40 (Current: 6.9.4)
v1.1.1
Current Version v1.1.1
Updated 11 years ago
Last Update on 13 Jul, 2014
Refreshed 6 hours ago
Last Refreshed on
Rank
#22,173
-12 this week
Active Installs
40+
-4.8%
KW Avg Position
14
—
No change
Downloads
4.3K
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 50
40+
50+
1,986
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 4 more installs to reach 50+
Rank Changes
Current
#22,173
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
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock 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.1.1
- Last Updated
- Jul 13, 2014
- Requires WP
- 3.9+
- Tested Up To
- 3.9.40
- PHP Version
- N/A
- Author
- christopher.amirian
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- 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,708
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
Nextend Social Login and Register
200K+ installs
#255
Firelight Lightbox
200K+ installs
#257
Popup Builder – Create highly converting, mobile friendly marketing popups.
200K+ installs
#263
Frequently Asked Questions
Common questions about UIKIT WP Integrator
No, your theme already has the UIKIT framework integrated
Yes, just uncheck addons from settings page of the plugin located under Settings -> UIKIT Integrator menu
Add this code inside functions.php of your theme: add_theme_support( 'menus' ); if (function_exists('register_nav_menus')) { $locations = array( 'primary' => 'Primary Navigation' ); register_nav_menus( $locations ); } function nav_menu_item_parent_classing( $classes, $item ) { global $wpdb; $has_children = $wpdb -> get_var( "SELECT COUNT(meta_id) FROM {$wpdb->prefix}postmeta WHERE meta_key='_menu_item_menu_item_parent' AND meta_value='" . $item->ID . "'" ); if ( $has_children > 0 ) { array_push( $classes, "uk-parent" ); } return $classes; } add_filter( "nav_menu_css_class", "nav_menu_item_parent_classing", 10, 2 ); class Child_Wrap extends Walker_Nav_Menu { function start_lvl(&$output, $depth = 0, $args = array()) { $indent = str_repeat("\t", $depth); $output .= "\n$indent<div class=\"uk-dropdown uk-dropdown-navbar\"><ul class=\"uk-nav uk-nav-navbar\">\n"; } function end_lvl(&$output, $depth = 0, $args = array()) { $indent = str_repeat("\t", $depth); $output .= "$indent</ul></div>\n"; } }