Search results

  1. Mark

    Vote Links

    no, the edit is already included in 1.1 upload the zip from admincp, it makes no difference if you edit the file before or after
  2. Mark

    Twitter

    shouldn't need to change anything if your referring to a members site, but I might be misunderstanding what your asking.
  3. Mark

    Votes Just Reset

    that is correct, there are 3 functions new_day - resets at 12:01 new_week - resets Sunday new_month - resets on the first day of the month these are called comparing the results from PHP date function: $current_week = date('W', $time); if ($last_new_week != $current_week) { //must be a...
  4. Mark

    Guest Blogging Plugin

    we will have some premium user integration like this along the way for sure, dont expect it early.. Also I am not sure what FP is? ahh nvm Featured posts... :)
  5. Mark

    Screenshots - Internal Server Error

    Hi Kelly, please ensure you are using VisioList 1.0, the old screenshto server is retired, the new is much more reliable and faster
  6. Mark

    French translation

    Excellent thanks for sharing, will have a look. If you need advice or help please ask, plenty of good users around to help :)
  7. Mark

    Codecanyon - Tip

    that would mean giving codecanyon exclusive rights to sell our product and they keep 50% + no thanks :)
  8. Mark

    Problem adding category

    if you have the SEO plugin installed, go to admin -> plugins and click the install icon beside that one, then see if problem persists. if not, white screen means a suppressed PHP error, you can check your error_log for more details on the error which would give some clues. or you can enable...
  9. Mark

    Considered Possibility for admin to change Username

    hardly impossible ;) but no doubt could be a pain in some spots. redirects would not be handled at all, if they change the username it will 404 and thats the end. If the admin wants to setup redirects via .htaccess that is their choice, but the core cannot be responsible for handling...
  10. Mark

    Considered Possibility for admin to change Username

    Sure, we will try to make this addition to 1.1 :) its always risky to change the username though as link codes on members sites will need to be updated, and from my experience people tend to not read or think things like this through. Still, the admin should have this ability. if you are...
  11. Mark

    Votes Just Reset

    ahh good stuff, my pleasure :) I learned something new as well!
  12. Mark

    Votes Just Reset

    indeed, you are correct, i am mistaken, you can rank your list by "overall". I tested on my list and sure enough the list is ordered by overall hits from all time. Working as you expected and how i recommend to not handle it.
  13. Mark

    Turn on reviews

    I think basti was trying to show you there is no need to edit the core, use plugins. We all modify the heck out of our sites, but hacking core files is just not needed, use the hook locations ;) if the hook you need doesn't exist we can add it easily.
  14. Mark

    Receive the clients Favicon

    <img src="http://www.google.com/s2/favicons?domain={$url}">
  15. Mark

    Votes Just Reset

    as it says in your admin settings, ranking period is: daily/weekly/monthly there is no option to rank "forever", furthermore if you think about this for a while you will realize that ranking forever is a terrible idea. New sites would never be able to climb up your list. Reset is not just a...
  16. Mark

    Pageviews in user_cpl statistics

    edit the /child/user_cp_start template
  17. Mark

    Implemented Login (Big letters/Small letters)

    yes this is planned feature for 1.1 and is already on the todo list.
  18. Mark

    show how many new member join last time

    excellent!
  19. Mark

    Ranking method title

    Its possible, but this is probably not semantically correct usage for h1 tag. You can make the plugin easily though: make PHP plugin file: rankings_order_by.php add this to it: $TMPL['ranking_method'] = $ranking_method; then in your template you can add {$ranking_method} and display...
  20. Mark

    Set the hours between votes?

    It's 24, called in the new day function. No option to change it.... But.... You can easily run a Cron job to empty the ip_log database table every X hours.
Top