ClipShare Community Forums  

Go Back   ClipShare Community Forums > ClipShare - Video Sharing Community Script - General Forum > General Discussion
Register FAQ Bug Tracker Members List Calendar Mark Forums Read

General Discussion Discuss about ClipShare hosting, promotion, SEO, niches or anything else that does not fit in the other forums


Reply
 
Thread Tools Display Modes
Old 11-27-2008, 02:02 AM   #21
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Default Lol...

Lol, maybe I said it wrong. On the profile it will show the users playlist, groups, most recent videos and so on. Yes - it is in the navbar but I decided to put it on the profile too, because it just looks so bland with whats there. But yea, you got a point youtube is terribly ugly - so the thing that gets me is why do they have so much money yet not have something to pay for a new template and why are so many users attracted to such an ugly site :\
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-07-2008, 02:27 AM   #22
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Question Is there a fix?

Well like I said I'm am trying to make Profile viewing more creative and not so boring. So I was trying to add Public Videos | Private Videos | Favorites | Friends | Playlists | Groups to the Profile. So I tried to put public videos on the Profile. I went to /templates/uvideos.tpl I took the code

Code:
    <div id="myvideo">
      <div id="myvideo-title">
	  	<div class="titlepage">{if $smarty.request.type eq "private"}{translate item='global.private_videos'}{else}{translate item='global.public_videos'}{/if} {$uname}</div>
		<div class="videopaging">{translate item='global.videos'} {$start_num}-{$end_num} {translate item='global.of'} {$total}</div>
	  </div>
      <div id="myvideo-content">
        <div class="arrow-general">&nbsp;</div>
               {if $total gt "0"}
                    {section name=i loop=$answers}
                    {assign var=looprecord value=$smarty.section.i.index}
                    {if $looprecord%2 eq 0}
                        {assign var=colorLoop value=""}	
                    {else}
                        {assign var=colorLoop value="blue"}	
                    {/if}
                    <div class="myvideo {$colorLoop}">
                      <div class="videothumb"> 
                         <a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`" clean=$answers[i].title}"><img height=90 src="{$tmburl}/{$answers[i].thumb}_{$answers[i].VID}.jpg" width=120></a>
                      <div class="button">                      
                      </div>
                      </div>
                      <div class="maindescwithoutborder">
                          <p> <strong><a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`" clean=$answers[i].title}">{$answers[i].title|escape:'html'}</a></strong><br />
                        {$answers[i].description}<br />
                        {translate item='global.tags'} //
                        {insert name=video_keyword assign=tags vid=$answers[i].VID}
                        {section name=j loop=$tags} <a href="{seourl rewrite="tags/`$tags[j]`" url="search_result.php?search_id=`$tags[j]`"}"> {$tags[j]} </a> {/section} <br/>
                        {insert name=time_to_date assign=todate tm=$answers[i].addtime}
                        {translate item='global.added'}: {$todate}<br/>
                        {translate item='global.runtime'}: {$answers[i].duration|string_format:"%.2f"} | {translate item='global.views'}: {$answers[i].viewnumber} |
                        {insert name=comment_count assign=commentcount vid=$answers[i].VID}
                        {translate item='global.comments'}:{$commentcount} 
                        <br/>
                        {insert name=show_rate assign=vrate rte=$answers[i].rate}{$vrate}
                        </p>
                      </div> 
                    </div>
                     {/section}
                {else}
                    <p>{translate item='global.video_not_found'}</p>
                {/if} 
      </div>
      <div class="clear"></div>
    </div>
    <div id="paging">
        <div class="pagingnav">
        {$page_link}
        </div>
    </div>
   </div>
and I pasted it on /templates/uprofile.tpl then I checked the Profile and everything seemed fine except where I put Public Videos it just says
Quote:
Video not found!
Dagre said that it was something in the PHP but does anyone know what it was in the PHP?
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-10-2008, 03:33 AM   #23
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Thumbs up New Tut!

Well I was doing a little editing and I remember seeing this question twice before and it asked:

Quote:
How can I change the number of thumbnails for detailed videos?
Go into /templates/video.tpl and find

Code:
                <div class="imagechannel">
                  <a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`&page=`$page`&viewtype=`$viewtype`&category=$catgy" clean=$answers[i].title}">
                    <img  src="{$tmburl}/1_{$answers[i].VID}.jpg" width="100" />
                  </a>
                  <a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`&page=`$page`&viewtype=`$viewtype`&category=$catgy" clean=$answers[i].title}">
                    <img  src="{$tmburl}/2_{$answers[i].VID}.jpg" width="100" />
                  </a>
                  <a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`&page=`$page`&viewtype=`$viewtype`&category=$catgy" clean=$answers[i].title}">
                    <img  src="{$tmburl}/3_{$answers[i].VID}.jpg" width="100" />
                  </a>
                </div>
And just delete or add

Code:
                  <a href="{seourl rewrite="video/`$answers[i].VID`" url="view_video.php?viewkey=`$answers[i].vkey`&page=`$page`&viewtype=`$viewtype`&category=$catgy" clean=$answers[i].title}">
                    <img  src="{$tmburl}/3_{$answers[i].VID}.jpg" width="100" />
                  </a>
Easy
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-10-2008, 11:59 PM   #24
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Lightbulb New Tut!

I found a question that was asked and it seemed so simple that I was going to do it really quick.
Quote:
How can I make the error image message bigger/smaller?
Well it was not working so then it became one of those things where you don't have to get it done but you want to get it done! And I tried and wondered what was I doing wrong yet the entire time it was so simple!

Go into /templates/error.tpl and find
Code:
<div style="width: 726px;
and replace it the width (726) with your customized width.
Finished Example:
Code:
<div style="width: 900px;
Maybe I should just make a blog where I can post these simple random questions/answers :\
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-12-2008, 04:45 AM   #25
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Angry Why...

Why...?! Why do you bother posting this everywhere you obviously know that NO ONE will read up to five words yet you still insist on posting it, people like you shouldn't be on this forum -_-
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-13-2008, 02:46 AM   #26
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Default New Tut!

Well here's a question that when I first started using CS I was sure not a soul would ask my newbie question! When I figured it out I realized nothing's wrong with playing around :\

Quote:
How do I get the Featured, Top Rated, Top Watched Submenu on the homepage!
Well if there wasn't an easier question lol, go to your Admin Panel and then go to the Videos tab. You will see a list of all your videos, look all the way to the right of your video and there will be a few options

Quote:
View
Edit
Delete
Suspend
Click Edit then scroll all the way to the bottom and you will see some drop down options. One says "Is Featured:" switch it to yes then check your home page and there ya go!
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-13-2008, 03:38 PM   #27
evmmm
Member
|Forum Newbie|
 
Join Date: Dec 2008
Posts: 12
evmmm is on a distinguished road
Default

Hi Joe100,

Excellent thread, please keep posting.
evmmm is offline   Reply With Quote
Old 12-13-2008, 03:57 PM   #28
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Default

Well I'm glad to know I'm not doing this for nothing now
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-14-2008, 10:12 PM   #29
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Talking Way better Float Menu!

Well personally the normal, basic Float Menu for the 4.0 vista templates aren't all that great looking, the arrows which were added don't add any excitement either :| So I decided to post this for the CSS challenged or just for people who thinks it would be cool. Instead of having those boring arrows you could have something like this



It takes a few simple steps, find your icons that you want btw, I used 24x24. Now go to css/tpl_style.css and find this code
Code:
.floatmenu{

    float:left;

    width:125px;

    text-align:left;

    background: transparent url(../images/tpl_icon_arrow.gif) no-repeat;

    padding-left:15px;
	
	line-height: 14px;
	
}
AND DELETE THE CODE IN HIGHLIGHTED IN RED!

Now go into /templates/view_video.tpl and find this entire code

Code:
		<div class="floatmenu">
		<div id="addToFavLink"><a href="#addfavour" onClick="fxAddFavorite('addToFavLink', {if $smarty.session.UID ne ''}{$smarty.session.UID}{else}0{/if}, {$vinfo[0].VID}, {$vinfo[0].UID});">{translate item='view_video.action_favour'"}</a></div>
		<div id="addToFavSuccess" style="display:none;">{translate item='view_video.addfav_success'}</div>
		<div id="addToFavFailed" style="display:none;">{translate item='view_video.addfav_failed'}</div>
		<div id="addToFavAlready" style="display:none;">{translate item='view_video.addfav_already'}</div>
		<div id="addToFavLogin" style="display:none;"><a href="{seourl rewrite='login' url='login.php'}">{translate item='view_video.addfav_login'}</a></div>
		<div id="addToFavOwner" style="display:none;">{translate item='view_video.addfav_owner'}</div>
		</div>
	</td>
	<td>
		<div class="floatmenu"> 
        	{if $smarty.session.UID eq ""}
        		<a href="{seourl rewrite="video/`$vinfo[0].VID`/?action=comment" url="view_video.php?viewkey=`$viewkey`&page=`$smarty.request.page`&viewtype=`$smarty.request.viewtype`&category=`$smarty.request.category`&action=comment"}">{translate item='view_video.comments_write'}</a>
        	{else}
        		<a href="#postcomment">{translate item='view_video.comments_write}</a>
        	{/if}
    		</div>
	</td>
  </tr>
  <tr>
	<td>
		<div class="floatmenu">
			<a href="#flagvideo">{translate item='view_video.flag_this'}</a>
		</div>
	</td>
	<td>
	                <div class="floatmenu">
                    {if $downloads eq 1}
                    {if $smarty.session.UID ne ""}
                        <a href="{$flvdourl}/{$vinfo[0].flvdoname}" title="Download">{translate item='view_video.download'}</a>
                    {else}
					<a href="{seourl rewrite='signup' url='signup.php'}" title="SignUp">{translate item='view_video.download_login'}</a>
					{/if}
                    {/if}
                </div>
	</td>
  </tr>
</table>
      <div class="clear"></div>
    </div> 
  </div>
and replace it with

Code:
		<div class="floatmenu">

<div id="addToFavLink"> <img src="http://www.YOURSITE.com/images/YOURICON.gif" border="0" alt="Favorites"/></a>		<a href="#addfavour" onClick="fxAddFavorite('addToFavLink', {if $smarty.session.UID ne ''}{$smarty.session.UID}{else}0{/if}, {$vinfo[0].VID}, {$vinfo[0].UID});">{translate item='view_video.action_favour'"}</a></div>
		<div id="addToFavSuccess" style="display:none;">{translate item='view_video.addfav_success'}</div>
		<div id="addToFavFailed" style="display:none;">{translate item='view_video.addfav_failed'}</div>
		<div id="addToFavAlready" style="display:none;">{translate item='view_video.addfav_already'}</div>
		<div id="addToFavLogin" style="display:none;"><a href="{seourl rewrite='login' url='login.php'}">{translate item='view_video.addfav_login'}</a></div>
		<div id="addToFavOwner" style="display:none;">{translate item='view_video.addfav_owner'}</div>
		</div>
	</td>
	<td>
		<div class="floatmenu"> 
        	{if $smarty.session.UID eq ""}
        		
<img src="http://www.YOURSITE.com/images/YOURICON.gif" border="0" alt="Write Comments"/></a>

<a href="{seourl rewrite="video/`$vinfo[0].VID`/?action=comment" url="view_video.php?viewkey=`$viewkey`&page=`$smarty.request.page`&viewtype=`$smarty.request.viewtype`&category=`$smarty.request.category`&action=comment"}">{translate item='view_video.comments_write'}</a>
        	{else}
        	<img src="http://www.YOURSITE.com/images/YOURICON.gif" border="0" alt="Write Comments"/></a>	<a href="#postcomment">{translate item='view_video.comments_write}</a>
        	{/if}
    		</div>
	</td>
  </tr>
  <tr>
	<td>
		<div class="floatmenu">

<img src="http://www.YOURSITE.com/images/YOURICON.gif" border="0" alt="Report"/></a>

			<a href="#flagvideo">{translate item='view_video.flag_this'}</a>
		</div>
	</td>
	<td>
	                <div class="floatmenu">
                    {if $downloads eq 1}
                    {if $smarty.session.UID ne ""}
                        <a href="{$flvdourl}/{$vinfo[0].flvdoname}" title="Download">{translate item='view_video.download'}</a>
                    {else}
					<a href="{seourl rewrite='signup' url='signup.php'}" title="SignUp">{translate item='view_video.download_login'}</a>
					{/if}
                    {/if}
                </div>
	</td>
  </tr>
</table>
      <div class="clear"></div>
    </div> 
  </div>
Now go through out that last code and replace all enlarged PURPLE font with your icons. Remember a good icon size is 24x24 I hope you like
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Old 12-19-2008, 10:11 PM   #30
Joe100
Member
|Forum Senior|
 
Join Date: Aug 2008
Posts: 363
Joe100 is on a distinguished road
Arrow New Tut

Alright I my self asked this question before, but it was so much easier then I thought (its funny when you try so hard to figure something out and its right under your nose).
Quote:
How do can I make the background for related videos wider?

Find this code in /css/tpl_style.css:
Code:
.side_results{

    overflow: auto;

    height: 350px;

    width: 192px;
	
	display: block;
	
}
Simply replace the width with what ever you'd like! Wa la simple as that
__________________
For some odd reason almost all pages I attempt to visit it tells me "Page Not Found" I possibly may have been banned for rebelling against Danny too much? Sorry I haven't answered all the PM's I've received its been some time since I've last visited here. And unless I can start using the forum again I can't help anyone
Clip-Share for Dummies!
-The Man who Understands-

Joe100 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Clip-Share 3.0 RC8 Ashraf Pre-Sales Questions 3 12-14-2007 02:00 PM
does CLIP.VN using clip share source code. vietprofile Pre-Sales Questions 0 08-09-2007 05:01 PM
Clip-Share versus Clip-Share Pro Fidmania Pre-Sales Questions 1 07-25-2007 08:15 PM



All times are GMT +1. The time now is 05:14 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright © 2006-2008 Envient. All Rights Reserved.

An Envient product.