Jump to content

JET-Dev

Members
  • Posts

    16
  • Joined

  • Last visited

JET-Dev's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. You can always append things with a little Javascript magic
  2. Det finns en modul för Nets här : http://addons.prestashop.com/en/payments-gateways-prestashop-modules/17102-nets-payment-gateway.html
  3. Hello, Having problems with latest version of the PayPal module v 3.4.1. I'm using Prestashop 1.4.9 and when a choosing PayPal as Payment method an error box shows up saying unable to save account. Is the PayPal module supporting Payment as radio buttons? Im using the one page checkout module. Best regards and a happy new year.
  4. Dear forum, I can't find any way to translate the phrase Pay with card or Paypal account in checkout? I can't find it in BO translate section i also tried with the xml translation file. I'm using PayPal module 3.2.5 Anyone who has done this? Best regards,
  5. Same problem in module version 1.4.4 of CloudCache for me. permanshu i see now that you accomplished to paralellize downloads do you still use Cloudcache? Anyone with any advice? This is drivin me crazy!
  6. Im using the facebook fan coupon http://addons.prestashop.com/en/social-commerce-facebook-prestashop-modules/2953-fbpromote.html Yes, Its just that i cant find that code in the module. In backoffice i changed the language code to sv-se. And now its translating the like button sometimes and sometimes it doesnt?
  7. Hello, I wish to change the Facebook locale settings from en_US to sv_SE. Can´t find the code in my facebook like module. It will change the language of the like button. Anyone who knows how to change this? Seems like its in english by default.
  8. Use one page checkout and use the guest checkout. Cause people shopping dont wanna spend to much time filling in their personal information. Make it so that there is as few clicks as possible to complete the order. An example of reducing clicks in cart is: I added the code checked="yes" to my terms of service checkbox in my cart. I reduced my order process with one click by doing that. So now I have like three clicks to complete an order. Any other tips?
  9. Kör ni prestashop 1.4? Isåfall får ni betala och ladda ner http://addons.prestashop.com/en/payments-gateways/165-payson-payment-module.html Funkar klockrent. Då går 100 % av ordrarna in i prestashops system. Förutom att jag förlorar på att payson faktura vägrar funka på varukorgar över 1000 kr. Om ni kan nåt om detta kan ni väl posta här Väskor och Accessoarer - Homestock
  10. Hello, I got it fixed Seems like the creator of my theme has not tested it with friendly url enabled. I inserted and new-products.php etc.... in my menunav.tpl Thank you I really appreciate your help. You make this forum the best in forum in the world
  11. Jag tycker det går snabbare nu med 1.4.2.5
  12. Hello, Thank you for helping. Problem is with CMS and Menu. I activated friendly url and everything works perfect except that when clicking on my menu links from my CMS pages it uses the url: /content/nya-produkter. It should be the url: /nya-produkter. To see the problem “http://www.homestock.se/content/1-leverans” and click on any menu link. You will then be directed to : “http://www.homestock.se/content/nya-produkter” Should be “http://www.homestock.se/nya-produkter” Heres the code from my menunav.tpl {l s='Welcome' mod='menunav'}, {if $logged} {$customerName}({l s='Log out' mod='menunav'}) {else} {l s='Log in' mod='menunav'} {/if} {l s='Cart:' mod='menunav'} {$cart_qties} {l s='product' mod='menunav'} {l s='products' mod='menunav'} {if $cart_qties > 0} {if $priceDisplay == 1} {convertPrice price=$cart->getOrderTotal(false, 4)} {else} {convertPrice price=$cart->getOrderTotal(true, 4)} {/if} {/if} {l s='(empty)' mod='menunav'} <!-- /Block user information module HEADER --> {if $xml->body->home_menu_link1}getPageLink({$xml->body->home_menu_link1|escape:'htmlall':'UTF-8'})}" >{if $xml->body->$mnt}{$xml->body->$mnt|stripslashes}{/if}{/if} {if $xml->body->home_menu_link2}getPageLink({$xml->body->home_menu_link2|escape:'htmlall':'UTF-8'})}">{if $xml->body->$mnt2}{$xml->body->$mnt2|stripslashes}{/if}{/if} {if $xml->body->home_menu_link3}getPageLink({$xml->body->home_menu_link3|escape:'htmlall':'UTF-8'})}">{if $xml->body->$mnt3}{$xml->body->$mnt3|stripslashes}{/if}{/if} {if $xml->body->home_menu_link4}getPageLink({$xml->body->home_menu_link4|escape:'htmlall':'UTF-8'})}">{if $xml->body->$mnt4}{$xml->body->$mnt4|stripslashes}{/if}{/if} {if $xml->body->home_menu_link5}getPageLink({$xml->body->home_menu_link5|escape:'htmlall':'UTF-8'})}">{if $xml->body->$mnt5}{$xml->body->$mnt5|stripslashes}{/if}{/if} {if $xml->body->home_menu_link6}getPageLink({$xml->body->home_menu_link6|escape:'htmlall':'UTF-8'})}">{if $xml->body->$mnt6}{$xml->body->$mnt6|stripslashes}{/if}{/if}
  13. Have u solved this? I have a similar problem in my store
  14. Anyone? Stuck with this for a week now.. I know its not impossible to solve. Here is my htaccess file. why is it giving the link www.mysite.se/content/new-products? when it should be www.mysite.se/new-products Same happens with www.mysite.se/productcategory/new-products when u click on the menubar while watching a product. PLS HELP Im on prestashop 1.4.2.5 # URL rewriting module activation RewriteEngine on # URL rewriting rules RewriteRule ^api/?(.*)$ /webservice/dispatcher.php?url=$1 [QSA,L] RewriteRule ^([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*\.jpg$ /img/p/$1-$2$3.jpg [L] RewriteRule ^([0-9]+)\-([0-9]+)/[_a-zA-Z0-9-]*\.jpg$ /img/p/$1-$2.jpg [L] RewriteRule ^([0-9]+)(\-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*\.jpg$ /img/c/$1$2.jpg [L] RewriteRule ^([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$1 [QSA,L] RewriteRule ^[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$1 [QSA,L] RewriteRule ^([0-9]+)\-[a-zA-Z0-9-]* /category.php?id_category=$1 [QSA,L] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*) /supplier.php?id_supplier=$1 [QSA,L] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*) /manufacturer.php?id_manufacturer=$1 [QSA,L] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*) /cms.php?id_cms=$1 [QSA,L] RewriteRule ^content/category/([0-9]+)\-([a-zA-Z0-9-]*) /cms.php?id_cms_category=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html /product.php?id_product=$3&isolang;=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)\.html /product.php?id_product=$2&isolang;=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*) /category.php?id_category=$2&isolang;=$1 [QSA,L] RewriteRule ^404-error$ /404.php [QSA,L] RewriteRule ^adress$ /address.php [QSA,L] RewriteRule ^adresser$ /addresses.php [QSA,L] RewriteRule ^authentication$ /authentication.php [QSA,L] RewriteRule ^best-sales$ /best-sales.php [QSA,L] RewriteRule ^varukorg$ /cart.php [QSA,L] RewriteRule ^kontakta-oss$ /contact-form.php [QSA,L] RewriteRule ^discount$ /discount.php [QSA,L] RewriteRule ^guest-tracking$ /guest-tracking.php [QSA,L] RewriteRule ^history$ /history.php [QSA,L] RewriteRule ^identity$ /identity.php [QSA,L] RewriteRule ^manufacturers$ /manufacturer.php [QSA,L] RewriteRule ^konto$ /my-account.php [QSA,L] RewriteRule ^nya-produkter$ /new-products.php [QSA,L] RewriteRule ^order$ /order.php [QSA,L] RewriteRule ^order-follow$ /order-follow.php [QSA,L] RewriteRule ^quick-order$ /order-opc.php [QSA,L] RewriteRule ^order-slip$ /order-slip.php [QSA,L] RewriteRule ^forgot-your-password$ /password.php [QSA,L] RewriteRule ^specials$ /prices-drop.php [QSA,L] RewriteRule ^search$ /search.php [QSA,L] RewriteRule ^sitemap$ /sitemap.php [QSA,L] RewriteRule ^stores$ /stores.php [QSA,L] RewriteRule ^suppliers$ /supplier.php [QSA,L] # Catch 404 errors ErrorDocument 404 /404.php
  15. Hello, Just have a slight problem with my CMS and Menu. I activated friendly url and everything works perfect except that when clicking on my menu links from my CMS pages it uses the url: /content/nya-produkter. It should be the url: /nya-produkter. To see the problem “http://www.homestock.se/content/1-leverans” and click on any menu link. You will then be directed to : “http://www.homestock.se/content/nya-produkter” Should be “http://www.homestock.se/nya-produkter” Thankful to all replies as I can’t solve this on my own.
×
×
  • Create New...