Search results

  1. Mark

    customize Manage Members page

    actually URL is already included in a tooltip when you hover over the title. If you want it always visible, you would need to hack the core file at sources/admin/manage.php since we don't have templates setup for admin secitions. find this line <td width="100%"><a href="{$url}"...
  2. Mark

    Show different number of members on different pages?

    hmm thats an odd one, sounds like your pagination elements have the wrong "floats", have a look in your css pagination class, where you see float: right; or float: left; change it to the opposite.
  3. Mark

    3 issues

    1) rate_form is part of the ancient review system that is deprecated an is not supported, you would need to add a hook location, and create a plugin. 2) unable to reproduce on any of my lists - http://www.aatoplist.com/?a=join 3) add your css to user.css in your skin #join_category { border...
  4. Mark

    one "hit" per IP

    Ranking is either in, out or pageviews. In all cases ranking is calculated by unique not total raw hits. What your seeing is likely a result of your skin showing total hits, but it would still be ranking by unique. Open table_top_row template and look at the template tags used, you can...
  5. Mark

    Disqus Comments

    Your going to need to explain the problem in at least SOME detail. Your forum has nothing to do with a toplist, disqus has its own CSS classes, you might need to just make some changes to make it work. But you have provided nothing that would allow anyone without psychic powers to help you.
  6. Mark

    customize Manage Members page

    not without creating a plugin or modifying the admin theme. To see the URL you can hover over the title link and look in your browsers lower left corner.
  7. Mark

    Show different number of members on different pages?

    not possible without creating a custom plugin, but coding this behavior might cause issues with pagination calculations etc.
  8. Mark

    Extra member buttons

    upload your images to: images/extra/ Link code will be automatically generated and available for static buttons uploaded to this folder
  9. Mark

    Ranking period overall reset

    I could be wrong, but if my memory is correct I think overall was intended to be removed from the ranking methods as it doesn't really make sense to use that metric. looking at the code in sources/rankings.php I notice overall is not included in the array, $ranking_periods = array('daily'...
  10. Mark

    Long Description + BBcode

    ahh need to add a few CSS rules to make them wider, i don't have the source code available at the moment, but if you highlight the buttons (using firefox) and then right click, "view selection source" this will show you the HTML classes in use, then you can add width:30px; to your CSS file for...
  11. Mark

    Long Description + BBcode

    try this: <div id="submitButtonDiv"> <br class="cb" /> <button class="button1" name="submit" type="submit" onclick="wswgEditor.doCheck();">{$lng->join_header}</button> </div>
  12. Mark

    Error with database

    good catch basti!
  13. Mark

    Only first rank button working.

    ranks are cached, its possible these sites are tied or rank caches are not yet calculated, give it a day or 2 and let some traffic flow and these will probably start working for you as data falls into place.
  14. Mark

    help with premium banners

    your user.css is empty or not loading properly. <link rel="skins/Dark Elegant Orange/user.css" />
  15. Mark

    pagination modification

    not recommended as there is no hook location for this, so you would need to hack the core files (which means you need to do this after every upgrade) but if its important to you :) source/rankings.php this is previous <: $TMPL['multiple_pages_p'] .= $TMPL['url_tail'].'"...
  16. Mark

    need random sites function

    no problem, started a private conversation with payment info etc.
  17. Mark

    need random sites function

    Sure, our current development rate is $25 per hour, this would take 1 hour.
  18. Mark

    Error with database

    this is localized to your list, its interesting that your banner URL is cut off in the error messgae: near '://extremepri this really should probably read something like: near 'http://extremepri
  19. Mark

    ranking/sorting

    a quick search found this: http://visiolist.com/community/threads/sort-server-listing-by-date-newest.1656/ that what your after?
  20. Mark

    need random sites function

    its pretty basic, if you have a little PHP knowledge you can look at the existing featured member code and use that as a base to build your own plugin with more than 1 member. Check the tutorial on how to build a plugin here: http://visiolist.com/community/threads/how-to-create-a-plugin.20/...
Top