Search results

  1. Mark

    Background image for premium users

    this is custom code so you need to start undoing some of your other CSS. you have this which is setting your background color and some padding: <table bgcolor="#C5DAEB" style="padding: 10px 0 0 0;"> I would replace that with <table class="myrankingtable"> and add your styles to...
  2. Mark

    People can´t upload banner

    Yes, try it.
  3. Mark

    Trying to get SMTP working, get an error...

    Check your servers mail log and error log for clues, double check to make sure your SMTP credentials are accurate. SMTP host is usually a domain name, not localhost (though localhost may also work).
  4. Mark

    Error 500 nobody can join my site anymore

    The plugin needs those fields, if you re-install the plugin they will be recreated.
  5. Mark

    Background image for premium users

    make sure you dont have "top left no-repeat" on your "background-image" property.
  6. Mark

    Error 500 nobody can join my site anymore

    cool, then just remove that field and you should be all set i guess
  7. Mark

    Error 500 nobody can join my site anymore

    As far as I know the plugin is not broken, works for many people, its very popular among gaming lists. I dont understand how it can be deleted and still making a query.... these plugins are all contained in 1 spot. You must be missing something. Create the field in admin -> tools -> manage...
  8. Mark

    Background image for premium users

    You have it working here: <table style="padding: 10px 0 0 0; background-image: url('path/to/some-image.jpg')">
  9. Mark

    Error 500 nobody can join my site anymore

    well something is for sure looking for a DB field "callback", that is not part of our core installation. I suggest you create it just to stop that error.
  10. Mark

    People can´t upload banner

    add this to your settings_sql.php $CONF['disable_mp4'] = 1;
  11. Mark

    Error 500 nobody can join my site anymore

    Unknown column 'acf_callback' in 'field list' that is your issue, you are trying to query a database field that does not exist. I'm guessing you need to create a custom field called "callback" (I have never used that plugin so you may need to refer to the install instructions)
  12. Mark

    People can´t upload banner

    I have not seen this but I suspect the mpeg conversion might be the cause of this? Make sure that is disabled in your admin as it seems you server may not be configured properly for it.
  13. Mark

    Background image for premium users

    in your template: change this: <table bgcolor="#C5DAEB" style="padding: 10px 0 0 0;"> to <table style="padding: 10px 0 0 0; background-image: url('path/to/some-image.jpg');"> OR use CSS: <table class="myrankingtable"> then in custom.css: .myrankingtable{ background-image...
  14. Mark

    Error 500 nobody can join my site anymore

    You can disable the plugin via FTP and verify that was the problem, I would also recommend checking your error_log for clues as to what is happening.
  15. Mark

    People can´t upload banner

    how big is the banner he is trying to upload? what format is the banner?
  16. Mark

    Callback vote check requires new link on website?

    Anywhere you like in those templates.
  17. Mark

    Background image for premium users

    yes, in your custom.css just add a background image to your div that wraps around each of your premium members. so in our default theme, we have start with this tag: <div class="rankbox premium"> so in our custom.css we could add this example with many options: .premium {...
  18. Mark

    Problem with a Premium purchase

    Yes it is in the works, Basti has it completed, just need to complete the integration and bundle for release.
  19. Mark

    Callback vote check requires new link on website?

    No, reading the install instructions, I dont believe it requires any changes to your link code https://visiolist.com/community/resources/callback-vote-check.17/
  20. Mark

    Show sites that has 0 votes in

    set your ranking period to monthly in admin. try this tag actually: {$this_period} In/out/pageviews today/this week/this month https://visiolist.com/docs/styles-design
Top