Jump to content

JSHD

Members
  • Posts

    26
  • Joined

  • Last visited

JSHD's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hello, I am looking for a way to add the shopping cart "info" into a (mail) form. (This data will be hidden for the client) But, i'll be honest.. I have no idea where to search for to make this work. Atleast i wanted to have the 'id_cart' from the 'ps_cart', so i can manually check the status of the cart, when the form is filled in. But where to retrieve this information from? Cookie or from connecting to the database? __ But if possible i want to have more.. a total view with a look a like of the blockcart or from the cart.php, would be much better. If someone could help me on the way, i would really appreciate it. Greetings,
  2. Hello, I would like to have developed a module on the basis of an input capability can calculate a surface, and thus can create a product in the cart. The surfaces are calculated to be: - Rectangles (based on length * width) - Beams (based on length * width * depth) This module will be used to make measurements on the sawing of wood, and plywood. An opportunity for completing the cost: - Per unit of material to modify. Each product may differ in unit costs. ( - The standard cost per cut change per product. This module should work alongside other products in the online store, and must therefore has to be activated per product. If there are questions, please let me know. edit: - need to be 1.5.x compatible: - it needs to be something like this (a sketch):
  3. Hello, Thanx for your work in this.. I think your fix, or an improved one, should been a standart option on Prestashop. I tried to do this for PS 1.4.4 but, to bad, it gives errors. It's showing correctly the amount that needs to be spent. But the errors comes up when i tried to add some products to the cart. It gives an parsererror. Is there any chance you want to have a look at this? I think the basics of your code still works. Greetings, thanks in advance, Jos
  4. Hi Fabien.. Also i am very interested is this module, but have seen you haven't post here for a while. Are you still working on it, is it finished, or did you 'gave up' on it? Like to hear about the progress.. Greetings,
  5. Did you found a solution yet? I have the same problem...
  6. For the complete website to redirect end your .htaccess file (old website) with this code: # Catch 404 errors ErrorDocument 404 /shop/404.php RewriteEngine on # 404 Redirect 301 /shop/404.php /404.php # BEST SALES Redirect 301 /shop/best-sales.php /best-sales.php # AUTHENTICATION Redirect 301 /shop/authentication.php /authentication.php # ADDRESS Redirect 301 /shop/address.php /address.php # ADDRESSES Redirect 301 /shop/addresses.php /addresses.php # ATTACHMENT Redirect 301 /shop/attachment.php /attachment.php # CART Redirect 301 /shop/cart.php /cart.php # REMAINING AND FORGOTTEN CATEGORIES Redirect 301 /shop/category.php /category.php # CONTACT-FORM Redirect 301 /shop/contact-form /contact-form.php # DISCOUNT Redirect 301 /shop/discount.php /discount.php # IDENTITY Redirect 301 /shop/identity.php /identity.php # MY ACCOUNT Redirect 301 /shop/my-account.php /my-account.php # NEW-PRODUCTS Redirect 301 /shop/new-products.php /new-products.php # ORDER-CONFIRMATION Redirect 301 /shop/order-confirmation.php /order-confirmation.php # ORDER-DETAIL Redirect 301 /shop/order-detail.php /order-detail.php # ORDER-FOLLOW Redirect 301 /shop/order-follow.php /order-follow.php # ORDER-RETURN Redirect 301 /shop/order-return.php /order-return.php # ORDER-SLIP Redirect 301 /shop/order-slip.php /order-slip.php # PAGINATION Redirect 301 /shop/pagination.php /pagination.php # PASSWORD Redirect 301 /shop/password.php /password.php # PRICES DROP Redirect 301 /shop/prices-drop.php /prices-drop.php # REMAINING AND FORGOTTEN PRODUCTS Redirect 301 /shop/product.php /product.php # SEARCH Redirect 301 /shop/search.php /search.php # SITEMAP Redirect 301 /shop/sitemap.php /sitemap.php # SUPPLIER Redirect 301 /shop/supplier.php /supplier.php # MANUFACTURER Redirect 301 /shop/manufacturer.php /manufacturer.php # INDEX Redirect 301 /shop/index.php /index.php
  7. Last night i wrote an manual for 301 redirecting with query string: http://www.prestashop.com/forums/viewthread/119653/general_discussion/redirecting_301__how_to/
  8. OK, after viewing many hundreds of pages i finally found a solution for good 301 Redirecting. Too bad this info wasn't available on this forum and nobody replies at all. But hell.. here is the way you can do it.. Step 1 is to put off all your SEO configuration from you OLD and NEW site. Simply turn Friendly URL off in the Dashboard and generate a fresh .htaccess file. Step 2 is to create a fresh text file. Start the file with RewriteEngine on Then add the flowing code for every: Category-page: If my old page is: http://www.example.nl/shop/category.php?id_category=37 And my new page is: http://example.nl/category.php?id_category=1000 RewriteCond %{QUERY_STRING} ^id_category=(37)$ RewriteRule ^category\.php$ http://example.nl/category.php?id_category=1000 [L,R=301] Product-page: If my old page is: http://www.example.nl/shop/product.php?id_product=5 And my new page is: http://example.nl/product.php?id_product=151005 RewriteCond %{QUERY_STRING} ^id_product=(5)$ RewriteRule ^product\.php$ http://example.nl/product.php?id_product=151005 [L,R=301] CMS-page If my old page is: http://www.example.nl/shop/cms.php?id_cms=9 And my new page is: http://example.nl/cms.php?id_cms=7 RewriteCond %{QUERY_STRING} ^id_cms=(9)$ RewriteRule ^cms\.php$ http://example.nl/cms.php?id_cms=7 [L,R=301] Index.php-page If my old page is: http://www.example.nl/shop/index.php And my new page is: http://example.nl/index.php Redirect 301 /shop / Step 3 Is to save the file just made to a .htaccess file and place it in the root of your OLD site! (Your file should look like this:) RewriteEngine on RewriteCond %{QUERY_STRING} ^id_category=(37)$ RewriteRule ^category\.php$ http://example.nl/category.php?id_category=1000 [L,R=301] RewriteCond %{QUERY_STRING} ^id_cms=(5)$ RewriteRule ^cms\.php$ http://example.nl/cms.php?id_cms=7 [L,R=301] RewriteCond %{QUERY_STRING} ^id_product=(5)$ RewriteRule ^product\.php$ http://example.nl/product.php?id_product=151005 [L,R=301] Step 4 Test if this configuration works for you. For me it works 100%! Step 5 Don't activate your friendly URL's of your old site. BUT you can activate the SEO configuration of your new site and generate a new .ht-access file through the dashboard. Finished
  9. you got an answer allready? Try this: Redirect 301 /mugs-coasters/15-photo-coaster.html /shop/mugs-coasters/42-square-photo-coaster.html
  10. Hello If i place the code below is my fresh generated .htaccess file i am getting an internal error. What am i doing wrong? RewriteEngine on RewriteCond %{QUERY_STRING} ^id_cms=4$ RewriteRule ^/cms.php$ http://multihout.nl/content/16-over-multihout [L,R=301] RewriteEngine on RewriteCond %{QUERY_STRING} ^id_cms=2$ RewriteRule ^/cms.php$ https://multihout.nl/contact-form.php?fid=1 [L,R=301] RewriteEngine on RewriteCond %{QUERY_STRING} ^id_cms=5$ RewriteRule ^/cms.php$ http://multihout.nl/content/7-veilig-betalen [L,R=301] RewriteEngine on RewriteCond %{QUERY_STRING} ^id_cms=8$ RewriteRule ^/cms.php$ http://multihout.nl/content/11-veel-gestelde-vragen [L,R=301]
  11. I found the answer myself.. you have to place in the <head> of the file {template}/header.tpl the folowing code: <meta name="language" content="{language code}" /> {language code} can be "EN" for English, or "NL" for Dutch.
  12. Hello, I would like to add Meta Language Tags to all of my pages. Can someone tell me in what file(s) i have to place the code? Greetings, Jos
  13. where to download the latest version? Please explain, i allready have an bug tracker account, and the version should be released yesterday... Greetings
  14. Hello, On 11 may prestashop released, as sayd on the forge site, Prestashop 1.4.2. Nice! But where to download it? I can't find it on the forge site, as well as here... I had some anoying bugs in 1.4.1 and i really need to update. Greetings, Jsh
  15. That posible? I bought 5 modules that time.. I still haven't got a message back from her.. and no module update.. The message i got from the prestastore consu service: " Hi, I am sorry but we cannot refund on a simple demand virtual products that have already been downloaded, unless they have malfunctions peculiar to the product that their developer cannot solve. In addition as mentioned in the product page, the support for this contribution can only be done in English. Please take it into account when asking for support. Thanks. Regards, Patric CODRON "
×
×
  • Create New...