• Skip to main content
  • Skip to primary sidebar
  • Skip to footer

Foliovision

  • Weblog
    • FV Player
    • WordPress
    • Video of the Week
    • Case Studies
    • Business
  • About
    • Testimonials
    • Meet the Team
    • We Support
    • Careers
    • Contact
    • Pricing
  • Products
  • Support
    • FV Player Docs
    • Pro Support
  • Login
  • Basket is empty

I have a Premium but still logo of Foliovision on aberhallo.nl please help

Foliovision › Forums › FV Player › Troubleshooting › I have a Premium but still logo of Foliovision on aberhallo.nl please help

  • Roland 6 years, 1 month ago

    I have a Premium Account but still is your logo of Foliovisio in my videos
    website: aberhallo.nl

    please help

Viewing 25 replies - 1 through 25 (of 25 total)
  • Juraj Kacaba 6 years ago
    Avatar photo

    Hello Roland,

    Is the issue still apparent? I’ve checked our Licensing checker logs and it says the check was ok for aberhallo.nl at 2020-01-16 16:59:18 ETC

    Thanks,
    Juraj

    John S. 6 years ago

    I have a similar problem. I still have FV Flowplayer watermark on the bottom of my player on live pages. On the preview it shows my logo. I have the Pro version and I have the custom logo set

    Juraj Kacaba 6 years ago
    Avatar photo

    Hello John,

    What the domain name of your website? Let us know and we’ll check our licensing logs.

    Also, please try re-installing both FV Player and FV Player Pro. WordPress will warn you that you might loose saved settings, but that’s not the case with FV Player.

    Let us know if it has helped.

    Thanks,
    Juraj

    Martin 6 years ago

    Hello John,

    we checked your domain in your license details, however we couldn’t find and FV Player on it.

    Please send us a link to some page with FV Player so that we can check the logo issue. Since your website is for members only it would be best if you could create some test page where you place some random video.

    Thanks,
    Martin

    John S. 6 years ago

    Hi, thank you for the reply.
    I created a public page for you to test;

    https://americandollhouse.com/testing-video/

    Martin 6 years ago

    Hello John,

    please check the license key on https://foliovision.com/my-licenses and make sure you enter that in Settings -> FV Player Pro at the top of the screen, you can see that in Step 6. here: https://foliovision.com/player/basic-setup/installation/pro-extension

    I see you are using something different.

    Thanks,
    Martin

    John S. 6 years ago

    Hi Martin, I have made sure the license is the same one on my page. I even deleted foliovision pro and installed it again, it shows up as green.

    Martin 6 years ago

    Hello John,

    so they there must be some plugin manipulating the data. As I see it plays with your custom logo when you are in preview in editor.

    Please send over Settings -> FV Player Pro -> Tools -> System Info information.

    Thanks,
    Martin

    John S. 6 years ago
    ( System Info removed )
    Martin 6 years ago

    Hello John,

    I do not see anything suspicious there.

    Have you used FV Player for some time before purchasing the license?

    Have you used any other plugin which would use the Flowplayer library?

    Does your theme have any field for Flowplayer license key?

    Are you able to access phpMyAdmin in your web host control panel and search for that bad license key “2339419867284” in there? Once you are in phpMyAdmin you can use this guide: https://www.hostgator.com/help/article/searching-through-a-mysql-database-in-phpmyadmin In step 3 only enter that license key and in step 4 select “All words” and in step 5 select all tables.

    I’m sorry that it’s so complex. I just don’t see how the license key could be changed to something else.

    The last thing to do is to start disabling plugins one by one and see if that fixes the issues. But I may have some more suggestions before we go to that.

    Thanks,
    Martin

    John S. 6 years ago

    I’ll try using mysql search for that bad key.
    Is this key somehow built into the javacsript? I am offloading javascript to an s3 style bucket with a cdn front end.

    John S. 6 years ago

    I went through the database and removed all of referencing tables to the key and uninstalled fvplayer and fv player pro. reactivated, re-entered the key and re downloaded the pro pack. i disabled w3 total cache, and offloading. still the same issue.

    Martin 6 years ago

    Hello John,

    the video on https://americandollhouse.com/testing-video/ no longer shows, so I can’t check if this had any effect. However the license key is part of the page HTML code, so the CDN (offloading) would have no effect.

    Do you run into the same issue when you use some default WordPRess theme such as Twenty Nineteen or Twenty Twenty? You can use the theme preview feature to test it out quickly, just click through the website menus to some page with a video.

    Thanks,
    Martin

    John S. 6 years ago

    Hey Martin, ii re-added the video, t seems as though activating the default theme takes out the watermark. What can I do to try to fix this on my current theme?

    Martin 6 years ago

    Hello John,

    please send your theme to us as a ZIP file and we will have a look. Is it some freely available theme, or did you make any changes to it?

    Thanks,
    Martin

    John S. 6 years ago

    The theme is TheGem by CodexTheme.s. I can send you guys the zip. Where can I attach it?

    Martin 6 years ago

    Hello John,

    I haven’t found any code which would deal with FV Player nor Flowplayer. Is that the actual theme folder taken from your website? If so, then it must be because of some database entry, or some plugin.

    Perhaps you can download your whole plugins folder and then look for that bad license key 2339419867284 in all the files using some file search tool.

    Thanks,
    Martin

    John S. 6 years ago

    That is the theme taken from my site. It’s definitely just the theme, if I activate the default theme, my settings show up on the player.
    Perhaps it’s how the theme is parsing the prepending “$62” to the license key? Is there a way I can be issued a key without a “$”?

    Martin 6 years ago

    Hello John,

    I see, so the issue is really that just the first part of the license key is being removed.

    Please try to put this code into your theme footer.php file, right after wp_footer():

    <script>
    if( window.fv_flowplayer_conf ) {
      fv_flowplayer_conf.key = 'ENTER THE REAL KEY HERE, including $';
    }
    </script>
    

    If you have some basic experience with PHP or HTML file editing, you should be able to do this. Please let us know how it goes.

    Thanks,
    Martin

    John S. 6 years ago

    It’s doing the same thing, when I view source; I see my addition still missing the ‘$62’

    Martin 6 years ago

    Hello John,

    that’s crazy, I’m not sure what’s wrong with your theme, but I would say you should complain to the theme developers. There is also a chance that it’s your web host, but since you say it works with default theme I don’t think that’s the case.

    Perhaps splitting the string in two might help:

    <script>
    if( window.fv_flowplayer_conf ) {
      fv_flowplayer_conf.key = '$'+'62'+'WHATEVER IS THE REST OF THE KEY HERE';
    }
    </script>
    

    Thanks,
    Martin

    John S. 6 years ago

    I am hosting it on a kubernetes cluster. I added the said method, I see it’s showing up in the source code fine, but still displaying the free tier interface.

    This is ridiculous, is there any way you can issue a key without a $ prefix?

    Martin 6 years ago

    Hello John,

    I just realized how to fix this properly.

    Could you please reinstall FV Player from this link? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.

    The license key has the format required by the Flowplayer library. But the above fix will help.

    Thanks,
    Martin

    John S. 6 years ago

    Thank you, this works!

    Martin 6 years ago

    Hello John,

    I’m happy to hear that. The fix will be part of the next plugin release.

    I’m sorry I didn’t realize we could fix it like this before, but it’s very unusual.

    Thanks,
    Martin

Viewing 25 replies - 1 through 25 (of 25 total)
Reply To: I have a Premium but still logo of Foliovision on aberhallo.nl please help



Please Sign in or Register to upload files.

Related Posts

  1. Foliovision logo showing on iphone on video restart with pro version

    Foliovision logo showing on iphone on video restart with pro version

  2. Is there a way to turn off logo via shortcode?

    Is there a way to turn off logo via shortcode?

  3. Flowplayer logo showing

    Flowplayer logo showing

Primary Sidebar

Troubleshooting

    Categories

    • Business
    • Camera Reviews
    • Case Studies
    • Design
    • FV Player
    • Internet Marketing
    • IT
    • Life
    • SEO
    • Slovak
    • Video of the Week
    • WordPress

    Footer

    Our Plugins

    • FV WordPress Flowplayer
    • FV Thoughtful Comments
    • FV Simpler SEO
    • FV Antispam
    • FV Gravatar Cache
    • FV Testimonials

    Free Tools

    • Pandoc Online
    • Article spinner
    • WordPress Password Finder
    • Delete LinkedIn Account
    • Responsive Design Calculator
    Foliovision logo
    All materials © 2026 Foliovision s.r.o. | Panská 12 - 81101 Bratislava - Slovakia | info@foliovision.com
    • This Site Uses Cookies
    • Privacy Policy
    • Terms of Service
    • Site Map
    • Contact
    • Tel. ‭+421 2/5292 0086‬