Jump to content

Tech Support

Administrators
  • Posts

    1,788
  • Joined

  • Days Won

    334

Everything posted by Tech Support

  1. Please read what's new: It is possible to restore the old behavior in Settings -> Personal settings.
  2. Please go to Website UI -> Language files -> default and find these lines: header.network_name = header.network_sites.1.name = Site1name header.network_sites.1.link = http://google.com header.network_sites.2.name = Site2name header.network_sites.2.link = http://google.com These are where you can edit name and URL, and also you can easily add more items by using number 3, 4 and etc.
  3. Yes, we will be working on this feature. The reason why it takes so long is that we decided to start rolling out nextgen architecture and we decided that all new features will be implemented using nextgen code. This will take some longer, because we need to design and test the core architecture code itself. Right now KVS doesn't have notification functionality at all.
  4. No, format size is a unique format identified (a directory on filesystem), so you can't have 2 formats with the same size. Should be slightly different sizes. It shows that format status is required, which means this format will be created for all videos. Unlike video formats, screenshot formats have only this active status, so all existing screenshot formats if they are not in the process of creation / deletion will have this status.
  5. Did you probably delete old JPG format? It is not possible to have only WebP format for thumbs, because not all browsers still support it. So you have to use both JPG and WebP formats, that's why theme settings page has JPG format required.
  6. Better not delete, but comment it out - add # at the line start as in our example.
  7. One of the easiest way would be commenting out this line in /.htaccess file: #RewriteRule ^upload-video/$ member_profile_my.php?type=upload_video [L,QSA] This will make standard upload URL returning 404. You will also need to adjust header template to remove the upload link from there. In this case upload links will only remain from channel pages.
  8. KVS doesn't support any crypto payment gateway at the moment.
  9. Not exactly correct :) KVS doesn't know anything about user screen size, screen size is a client-side (browser) feature, while KVS is a server-side script. Your theme template instead should instruct browser to load the correct image size using available HTML5 techniques, something similar to this: https://www.w3schools.com/tags/tag_picture.asp Even if we decide to make this as default behavior in the newer theme version, old projects will not get this anyway because we can't update themes along with updating KVS.
  10. It can be done simply with using flags. Right now flags are used to report videos, like DMCA, Not working and etc. But you can create as much flags as you want and use them on your discretion. Flags allow you specify that voting for a flag will deduct tokens from user's balance. Therefore you can use flags to donate your site by creating "Donate 100 coins", "Donate 200 coins" and etc. flags and rendering them in a separate form inside video block.
  11. You can create bugger screenshot size in Settings -> Screenshot formats, then wait for it to be created, then in Website UI -> Theme settings choose the bigger size for video screenshots instead of old size.
  12. This is not needed, because all pagination URLs have canonical URLs pointing to the first page. But if you want to additionally disable it for latest videos pages, you can add the following line: Disallow: /latest-updates/*
  13. It is not easily possible to remove AJAX pagination in default theme. This will require full theme re-done from scratch, e.g. the whole theme navigation approach should be changed. All other themes support switchable AJAX navigation and it can be switched off if needed. But not default theme.
  14. As long as your local PC is available to your server via FTP, you can use it in the same way as other server:
  15. We found that there is an issue that may affect sites in the following situation: This issue only happens with vertical videos. This issue only happens when your theme is limiting access to some videos (e.g. signup to watch a video). Vertical video screenshot will be distorted in this case: Unfortunately we can't put a fix into update, because the fix affects theme CSS which cannot be updated together with KVS. Therefore if this issue affects your project, you will need to manually put this fix into your theme CSS file. Common themes where this could be an issue are: KVS Default Theme and Paysite Theme 1. 1) For KVS Default Theme you need to modify one of these file directly on disk (or FTP), change -white if your theme color is light and choose -metal if you theme color is dark: /static/styles/all-responsive-white.css /static/styles/all-responsive-metal.css Find this style: .block-video .no-player img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0.2; } And add object-fit: contain; into it: .block-video .no-player img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0.2; object-fit: contain; } 2) For Paysite Theme 1 you need to modify one of these file directly on disk (or FTP), change all.css if your theme color is light and choose all-dark.css if you theme color is dark: /static/styles/all.css /static/styles/all-dark.css Find this style: .media-container__join__img { position: absolute; top: 0; left: 0; width:100%; height:100%; } And add object-fit: contain; into it: .media-container__join__img { position: absolute; top: 0; left: 0; width:100%; height:100%; object-fit: contain; } As a result here is how the fixed version looks like:
  16. The mentioned code should be put into the page where you want this block to appear.
  17. Same as all other blocks: {{insert name="getBlock" block_id="list_albums_images" block_name="GIF images"}} And then open this block to configure its template and parameters.
  18. Please check this post, this is the new way of how admin panel filtering works:
  19. For displaying only GIF images please use list_albums_images block with format=gif filter activated.
  20. You can do that via mass edit. Select the needed albums and start mass edit for them. Then you can choose which album formats you want to re-create for them:
  21. This is historical thing, it was added first as DVD object and then we renamed it to channel. We will most likely allow using it in albums with data layer refactoring.
  22. There is no 4k logo in theme by default. Please check this reply, there is an example of how to display 1080p logo, similar for 4k:
×
×
  • Create New...