Search results

  1. 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
  2. Mark

    More contact forms

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

    More contact forms

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

    code to rotate banners

    not possible without a plugin
  5. 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.
  6. 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.
  7. 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}"...
  8. 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.
  9. 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...
  10. 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...
  11. 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.
  12. 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.
  13. 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.
  14. 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
  15. 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'...
  16. 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...
  17. 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>
  18. Mark

    Error with database

    good catch basti!
  19. 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.
  20. Mark

    help with premium banners

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