[ Video Sharing CMS v4 ] UltimaTube/Brasil Theme How To/Support

Started by PHPVibe A.,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Marius P.

If it works, then it should be it!

Hit ctrl + shift + r on the page for a refresh with clear cache.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Abraham

Please tell me how I can do the following changes:
1.   Browse  videos etc.
2.   Eliminate free space
3.   Move Facebook fun to the wright up angle
4.   To have New Users and Playlist under it,  all like http://demo.phpvibe.com/

http://prntscr.com/4nqq9l
*****************************************************************

5.   To have the zoom in picture in the preview as now it shows only central part of the picture.
http://prntscr.com/4nqr6l
http://prntscr.com/4nqrud
Can't attach print screen, sorry if repeating
  •  

Marius P.

I'm not sure why you want to change that theme like the default theme, just use the default theme then it would be simpler to past some css elements you like in this theme to the default theme than rethink this theme and edit a tone of files.

The images are resized with Timthumb http://www.binarymoon.co.uk/projects/timthumb/ , you can alter the function in lib/functions.php function thumb_fix and change the parameters for image manipulation in the line:



return site_url().'res.php?src='.$thumb.'&q=100&w='.$w.'&h='.$h;
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

identicalmedia

Quote from: @Mario on
Using the wider version of the video page (videoinedit.com alike)

Copy /large video player's folder content to tpl/brasil/
Open the admin panel and go to Settings -> Players Config

Change video page settings to:
width: 840
heigh: 480


(or test and choose your own dimensions).

Where do i get the large video folder ?
  •  

Marius P.

If you had to guess, where would you go?

I assume you would redownload the theme and look for it http://get.phpvibe.com/buy?id=23

Come on man, you are as old here as I am :)
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

identicalmedia

Quote from: @Mario on
If you had to guess, where would you go?

I assume you would redownload the theme and look for it http://get.phpvibe.com/buy?id=23

Come on man, you are as old here as I am :)

;D thanks bro
  •  

x5000x

Mario,

There is a problem in UltimaTube theme when you add more than 10 sub-categories. You can not see more then 10 subcategories on the page.  Is there a way to get this fixed and also list 10 subcategories in one row on the page then another 10 in second row etc. Any suggestion to fix this?

Thanks!
  •  

x5000x

Quote from: x5000x on
Mario,

There is a problem in UltimaTube theme when you add more than 10 sub-categories. You can not see more then 10 subcategories on the page.  Is there a way to get this fixed and also list 10 subcategories in one row on the page then another 10 in second row etc. Any suggestion to fix this?

Thanks!

Now i see little circles with arrows to list subcategories but when i click it one on the right site it only lists 1 subcategory then circle disappears but there is more categories. Is there way i can make these for example have one row with 10 subcategories on the page then second row with 10 more etc and remove these circles with arrows?
  •  

x5000x

Quote from: megaman79 on
Jquery fix for mobiles (Hide always visible sidebar):

In phpvibe_app.js
If you want to hide it by default in mobiles.

if ($( window ).width() < 600) {
if ( $("#sidebar").is(":visible") ) {
 $("#sidebar").toggleClass('hide');
}
}




In the document ready.

should look like

$(document).ready(function(){
if ($( window ).width() < 600) {
if ( $("#sidebar").is(":visible") ) {
 $("#sidebar").toggleClass('hide');
}
}


I can't find the code to change it in the Brasil theme. To hide the Sidebar for Mobile.


@Mario,
I want to show sidebar menu on computer and that works after change. I want it to hide by default on mobile device but in UltimaTube v2 in phpvibe_app.js there is no code above? When do i need to change to make it work?
  •  

Marius P.

There is no change in that js file, you look for

$(document).ready(function(){



You paste the rest.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

@Mario,

Is there a way to all subcategories on one page. For example:
1st row 10 subcategories then goes to row 2 and have 10 subcategories then row 3 have 10 subcategories etc instead how is now you have 10 subcategories then you have to push button to get extra but I want them all visible on same page instead of pushing left and right.
  •  

Marius P.

Just remove the carousel class and add your own class (you can then style the list as you please from css)
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

@Mario,

Could you please post the code i should use and css style i don't know php. I would be very thankful.
  •  

Marius P.

Bit later please, I don't have a copy right now.
will get to the office and help.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

Quote from: @Mario on
Bit later please, I don't have a copy right now.
will get to the office and help.

@Mario,
Not a problem at all whenever you can.
  •  

x5000x

Quote from: @Mario on
Bit later please, I don't have a copy right now.
will get to the office and help.

@Mario,
.i don't want being silly but anything on this because if i don't have these subcategories visible my site is worthless.
  •  

Marius P.

So basically what triggers the carousel is this:

$( '#carousel' ).elastislide();



which means you can simply remove id="carousel" from list, it should split them inline.

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

  •  

x5000x

Quote from: x5000x on
In which file this is located?

I found them in channel.php and channels.php
When i remove id="carousel" to <ul class="elastislide-list">';
it lists only 1 subcategory per row and then second row have one subcategory instead of 10 and goes on and on.
  •  

Marius P.

Change in the id the carousel to MyList

then in css do this:

#MyList li {display:inline-block; position:relative; float:left;}


You can style it even more.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

@Mario,

Which file exactly?

When I change /tpl/UltimaTube/channel.php

FROM:
if($subchannels) { 
$heading_meta .= ' <div class="fake-padding black-slider">
<ul id="carousel" class="elastislide-list">';
foreach ( $subchannels as $more ) {


TO:
if($subchannels) { 
$heading_meta .= ' <div class="fake-padding black-slider">
<ul id="MyList" class="elastislide-list">';
foreach ( $subchannels as $more ) {


Then added
#MyList li {display:inline-block; position:relative; float:left;}

/tpl/UltimaTube/css/vibe.style.css


In this case subcategories are not visible at all.
  •  

Marius P.

Right click on the spot, inspect an <li> let me know the css that touches it.
I assume "elastislide-list" overides this
display:inline-block;
so go with
display:inline-block!important;
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

x5000x

@Mario,

Thank you very much.
One more thing,

Under music categories i have main category ( which is sorted by alphabet) then i have subcategory in main category (which is sorted by alphabet) then i have one more subcategory in previous subcategory which is sorted by date added. How can i change it to be sorted by alphabet as well?
MAIN CATEGORY (alphabet) => SUBCATEGORY (alphabet) => SUBCATEGORY (default are by date added) need by alphabet as well.

Thanks in advance,
  •  

krejcis

Hi Marion and everybody.
I observed problem in Brasil theme. Do you know how to fix it?
Precondition:
-to have video several categories with several subcategories

Steps:
-Press in menu "video channels"
- check subcategory icons

Problem:
- first videochannel has correct subcategory icons.
further videochannels doesn´t display subcategory icons
-check it in official Brasil demo page
- see printscreen - there are missing icons for: "2013 trailers","2013 trailers", ..

Thanks for the solution!!

Regards
Jan

  •  

Marius P.

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Similar topics (7)