L
by Laurent (KwarK) Bertrand
1 (0 reviews)
liveTV Bundle
LiveTV Bundle for WordPress. Live stream plugin for wordpress compatible with own3d.tv, twitch.tv, justin.tv
Tested up to WP 3.4 (Current: 6.9)
v1.3.1.3
Current Version v1.3.1.3
Updated 13 years ago
Last Update on 27 Oct, 2012
Synced 13 hours ago
Last Synced on
Rank
#36,049
-1052 this week
Active Installs
10+
—
No change
KW Avg Position
11.7
—
No change
Downloads
12.2K
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
9,599
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 20+
Rank Changes
Current
#36,049
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 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Gamer | 5 | — | Tag | 14 hours ago |
| livestreams | 7 | — | Tag | 14 hours ago |
| livestream | 23 | — | Tag | 14 hours ago |
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.3.1.3
- Last Updated
- Oct 27, 2012
- Requires WP
- 0+
- Tested Up To
- 3.4
- PHP Version
- N/A
- Author
- Laurent (KwarK) Bertrand
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,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
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 liveTV Bundle
View exemple in /extends/extend.php and its /**comments**/.
The folder and its php files are automaticaly listed and parsed by the plugin.
Just create your own personal php file (view exemple in /extends/ for more basics informations and make your first hook).
you may enqueue your script or your style and maybe before dequeue original css/script
dequeue the original style: http://codex.wordpress.org/Function_Reference/wp_dequeue_style
dequeue some original script: http://codex.wordpress.org/Function_Reference/wp_dequeue_script
Fix css "large view"
A message for developer for the 'Large view'.
Currently, the best solution I have found to cheat on one maximum of themes and display a 'Large view' it is a simple css cheating.
This cheating is loaded on request 'large view' and stop the display of the sidebar and enlarge the <div id='content'>.
This cheating is in a light css file /css/page-livetreams-hook.css
If your class or ID of <div main content> and <ul widgets list> from your current theme have a exotic class for this div/ul, maybe your large view have a css bug.
Replace the content of this css file with the good class/ID from your theme for this div/ul
e.g.
`
@charset utf-8;
.themename-sidebar{ /* change .themename-sidebar by the good ID/Class of your sidebar container */
display:none!important;
overflow:hidden!important
}
.themename-content { /* change .themename-content by the good ID/Class of your content container */
width:100%!important;
margin: 0 auto;
padding: 0;
}
full-view-switcher {
width:100%!important;
}
`
I look at the core of wordpress for a php function for the futur and I will added this function in a newest version for unset really the sidebar without css cheating for 'Large view'. Or enventually, a add_class function.
To change the style of the widget with your own style
I have added some class/ID for the span of informations @ the right side of each thumbnail (when channel is offline, and also when channel is online).
The class start with w-*
You may create a simple css load for the widget only when the page isn't your_livestream_page. A simple wordpress function is
if(!is_page('your-livestream-page-ID')){
wp_enqueue_style('your-personal-style-for-the-livestream-widget');
}
If you are a JQuery developer/passionate, to manipulate this class/ID/css, you may enqueue your script in the same way and maybe before dequeue original css/script
dequeue the original style: http://codex.wordpress.org/Function_Reference/wp_dequeue_style
dequeue some original script: http://codex.wordpress.org/Function_Reference/wp_dequeue_script
if(!is_page('your-livestream-page-ID')){
wp_enqueue_script('your-personal-script-for-the-livestream-widget');
}
You may personnalize also the widget only for the home page with is_home function
if(is_home()){
wp_enqueue_style('another-personal-style-for-the-livestream-widget');
}
The same way for your JQuery script
if(is_home()){
wp_enqueue_script('another-personal-script-for-the-livestream-widget');
}
More information here
The folder and its php files are automaticaly listed and parsed by the plugin.
Just create your own personal php file (view exemple in /extends/ for more basics informations and make your first hook).
you may enqueue your script or your style and maybe before dequeue original css/script
dequeue the original style: http://codex.wordpress.org/Function_Reference/wp_dequeue_style
dequeue some original script: http://codex.wordpress.org/Function_Reference/wp_dequeue_script
Fix css "large view"
A message for developer for the 'Large view'.
Currently, the best solution I have found to cheat on one maximum of themes and display a 'Large view' it is a simple css cheating.
This cheating is loaded on request 'large view' and stop the display of the sidebar and enlarge the <div id='content'>.
This cheating is in a light css file /css/page-livetreams-hook.css
If your class or ID of <div main content> and <ul widgets list> from your current theme have a exotic class for this div/ul, maybe your large view have a css bug.
Replace the content of this css file with the good class/ID from your theme for this div/ul
e.g.
`
@charset utf-8;
.themename-sidebar{ /* change .themename-sidebar by the good ID/Class of your sidebar container */
display:none!important;
overflow:hidden!important
}
.themename-content { /* change .themename-content by the good ID/Class of your content container */
width:100%!important;
margin: 0 auto;
padding: 0;
}
full-view-switcher {
width:100%!important;
}
`
I look at the core of wordpress for a php function for the futur and I will added this function in a newest version for unset really the sidebar without css cheating for 'Large view'. Or enventually, a add_class function.
To change the style of the widget with your own style
I have added some class/ID for the span of informations @ the right side of each thumbnail (when channel is offline, and also when channel is online).
The class start with w-*
You may create a simple css load for the widget only when the page isn't your_livestream_page. A simple wordpress function is
if(!is_page('your-livestream-page-ID')){
wp_enqueue_style('your-personal-style-for-the-livestream-widget');
}
If you are a JQuery developer/passionate, to manipulate this class/ID/css, you may enqueue your script in the same way and maybe before dequeue original css/script
dequeue the original style: http://codex.wordpress.org/Function_Reference/wp_dequeue_style
dequeue some original script: http://codex.wordpress.org/Function_Reference/wp_dequeue_script
if(!is_page('your-livestream-page-ID')){
wp_enqueue_script('your-personal-script-for-the-livestream-widget');
}
You may personnalize also the widget only for the home page with is_home function
if(is_home()){
wp_enqueue_style('another-personal-style-for-the-livestream-widget');
}
The same way for your JQuery script
if(is_home()){
wp_enqueue_script('another-personal-script-for-the-livestream-widget');
}
More information here
enqueue script: http://codex.wordpress.org/Function_Reference/wp_enqueue_script (view also wp_register_script)
enqueue style: http://codex.wordpress.org/Function_Reference/wp_enqueue_style (view also wp_register_style)
enqueue style: http://codex.wordpress.org/Function_Reference/wp_enqueue_style (view also wp_register_style)
Viewers: offline
user: testchannel: ironsquid
View: Normal Large
Live: Offline
user: testchannel: ironsquid
View: Normal Large
Live: Offline
Viewers: 12345
user: testchannel: ironsquid
View: Normal Large
Live! date and hours
Tip dialog effect bug for some themes
I think maybe you have 2 load of q-tip (1.x version or adaptative work of this kind) loaded by your theme and eventually JQuery loaded by your theme from external static repository (Google). It is possible the problem comes from something like that: JQuery loaded 2 times or eventually q-tip css loaded 2 times or 2 different versions of q-tip.js loaded or eventually q-tip.js loaded 2 times. The plugin use the q-tip 2.0 version and the latest JQuery version included by wordpress (this plugin was developed under wordpress 3.3.2 version).
You may try to change one from theme or one from plugin. To changes the loading from the plugin, the good file is the file plugin-livetv-display-lives.php (to change or stop the load of JQuery or stop the original css q-tip file). but after some adaptative work is necessary. You may try also to stop the external load of JQuery from your theme (in your header.php file) and see if your theme made a bug for slider or other dependancies of JQuery from your theme.
If you decide to change the tip 'class' for dialog effect from the plugin and made some adaptative work (with the same class from your "q-tip" theme), is in the file /page-frontend/page-livestreams.php (just make a search on 'bubble').
user: testchannel: ironsquid
View: Normal Large
Live! date and hours
Tip dialog effect bug for some themes
I think maybe you have 2 load of q-tip (1.x version or adaptative work of this kind) loaded by your theme and eventually JQuery loaded by your theme from external static repository (Google). It is possible the problem comes from something like that: JQuery loaded 2 times or eventually q-tip css loaded 2 times or 2 different versions of q-tip.js loaded or eventually q-tip.js loaded 2 times. The plugin use the q-tip 2.0 version and the latest JQuery version included by wordpress (this plugin was developed under wordpress 3.3.2 version).
You may try to change one from theme or one from plugin. To changes the loading from the plugin, the good file is the file plugin-livetv-display-lives.php (to change or stop the load of JQuery or stop the original css q-tip file). but after some adaptative work is necessary. You may try also to stop the external load of JQuery from your theme (in your header.php file) and see if your theme made a bug for slider or other dependancies of JQuery from your theme.
If you decide to change the tip 'class' for dialog effect from the plugin and made some adaptative work (with the same class from your "q-tip" theme), is in the file /page-frontend/page-livestreams.php (just make a search on 'bubble').