Search results

  1. Mark

    how to change link on logout?

    it makes sense to have them redirect to the home page rather than the login page, I'll include this in the 1.4 release. you can apply this to your list like so: edit sources/user_cpl.php find on line 185: header("refresh:1; '{$TMPL['list_url']}/index.php?a=user_cpl'"); change to...
  2. Mark

    More contact forms

    great, I will roll these changes and a few other improvements into the next release
  3. Mark

    Premium banner rotation plugin

    yes, try this and let me know how it goes open plugins/PremiumBanners/skin_global.php find: $result = $DB->query("SELECT * FROM {$CONF['sql_prefix']}_sites WHERE premium_flag = 1 ORDER BY RAND()", __FILE__, __LINE__); replace with: $result = $DB->query("SELECT * FROM...
  4. Mark

    Premium banner rotation plugin

    this should be seperate, if you have members that have uploaded premium banners this will work. If they have no banners, then you shoudl see the alt tag. {$premium_rotate_row} add that tag to wrapper somewhere, then view source and you will see whats happening. Your premium member banner...
  5. Mark

    code to rotate banners

    this plugin has been created, but it will not work in ad zones. http://visiolist.com/community/resources/rotate-premium-banners.35/
  6. Mark

    Premium banner rotation plugin

    no, I only have 1 premium member on my dev site and it works just fine.
  7. Mark

    Premium banner rotation plugin

    its ready now, thanks for that
  8. Mark

    Rotate Premium Banners [Deleted]

    Mark updated Rotate Premium Banners with a new update entry: Bugfix, missing parent folder Read the rest of this update entry...
  9. Mark

    Premium banner rotation plugin

    ahh forgot it needs to be in a parent folder, remove any stray files in your /plugins/ directory manually via FTP that will remove those remaining errors. I'm posting the updated file now, re-download anytime and reinstall.
  10. 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'] =...
  11. 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.
  12. 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/
  13. 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...
  14. Mark

    Long Description + BBcode

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

    Long Description + BBcode

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

    More contact forms

    good stuff
  19. 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.
  20. 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
Top