D
by Guillaume Raineri
5 (4 reviews)
DbTable to DataTable
Display mysql datas into datatable.
Tested up to WP 4.4 (Current: 6.9.4)
vtrunk
Current Version vtrunk
Updated 10 years ago
Last Update on 12 Feb, 2016
Refreshed 6 hours ago
Last Refreshed on
Rank
#23,809
—
No change
Active Installs
30+
—
No change
KW Avg Position
102.5
—
No change
Downloads
4K
+2 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(4 reviews)
Next Milestone 40
30+
40+
1,515
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 3 more installs to reach 40+
Rank Changes
Current
#23,809
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
5.0
4 reviews
Overall
100%
5
4
(100%)
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
- trunk
- Last Updated
- Feb 12, 2016
- Requires WP
- 4.4+
- Tested Up To
- 4.4
- PHP Version
- N/A
- Author
- Guillaume Raineri
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 4
- 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,701
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#952
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about DbTable to DataTable
You can edit the main dbTable2dataTable.php file and change these values : $this->defaults = array( 'from' => null, // Mysql source table 'select' => null, // Select specific columns 'except' => null, // Ignore specific columns 'cssclass' => null, // Specify custom CSS class for the <table> 'comments' => false, // Use field comments instead of column name 'pagination' => false, // Enable / Disable pagination 'limit' => 25, // Limit of results per page 'width' => '100', // Set width in % of the table 'language' => 'English' // Default language : French );
By default, column names will be the field name (e.g: product_id, custom_field). But if you want to have custom/pretty names you should modify your table and add comments to the fields (e.g : ALTER TABLE product CHANGE product_id product_id INT( 11 ) COMMENT 'Product ID'
This plugin is not intended to display WordPress datas. I blocked this for security reasons. It aims to give you the ability to show custom datas from custom tables. I had to extract informations from an ERP and display them.
You can remove the security check line 58 by deleting or substr($atts['from'], 0,strlen($wpdb->prefix)) === $wpdb->prefix
You probably misstyped the language name. Make sure you write it exactly with the correct name. Refer to : https://www.datatables.net/plug-ins/i18n/ E.g for french : //cdn.datatables.net/plug-ins/1.10.10/i18n/French.json , the parameter will be French with the first letter in uppercase.