Jump to content

Irfan Bahalwan

Members
  • Posts

    58
  • Joined

  • Last visited

Irfan Bahalwan's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi Fabien, I'm intrested with this DHL module that u developed. I'm a PHP programmer & kinda familiar with prestashop & XML. So, if u need help or want get something to develop just let me know
  2. Dear fellow prestashop user, is there any way to obtain shipping rate database/list from reputable shipper like DHL, UPS or FedEx? Yes, there is a some plugins for FedEx, UPS etc already. But what I want here is shipping rate database. Because i dont ship the product myself. I just need the price list, so I could have my supplier shipped it for me. And somehow I couldn't get my supplier's shipping rate. So, is there a way to get it manually? Any comment or thought would be appriciated
  3. Try open : modules/blokcart/ajax-cart.js find this line (by default line 195) var $element = $(callerElement).parent().parent().find('a.product_image img,a.product_img_link img'); and change it into this var $element = $(callerElement).parent().find('a.product_image img,a.product_img_link img'); Clear the smarty's cache again, and refresh the page
  4. I've seen your file, and yes, there's some modification there. Ok, because I dont really good at JS, for start, change your ajax-cart.js with the default one (the one i attached) Delete your smarty's template (by deleting all files in tools/smarty/compile folder), and refresh the page. ajax-cart.js
  5. I'm afraid u've uploaded the wrong file Wait a minute, I guess u dont have to uploaded the file. I can access it directly. I'll take a look of it
  6. I've seen your page, and it seems every add-to-cart animation picture use Crysis 2's image. Have u modified this file? modules/blockcart/ajax-cart.js Coz it seems somehow the image source is fixed (always refers to Crysis 2) Btw, if u still confused, u could give us ajax-cart.js file. I'll take alook of it
  7. From the 1st picture, i can see that the CSS is overwritten by element's value. So, what you need to do, is searching the template file that used by that page. Find a file that contains this line : And change the style's width and height value. Or if you want it to follow your CSS rule, just delete the width and height value
  8. There's a simple way to make sure what's wrong, your hosting's email setting or your prestashop's email setting Just create a php file, paste this code (change $to 's value with your email) and run the file <?php $to = "[email protected]"; $subject = "Test mail"; $message = "Hello! This is a simple email message."; $from = "[email protected]"; $headers = "From:" . $from; mail($to,$subject,$message,$headers); echo "Mail Sent."; ?> If the email wont sent, just call your hosting provider
  9. I dont know your language, so I cant decide which email template that u use. But by default, if you want to setting the email messages, you can go to mails folder, select the language that u want u use (en for english, fr for france etc), and edit the html files.
  10. I'm afraid u cant do that with prestashop's default engine. U should "hardcode" it a little
  11. Honestly, It's kinda hard to explain if you dont know HTML and CSS. U must upload the image, change some code in header.tpl, add some line into css/global.css It'll be a lot easier if u can IM me, so I can provide u the steps. But if you insist, just do this steps : - Upload your image into themes/theme-that-u-use/img/ folder for this example, we use a picture named small_logo.jpg - Open your header.tpl file in the themes/theme-that-u-use/ folder Change the previous code Opening Hour 8am - 4pm Phone +1234567 into this one Opening Hour 8am - 4pm Phone +1234567 - Open your global.css file at themes/theme-that-u-use/css/ folder Add this code into the last line .opening_hour { background:url(../img/small_logo.jpg) 1px 2px no-repeat; position:absolute; margin-left:230px; margin-top:30px; padding-left:30px; } You can change the margin, padding, and image position (1px 2px) value Hope this could work
  12. Could u give us your website's link, and the name of product-rating plugin that u use?
×
×
  • Create New...