Jump to content

Tech Support

Administrators
  • Posts

    1,815
  • Joined

  • Days Won

    339

Posts posted by Tech Support

  1. I'm not sure why you can't use categories in addition to tags. It is normal that each video may have many categories, it doesn't need to be assigned to only 1 category.

    15 hours ago, Dzen said:

    1. how will this affect the SEO of the entire site?

    Sorry, we don't have SEO expertise to consult in this matter.

    15 hours ago, Dzen said:

    2. How can I organize the selection of multiple tags?

    With categories, this is supported by default in default theme in this URL:

    https://www.kvs-demo.com/search/

    On sidebar you can enable multiple categories and KVS will show you their video intersection.

  2. list_members block that outputs lists of users supports sorting by the number of tokens on the user's account. But this is not the same as top token earners, this is just sorting for top token holders. It is not possible to display top token earners, as this sorting is quite complex.

  3. 4 hours ago, Keb said:

    Hey - Just reading all this, I'm a bit confused why changing from /videos/  to /video/ 

    If you go to some of the biggest sites [ examples -  xhamster & faphouse and even Reddit all use /videos/ ] -  And have actually gained traffic per SemRush.
    So I'm not too sure that was the issue - I have also not experienced any deindexed and I use /videos/ 

    I did experience some issues with 1 video site a few months back - after doing some digging around, it was advised I remove any ads at the top of my page and allow the video player to fully load before the fold of the site. So I did - I had 1 ad at the top that would appear before the video player and removed it -  I also moved the title, date, user to below the video as well -  I saw improvements within a few weeks.

    If you go over to Twitter and search "google deindexed videos"  You will see 100s of people who have experienced their videos getting deindex from all sorts of niches, sports, entertainment, podcasts - starting in October 2023 - each person has a "different" reason as to why and how they tried to fix it.

    I just wanted to say this, as I don't believe the deindex issue is specific to KVS.
     

     

    Yes, you are right. Again as we noted, there should be a complex variety of different criteria. And then AI bot weights all those criteria and makes a decision with some probability. So it looks like using /video/ part in URL is one of the factors used. Probably using "Video" word in title is another factor used. It looks like there are also some design / layout factors involved. And it turned out that for KVS default theme it is enough to change to /video/ URL to have all videos being weighted as main video content. But for your site, it may be that other factors are over-weighting the URL factor, so you don't need to change this.

    • Like 1
  4. You can add parameter to {{$lang.urls.upgrade}} to specify the exact billing you want to trigger.

    For internal tokens it would be (but you need to check your admin panel, it may have another ID in your case).

    {{$lang.urls.upgrade}}?service_id=11

    • Thanks 1
  5. This error message 'Your admin session has expired, please log in once again.' is shown for 403 error by the new admin panel. So you still have 403 error on some pages. Typically this happens because of external security layer enabled (either on your server, or on Cloudflare if you use one). For some reason this security layer thinks you are trying to hack your own admin panel and blocks you from doing this.

    But if you are using KVS 6.2.0, this may be KVS bug that we introduced in early releases.

  6. 14 hours ago, ChrisAngel said:

    How do I instruct the default video grabber? I dont see any fields to point it to a specific source.

    You don't need to instruct it. You just try to import a video URL from a site domain.com. KVS will check, if there is a grabber designed for domain.com? If yes, KVS would use this grabber. If not, KVS would check if there is a default video grabbers installed? If yes, KVS would try using default videos grabber for this URL. If default video grabber can grab video files from that URL, then it will work. Otherwise it will show error that this site cannot be grabbed.

  7. This can be customized in Website UI -> Pages, search for video_edit block. In this block there is this code:

    <input type="radio" id="edit_video_is_private_0" name="is_private" value="0" class="radio" {{if $smarty.post.is_private==0}}checked{{/if}} {{if $is_locked=='true'}}disabled{{/if}}>
    <label for="edit_video_is_private_0">{{$lang.edit_video.field_is_private_values.0}}</label>
    <input type="radio" id="edit_video_is_private_1" name="is_private" value="1" class="radio" {{if $smarty.post.is_private==1}}checked{{/if}} {{if $is_locked=='true'}}disabled{{/if}}>
    <label for="edit_video_is_private_1">{{$lang.edit_video.field_is_private_values.1}}</label>

    You can add additional radio button with value = 2 for premium videos. Then you also need to add a text edit_video.field_is_private_values.2 into Website UI -> Texts, or you can just hardcode the word "Premium" right in template.

    For verified users to add a number of tokens you can add this code:

    {{if $smarty.session.is_trusted==1}}
    	<div class="row">
    		<label for="video_edit_tokens_required">Video cost in tokens</label>
    		<input id="video_edit_tokens_required" class="textfield" type="text" name="tokens_required" value="{{$smarty.post.tokens_required}}"/>
    		<div class="field-error down"></div>
    	</div>
    {{/if}}

     

×
×
  • Create New...