Search results

  1. Mark

    Rotate Premium Banners [Deleted]

    Mark submitted a new resource: Rotate Premium Banners - rotates your premium members banners anywhere you like Read more about this resource...
  2. Mark

    Long Description + BBcode

    I added this to the end of my css file, seems to have done the trick .editbar button {width: 23px;}
  3. Mark

    Long Description + BBcode

    I'll install this now and have a quick look, be back in a couple mins
  4. Mark

    Premium banner rotation plugin

    I swear this already exists, let me poke around the forum and my dev sites and see if I can find it for you.
  5. Mark

    Customizing Your VisioList

    Hello, your server does meet our requirements, you will have many other issues along the way. suPHP or FastCGI PHP Handlers Recommended If you plan on making use of the admin plugin upload, language system and skin editing features, we recommend you configure your server to use suPHP as your...
  6. Mark

    More contact forms

    good stuff
  7. Mark

    More contact forms

    in plugins/DonatePremium create a file called: action_array.php with the following code: $donatearray = array('donatepremium' => 1); $action = array_merge($action, $donatearray); The way this is handled with probably change in the future, but not anytime soon.
  8. Mark

    More contact forms

    ahh the action array part is the issue, we had a couple options how to get this to work, but I will include the simplest here for now. Be back in a few minutes
  9. Mark

    More contact forms

    you need to rename the class and function names class sendmessage extends base { function sendmessage() { to class donatepremium extends base { function donatepremium() { Still looking to see what else is missed
  10. Mark

    More contact forms

    we would need to see your plugin files in order to isolate what you have done wrong.
  11. Mark

    More contact forms

    That error means a file you are referencing does not exist. There is no hook location called "rankings".
  12. Mark

    code to rotate banners

    not possible without a plugin
  13. Mark

    code to rotate banners

    No such option, to rotate premium banners you should make a plugin to handle that. I thought there was one of these floating around but not sure, its quite an easy one to start learning plugin development.
  14. Mark

    More contact forms

    yes, you can duplicate that plugin and change the names/references/paths so you have another. Adding fields is very easy with that plugin, simply add the HTML fields and the PHP will sanitize and process the new fields automatically behind the scenes.
  15. 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}"...
  16. 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.
  17. 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...
  18. 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...
  19. 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.
  20. 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.
Top