Hi there,
I took a glance at the tubepress code and can't seem to find where its widget code is. Where might I find it?
Thanks so much,
--Dany.

Modifying the tubepress widget
Started by Dany Joumaa, May 12 2011 06:59 PM
7 replies to this topic
#1
Posted 12 May 2011 - 06:59 PM
#2
Posted 10 August 2011 - 03:34 AM
Dany,
Did you find the answer to this. I have the same issue. I want to remove the title from the widget.
Any clues on where to modify this would be great.
Thanks.
Paul
Did you find the answer to this. I have the same issue. I want to remove the title from the widget.
Any clues on where to modify this would be great.
Thanks.
Paul
#3
Posted 12 August 2011 - 10:15 PM
Hi Paul,
You can modify the widget's output by editing https://github.com/e...lo...s.php#L105. If you want to remove the title entirely, I would change it from
You can modify the widget's output by editing https://github.com/e...lo...s.php#L105. If you want to remove the title entirely, I would change it from
echo $before_widget . $before_title .$context->get(org_tubepress_api_const_options_names_Widget::TITLE) .$after_title . $out . $after_widget;to
echo $before_widget . $out . $after_widget;Let me know how that works for you. Thanks!
#4
Posted 18 August 2011 - 01:34 AM
What if I want to move the title underneath the main video? Right now it appears above it. Thanks!
#5
Posted 21 August 2011 - 03:24 PM
What if I want to move the title underneath the main video? Right now it appears above it. Thanks!
Are you talking about the title that shows up above the embedded video player? Or the title that shows up above the video thumbnails in the widget? Let me know and I can point you in the right direction. Thanks!
#6
Posted 22 August 2011 - 01:37 AM
The title that appears above the embedded video player. I'd like to move it down so it appears below the main video, but above the thumbnails - in the middle. Thanks Eric!
#7
Posted 24 August 2011 - 12:36 AM
OK, no problem. You'll want to make an edit to one of TubePress's HTML templates, and I would highly recommend making your changes as part of a custom TubePress theme. Basically, here's what you'll want to do:
- Create a custom TubePress theme. Call it "mytheme" for this example.
- Copy sys/ui/themes/default/players/normal.tpl.php to content/themes/mytheme/players/normal.tpl.php
- Edit content/themes/mytheme/players.normal.tpl.php. You'll want to swap the two inner divs. e.g. change it from
<div id="tubepress_embedded_title_<span class="syntaxdefault"><?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" class="tubepress_embedded_title"> <?php echo ${org_tubepress_api_const_template_Variable::VIDEO}->getTitle(); ?> </div><div id="tubepress_embedded_object_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>"> <?php echo ${org_tubepress_api_const_template_Variable::EMBEDDED_SOURCE}; ?> </div></span>
to
<div id="tubepress_embedded_object_<span class="syntaxdefault"><?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>"> <?php echo ${org_tubepress_api_const_template_Variable::EMBEDDED_SOURCE}; ?> </div><div id="tubepress_embedded_title_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" class="tubepress_embedded_title"> <?php echo ${org_tubepress_api_const_template_Variable::VIDEO}->getTitle(); ?> </div></span>
#8
Posted 24 August 2011 - 01:35 AM
Cake walk! Thanks Eric.