Jump to content

Tech Support

Administrators
  • Posts

    1,818
  • Joined

  • Days Won

    339

Everything posted by Tech Support

  1. 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}}
  2. This is something related to HTML and CSS, you can use whatever you want there are no limits imposed by KVS.
  3. There is a guide for adding payment processors that KVS doesn't support:
  4. You need to modify project_url variable in /admin/include/setup.php file to https: $config['project_url']="https://domain.com";
  5. Please check this if you need to set up verification at some level: If you just want to show verified badge, you can use trusted flag in admin panel for such users. And then in member list template (Website UI -> Page components -> include_list_members_block_common.tpl) you can show using this code: {{if $item.is_trusted==1}}Verified{{/if}} In profile page template (Website UI -> Page components -> include_member_profile.tpl) you can show using this code: {{if $data.is_trusted==1}}Verified{{/if}}
  6. Yes, basically you need to create some flag (e.g. flag_name_model_video) and then use the following AJAX request on video page to notify model to admin: https://www.kvs-demo.com/video/378/belinda-ft-pitbull-egoista/?mode=async&format=json&action=flag&flag_id=flag_name_model_video&video_id=378&flag_message=<model_name_here>
  7. It should already be possible, you need to enable tokens in Website UI -> Theme settings.
  8. Sorry, we do not have SEO expertise and do not provide SEO support. You need to hire somebody who knows how to optimize video sites for better SEO.
  9. Already replied in ticket, new installations may take up to 3 working days, server setup may take up to 5 working days.
  10. First you need to set up a billing in Memberzone -> Billings section. When the billing is set up and activated, you can switch theme to display signup popup which is designed with displaying payment options. This is done in .htaccess file in this rule: RewriteRule ^signup/$ index.php?mode=async&function=get_block&block_id=signup_signup_form_simple&global=true [L,QSA] You need to change signup_signup_form_simple to signup_signup_form_premium: RewriteRule ^signup/$ index.php?mode=async&function=get_block&block_id=signup_signup_form_premium&global=true [L,QSA]
  11. It can be done via Smarty modifier when displaying a value from variable. For example for video title inside video_view block template the title is displayed like this: <h1>{{$data.title}}</h1> You can change it to this: <h1>{{$data.title|ucwords}}</h1> But this only works with English base letter, not working with other languages.
  12. It is already part of every there, which has memberzone functionality. For example this on kvs-demo.com: You can rename it to "Get Premium" if needed in Website UI -> Texts section.
  13. This cookie is needed for IP-based protection on video file links, which is required for anti-hotlink working. You can switch it off by switching off IP protection in Settings -> Content Settings -> Video download script protection settings. Change Hotlink protection type to By referrer (50%). Then KVS will not install this specific cookie. No, we don't think this is needed. There are plenty of nice 3rd-party cookie widgets that you can install on your site and ask user's consent to use these cookies for system functioning like many other sites do. For example this: https://www.eucookie.eu/ As you can see every site has required cookies which is not possible to decline, but for KVS all cookies are required. There are no marketing / tracking / preferences cookies used by KVS.
  14. This is not supported by default theme, should customize design for this if needed.
  15. Please create support ticket and enable KVS support in admin panel.
  16. We still didn't have time to look into this.
  17. Grabber can grab screenshot, which you can choose in grabber settings. We don't know, please create support ticket.
  18. We have removed the posts. Do you mean you don't see redirect when you try to open your old URL style as /videos/....? This is not normal if true. It might be many factors that influence this. I'm 100% confident this is done by AI, and nobody in Google understands how it decides which page is main video content, and which is not. They have fed it with millions of video pages and told this is main video content. And then again millions of other pages and told this is not main video content. Then AI analyzed everything possible and decided that main video content should be likely located on the URL that contains /video/ in it. Then it is more likely main video content if its H1 tag contains "Video" word. Then it may be even more likely if a <title> tag contains "Video" word. There should be other dozen of factors, like video player position relative to overall page, the amount of other content on the page and some more, could be even colors used in design. Now you should prove to Google AI that your pages are likely main video pages, so you should try adding more similarities with other video pages. But nobody knows which ones. For KVS default theme we found that it is only required to rename /videos/ to /video/. But we still have like 1300 pages for kvs-demo.com that are still not re-indexed after the change, and they are still marked as the issue.
  19. You need to check if the redirect is actually working or not. For example on our demo site you can try old URL (which contains /videos): https://www.kvs-demo.com/videos/173/beyonc-suga-mama/ and then it should open the one with /video/ instead in your browser address line: https://www.kvs-demo.com/video/173/beyonc-suga-mama/ If this is working for your site, then your redirect is working and your rewrite URLs are correct. If redirect rules are not correct, you will see that URL with /videos/ is still opening in your browser without any redirect.
×
×
  • Create New...