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.8.2)
v1.3.1.3
Current Version v1.3.1.3
Updated 13 years ago
Last Update on 27 Oct, 2012
Synced 7 hours ago
Last Synced on
Rank
#40,324
—
No change
Active Installs
10+
—
No change
KW Avg Position
10.7
—
No change
Downloads
12.2K
+2 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
16,785
Ranks to Climb
-
Growth Needed
11
Current Installs
Need 9 more installs to reach 20+
Rank Changes
Current
#40,324
Change
Best
#
Active Installs Growth
Current
11+
Growth
Peak
11
Downloads Growth
Downloads
Growth
Peak
Reviews & 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 | 17 hours ago |
| livestreams | 7 | — | Tag | 17 hours ago |
| livestream | 20 | — | Tag | 17 hours ago |
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
Similar Plugins
Skyboot Custom Icons for Elementor
200K+ installs
#255
Performance Lab
200K+ installs
#265
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#266
Instant Images – One-click Image Uploads from Unsplash, Openverse, Pixabay, Pexels, and Giphy
200K+ installs
#279
Dear Flipbook – PDF Flipbook, 3D Flipbook, PDF embed, PDF viewer
100K+ installs
#287
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').