Recent content by ndks~

  1. N

    Magento Questions

    Thought I'd add to this. Specifically you'll need a plugin/script which detects geo-location and creates routes accordingly (personally, i'd have this completely separated from Magento). As far as showing different products to different locations - this should be possible out of the box with...
  2. N

    Can someone help me with this thanks :)

    The site is static.. No AJAX going on :) If you browse the source code, you will notice that each page is actually a list item, with the content predefined. It's best practice to use AJAX if you have a lot of content, but if you've only got a small amount of text / images like the demo it...
  3. N

    Extremely Simple PHP code needed! Help!!

    Heh, you don't need to set a variable to pass the array to the $_GET (tested before posting). I agree that writing a simple JS function is probably a better solution, however OP asked for PHP ;)
  4. N

    Extremely Simple PHP code needed! Help!!

    You may be able to simplify this a bit. Example url suffix: ?triggered <?php if(isset($_GET['triggered'])):?> <img src="lockedimagesrc" /> <?php else:?> <img src="unlockedimagesrc" /> <?php endif; ?> This determines if the triggered hash exists, and if it does it shows img...
  5. N

    Is there a script which can clone or steal other sites with all content ?

    Long story short - no. Website rippers and 'wget' will only save rendered html files. As PHP is a Hypertext PREprocessor, the server will render the files before sending the file to the client via http. Even if you did manage to get your hands on the PHP files, they are essentially redundant...
  6. N

    How To Make Subdirectories

    If I had a dollar for every time I was stumped by something that should be stupidly easy, I would be a billionaire by now... Unfortunately I don't get a dollar for every time I'm stumped - so I'm still poor ;)
  7. N

    How To Make Subdirectories

    Serious question? :P Is this for a shared/cloud hosting account, or vps/dedicated hosting? If it's for a shared hosting account, you would use the packaged control panel (cPanel, Plesk etc - most likely cPanel). If it's a dedicated hosting account, you may also have a control panel - but...
  8. N

    Permanently Closed Marketplace Sales Thread

    Hey Rakoom! Could I please get a review copy? Cheers.
  9. N

    Is it a good idea ?

    It comes down to preference. Get your hands on Adobe Mastersuite some how and start learning how to use Illustrator, Fireworks and Photoshop. I work with a lot of UI designers and formally you are supposed to use fireworks, but some (and I) prefer to use a combination of Illustrator and...
  10. N

    How can i modify this player ?

    I'm not sure forum browsers will feel entirely comfortable downloading a .rar file. If you could host it somewhere, and post the url, I will take a look. EDIT Also as a thought, if you are trying to stream from You Tube, the videos will more than likely be in some sort of flash format, which...
  11. N

    HTML/CSS footer problem

    This wouldn't work as changing the color on the element wouldn't change the color for all of the pseudo classes (a:visited, a:hover, a:active) etc. Remember when using CSS on anchors you have to be specific to the anchor. If the link is inside of a container and you specify the text color of...
  12. N

    Where do web designer get their inspiration from?

    Pattern tap is gold if you're looking for quick inspiration. Personally, my best ideas come when I'm just drawing scribbles or generic household tasks.
  13. N

    HELP!!! - - Which Shopping Cart is This???

    The site is running on Wordpress with a cart plugin. The cart plugin - I'm not 100% sure about. Perhaps cart66 or WooCommerce.
  14. N

    Joomla One Page Site

    I agree with Geist. You can install wordpress + a theme in under 5-10 minutes, so it's probably a lot more time saving as well... Also wordpress source code is easier to modify (IMO) so easier to implement onpage seo goodness. Here is a link to a page with some themes for wordpress which might...
  15. N

    Noob needing help with magento

    Under Unsecure/Secure base url, does it specify the "/default/" at the end of your URL? Is your Magento instance installed in public_html , or a directory?
Back
Top