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

Started by PHPVibe A.,

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

sacri

Is there a way, when someone loads the page, to automatically open the side menu?
  •  

ipeci

Hello
How i can fix that problam, if i go on my sidebar and than Tv Channels its oppen my list of tvchannels , bit i cannot scroll down .

Plz check my homepage live to see what i mind.
www.tvlimit.com

thanks
  •  

PHPVibe A.Topic starter

You can't scroll because the sidebar is fixed.
There is no fix/solution for this because of the limitations fixed divs offer.
Except to rework your channels. I see you have them by countries, can't you move them to continents -> countries ? This will make the lists less higher.

julsg

Hi,

Have issue on the leftside bar. It overlaps the videos and text.



Regards
  •  

PHPVibe A.Topic starter


PHPVibe A.Topic starter

Oh, if you add by default visible, you also have to add class="haside" to the wrapper.
I've updated the first post.

julsg

Resolution: 1360 X 768

Browser: Firefox.

Regards
  •  

julsg

Updated the 1st issue.

One more issue in the footer.



Regards
  •  

PHPVibe A.Topic starter

Add haside class to the #footer also.

And in /tpl/brasil/js/phpvibe_app.js

after:
$("#wrapper").toggleClass('haside');


add

$("#footer").toggleClass('haside');

julsg

Quote from: Alexander on
Add haside class to the #footer also.

And in /tpl/brasil/js/phpvibe_app.js

after:
$("#wrapper").toggleClass('haside');


add

$("#footer").toggleClass('haside');


Tried the code but still the same.
  •  

julsg

Want to know when you gonna update the Theme Brasil?

I thought this theme was fixed and no issue at all.

  •  

PHPVibe A.Topic starter

You didn't add the clas haside to the footer.
<div id="footer">


should have been

<div id="footer" class="haside">


If you don't follow my instructions totally, sure it won't work.

Hersh

Alexander, as someone who purchased your theme, I shouldn't need to beg you to answer a simple question. I already asked twice on this thread and waited over a week. Now, I realize this could be more an issue of core functionality rather than the theme itself, but as the directives for the behavior of the video players can be encoded within the player's embed code, it is still a relevant question.

I provided an example and asked a question about why uploaded videos play in a continuous loop and why playlists do not in fact work (i.e. skip to the next track). This isn't for remote videos mind you, but self hosted/uploaded ones.

  •  

TheBritain

What version of PHPVibe are you using? I am using 3.7 and I am having no trouble at all with video playlist playback, whether it be remote hosted or a local upload.
  •  

Hersh

I did not know 3.7 was released. I'm still on 3.6.

How did you get the update?


But this is on their demo site for example and it still loops:

http://www.videoinedit.com/video/6340/ustad-rahat-fateh-ali-khan-zaroori-tha-video-teaser-mp4/
  •  

TheBritain

  •  

TheBritain

Yep, it is definitely looping the same video on the site you linked, and their main demo site. All my mucking about in the code must have fixed it. I will take a look at the code and post a solution if I can find one.
  •  

Hersh

I switched the default sidebar state from hide to visible, but I discovered some problems with that. It can get really annoying, especially for mobile users to have to constantly toggle the sidebar off on every page.

I think it would be better to use jquery.cookie.js to remember the toggle states of divs.

Something like:

$(function(){
            var toggle=$('.sidebar');
            var inner=toggle.find('.inner');
            if($.cookie('divState')=='visible')
                inner.show();
            else
                inner.hide();
            toggle.find('a').click(function(){
                if(inner.is(':visible'))
                    $.cookie('divState', 'hidden');
                else
                    $.cookie('divState', 'visible');
                inner.toggle();
            });
        });


Would you be able to provide some guidance on this, Alexander?
  •  

julsg

Quote from: Alexander on
You didn't add the clas haside to the footer.
<div id="footer">


should have been

<div id="footer" class="haside">


If you don't follow my instructions totally, sure it won't work.

I have added the code to "tpl.globals.php"?

Kindly point the right direction which file should i paste the code.

  •  

PHPVibe A.Topic starter

You did good, but seems the padding is not enought on this change.

drop this in tpl/brasil/css/vibe.style.css (last line for example)

#footer .haside {padding-left:190px!important}

Change the 190 to fit your needs.

Hersh

Should I stop asking question here? I'm confused.

I have no intentions of pestering anyone here but I assumed this thread was intended for asking support questions for customers.

If you guys are not interested in answering any questions, you can refund my money and I will stop using your software. That's fine. But at least show some courtesy when someone is showing this level of patience. You are being really disrespectful to your customers.
  •  

PHPVibe A.Topic starter

Quote from: Hersh on
I'm still waiting for a reply to my question, Alexander.

Thanks

I've already answered you

Quote from: Alexander on
This was an heavily requested feature and for me, I'll never change it since my users would kill me :)
But you can find how to remove auto-play in the forum (not theme related, but lib/class.providers.php)

and that's a core feature, this thread is for theme, you can't change that in the theme.
If you want a specific change answer, open a thread, specify which player you are using, and I will reply, as I reply to all threads.

PHPVibe A.Topic starter

Quote from: Hersh on
I switched the default sidebar state from hide to visible, but I discovered some problems with that. It can get really annoying, especially for mobile users to have to constantly toggle the sidebar off on every page.

I think it would be better to use jquery.cookie.js to remember the toggle states of divs.

Something like:

$(function(){
            var toggle=$('.sidebar');
            var inner=toggle.find('.inner');
            if($.cookie('divState')=='visible')
                inner.show();
            else
                inner.hide();
            toggle.find('a').click(function(){
                if(inner.is(':visible'))
                    $.cookie('divState', 'hidden');
                else
                    $.cookie('divState', 'visible');
                inner.toggle();
            });
        });


Would you be able to provide some guidance on this, Alexander?

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');
}
}


This answer came from Mario, I don't know jquery, just php, and for some questions I have to ask to provide an answer.
It's not disrespects, my job is php coder, not even support manager, but the situation is from now this, I'm stuck on this forum and trying to do my best to help everybody.

Hersh

  •  

ipeci

Quote from: Alexander on
You can't scroll because the sidebar is fixed.
There is no fix/solution for this because of the limitations fixed divs offer.
Except to rework your channels. I see you have them by countries, can't you move them to continents -> countries ? This will make the lists less higher.

A ned a other method to fix this ,dont wont to sort by conntinent  :-\
Is ther a way to scroll inside the channel list or to scroll up with site?
  •  

Similar topics (7)