Search results

  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?
  16. N

    The best eCommerce setup?

    I don't think you'd need to go to the extent of getting a dedicated server :p If need be, you could ask your host to help you install caching software. Am running a Magento site at the moment on shared hosting with 1000+ products and is going pretty good. But as for the development.. It will...
  17. N

    The best eCommerce setup?

    Magento without a doubt. A few people have troubles with installation and theming, but the finished product is uncomparable to anything else (free at least). Wordpress probably isn't serious enough to be used as a large scale solution. One thing however, if you are hosting it yourself, you need...
  18. N

    How would I build this?

    I actually just found a plugin for it. BHW isn't letting me post URL's however I simply searched "image voting plugin wordpress" in g$$gle and found something within a minute. Does cost money however, but still cheaper than paying a web dev.
  19. N

    omg, I feel so stupid for asking this html question...

    I'm not sure about Iframing G$$gle because they have some heavy duty restrictions on iframes. However if you are trying to set the height of an element to 100%, embed jquery in your page and then put this in script tags in your head: var windowHeight = $(window).height()...
  20. N

    How would I build this?

    Wordpress would be perfect - I was thinking Drupal, but yes, Wordpress would be easier. You'd need to make a plugin (or modify an existing plugin) to store references to your images and the attached votes inside of your sites database. Probably much easier to pay a developer if you have little...
Back
Top