Search results

  1. Mark

    Where can I find the {$edit_website_extra}

    not sure off the top of my head where that is set, but if you have SSH you can run the following command: grep -R "edit_website_extra" * the other thing to consider for anyone else reading this thread in the future, is once you alter the core files you will need to re-apply those edits with...
  2. Mark

    Where can I find the {$edit_website_extra}

    a) you might know what you need to do, but I am sure you will run into issues in the future and wonder why doesnt feature X work on my site.... b) h2 is a heading, what your trying to do is semantically incorrect. You can apply the same style to <label> as you apply to <h2> you know ;) if...
  3. Mark

    Where can I find the {$edit_website_extra}

    you probably don't want to edit that directly, thats used so other plugins can hook into that template without template edits. You should be able to alter your CSS to use the style/id already set.
  4. Mark

    Version 1.2 (Multiple Categories Custom)

    good thinkin :) nice job
  5. Mark

    404 settings error

    In index.php you have enabled debug mode. You will want to set that back to 0;
  6. Mark

    Background

    WTF nothing, what i told you is correct... by default VisioList user.css is empty, YOUR user.css is full of code from another website... I cannot help you further.
  7. Mark

    Version 1.2 (Multiple Categories Custom)

    not really, you need to store their choice in database etc. Much more too it than just that I am afraid.
  8. Mark

    Background

    uh where did you get that CSS file from? it has nothing to do with your website at all... appears stolen. anyway, I told you exactly what to do, but when you do that you will have 10 other things to sort out.
  9. Mark

    Background

    you want that on your "body" in user.css add this: body { background: url(skins/parabola/img/background.png) top center; }
  10. Mark

    Background

    this part of your CSS: nav .column .add_server in HTML would be something like <nav class="column"> <span class="add_server"> but your HTML code has none of this... so it cant possibly work.
  11. Mark

    Background

    a screenshot is 100% useless when troubleshooting code. Post your URL along with your edit
  12. Mark

    Version 1.2 (Multiple Categories Custom)

    anything is possible :)
  13. Mark

    Background

    that looks fine, try it and see, if it doesn't work keep reading/learning and trying until you figure it out :)
  14. Mark

    Background

    user.css
  15. Mark

    Only show for premium

    perfect thanks, i got it working: {$p_show_stats} - make sure you are adding this to skins/yourskin/child/stats.hml your plugin had a small mistake, you dont need .html on the template name corrected code: if($TMPL['premium_flag'] == 1) { $TMPL['p_show_stats'] =...
  16. Mark

    Only show for premium

    your initial post indicates you did not make a stats.html template in your plugin folder... perhaps you should go over the tutorial on how to make a plugin. http://visiolist.com/community/threads/how-to-create-a-plugin.20/ then if you still have questions, upload what you have so we can see.
  17. Mark

    Background

    .classname { background: url(path/to/image.jpg) top left no repeat; } further reading: http://www.w3schools.com/cssref/pr_background-image.asp
  18. Mark

    Only show for premium

    try removing the <?php and ?> tags from details_build_page.php
  19. Mark

    Mobile Version :)

    yup bootstrap is a mobile first CSS framework, easy to extend and rock solid :)
  20. Mark

    404 settings error

    Ask your host to check the mod security log, most likely they are blocking something.
Top