Search results

  1. Mark

    More contact forms

    so the basics is this create a new template: plugins/SendMessage/thankyou.html add this (style as desired): <div> {$lng->mail_sent} </div> edit plugins/SendMessage/sendmessage.php find: $TMPL['content'] = $LNG['mail_sent']; Replace with: $TMPL['content'] =...
  2. Mark

    More contact forms

    I'll post an update to this plugin today so it will use a thank you page template, rather than just the language variable.
  3. Mark

    Premium banner rotation plugin

    Give this a shot and let me know how it works for you, I put it together quickly and didn't have time to really test deeply... if you encounter any issues I'll fix em up. http://visiolist.com/community/resources/rotate-premium-banners.35/
  4. 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...
  5. Mark

    Long Description + BBcode

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

    Long Description + BBcode

    I'll install this now and have a quick look, be back in a couple mins
  7. 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.
  8. 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...
  9. Mark

    More contact forms

    good stuff
  10. 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.
  11. 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
  12. 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
  13. Mark

    More contact forms

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

    More contact forms

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

    code to rotate banners

    not possible without a plugin
  16. 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.
  17. 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.
  18. 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}"...
  19. 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.
  20. 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...
Top