Jump to content

sarah3585

Members
  • Posts

    27
  • Joined

  • Last visited

sarah3585's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Nice and clean, I like it! Is it a custom template?
  2. I couldn't get this to work either, I had to paste it into the tpl file instead.
  3. Found a work around posted here: http://www.nickbartlett.com/wordpress/reset-admin-password-in-prestashop/ 1) Register yourself on your store with the password that you want to be the admin password. 2) Goto PhpMyAdmin >> Customer >> copy the password key from user ID you just registered. 3) Goto PhpMyAdmin >> Employee >> paste the copied key on the password column of your admin ID. Ofcourse these are encrypted so you should not change anything while you copy paste.
  4. I was in the admin fine adding a facebook like button to the homepage text when i hit the update button I got redirected to the login page, tried logining but keeps saying it is wrong (I'm pretty sure its not). Went through lost password but never recieved an email, so I'm pretty stuck at what to do. It's odd that it just logged me out, maybe some code it didn't like? Any help would be great!
  5. Thank you for everyones comments. @curtdonohue It is my own theme, started from a blank canvas in Photoshop to fit my clients specifications. Thank you also for letting me know about the Links page, the client has added the content for this page, I've emailed her to let her know where she's gone wrong.
  6. http://www.idesignjewellery.co.uk It's my first site built with prestashop (bit not my first site.) Comments welcome.
  7. I think the issue may have been because these 2 products friendly urls were edited in the product editing options. I've redone these products now and images work fine. Anyone had issues with editing the friendly url text?
  8. Here's my htaccess file code # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # http://www.prestashop.com - http://www.prestashop.com/forums # URL rewriting module activation RewriteEngine on # URL rewriting rules RewriteRule ^([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2$3.jpg [QSA,L,E] RewriteRule ^([0-9]+)\-([0-9]+)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2.jpg [QSA,L,E] RewriteRule ^([0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/c/$1$2.jpg [QSA,L,E] RewriteRule ^lang-([a-z]{2})/([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$3&isolang;=$1$5 [QSA,L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$2&isolang;=$1$4 [QSA,L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$2&isolang;=$1 [QSA,L,E] RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$2$4 [QSA,L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$1$3 [QSA,L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$1 [QSA,L,E] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /cms.php?id_cms=$1 [QSA,L,E] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ /supplier.php?id_supplier=$1$3 [QSA,L,E] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ /manufacturer.php?id_manufacturer=$1$3 [QSA,L,E] RewriteRule ^lang-([a-z]{2})/(.*)$ /$2?isolang=$1 [QSA,L,E] # Catch 404 errors ErrorDocument 404 /404.php
  9. 95-284-small/crystal-illusion-necklace.jpg 35-394-small/traditional-crystal-tiara.jpg
  10. Hi, I have turned on friendly url and generated the htaccess. From what I see all but 2 products are fine, for these 2 products the images in the checkout show the default no image available. It uses the small image here and on the product page which displays just fine, so i don't understand. I have tried regenerating all the images, with no sucess. Any suggestions? Thank you.
  11. Hi, My client ships to the UK, Europe and US. However one type of product she only wishes to ship to the UK as it is very heavy so does not want to allow Europe and US delivery. Is there a way to customise this? Thank you
  12. The site I am building has two attribute drops downs that may or may not be used for a product they are two different colour options on for crystals and one for pearls. When any attribute is used I have added a links to a pop up which displays a colour chart for crystals and one for pearls. The client is asking if the links to the colour charts can only appear if that attribute is used rather than both regardless of what attribute is used on the page. Can it be done by using an if statment on the label or it's id? Here is my code: {foreach from=$groups key=id_attribute_group item=group} {if $group.attributes|@count} {$group.name|escape:'htmlall':'UTF-8'} : {assign var='groupName' value='group_'|cat:$id_attribute_group} 0}$('#resetImages').show('slow');{/if}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {$group_attribute|escape:'htmlall':'UTF-8'} {/foreach} {/if} {/foreach} View Colour Charts: Crystal | Pearl
  13. Thanks for the reply. The theme was created by myself using the standard prestashop so all code is the same for products.tpl and all js and css is there.
  14. Hi, When using Zjoom it does not move the image inside the box, I alway just get the bottom right hand corner. When swapping the theme back to the original prestashop theme it works fine. I have tried copying the products.tpl code from the prestashop theme to my custom theme but that doesn't work. I've checked that all the js and css files are in place. Any suggestions? Thank you.
  15. Hi, I have a shopping tab that links to all main categories so you can then drill down to the products within that category. I've achieved this by linking to /category.php?id_category=1 The issue I have is that it displays 'There are no products' as there aren't, but it gives the wrong impression. The title of the page is Home and the breadcrumbs show Home > Home. I want to hide these items for this page but I want to have them on other category pages. So basicly i'm asking if there is a way to target these items just for this category page within the category.tpl page?
×
×
  • Create New...