Jump to content

koolrifz

Members
  • Posts

    29
  • Joined

  • Last visited

  • Days Won

    1

koolrifz last won the day on October 26 2011

koolrifz had the most liked content!

koolrifz's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Bingo! Replaced classes/Mail.php as well as the mailalert.zip Benjamin uploaded. Thanks!
  2. Mail Alert Problems too... Translation files all good Module installed and configured properly Uninstalled and deleted Mail Alerts and re-uploaded the version above - no go Uninstalled and deleted Mail Alerts and re-uploaded the version from Prestashop 1.5.6.0 - no go. Is the current version of Mail Alert still ver 2.4? In my backoffice it says Mail Alert 2.4 - however, I notice there is an upgrade folder which has the following code: <?php if (!defined('_PS_VERSION_')) exit; function upgrade_module_2_5($object) { return Db::getInstance()->execute(' ALTER TABLE '._DB_PREFIX_.'mailalert_customer_oos ADD '.mailalerts_stripslashes_field('id_lang').' INT( 10 ) UNSIGNED NOT NULL , yadda yadda... My table is empty of data. is that correct? Is that supposed to be upgrading to version 2.5??? I've been working on this for many hours now and can't get it working. Customers get their emails but the Merchant Mail Alert doesn't work for me.
  3. YEP! I'm just trying to figure out how to mark this thread as SOLVED. Thank you vekia.
  4. Got it working in the product.tpl file by using this http://www.prestashop.com/forums/topic/2795-call-for-pricing/ Just add in the following 2 lines after <!-- add to cart form --> {if $product->price == 0}<h3>Call for Pricing!</h3>{/if} {if $product->price != 0} then your form code remains the same <form id="buy_block" .......... after the form tag closes on the next line add: {/if} Thank you for your help. Cheers, Rob
  5. I got it working on the homefeatured.tpl using the mod here: http://www.prestashop.com/forums/topic/210915-prestashop-152-tutorial-call-for-price-modifications/ B. Find in modules/homefeatured/ Find and open the file homefeatured.tpl ------------------------------------------------------------------------------------------------------- Find the line below ------------------------------------------------------------------------------------------------------- <a class="lnk_more" href="{$product.link}" title="{l s='View' mod='homefeatured'}">{l s='View' mod='homefeatured'}</a>------------------------------------------------------------------------------------------------------- After the line above add ------------------------------------------------------------------------------------------------------- {if $product.price < '1.00'}<span class="callforprice"><br/>Call For Price!!!</span> {else} ------------------------------------------------------------------------------------------------------- But make sure it is above the line below ------------------------------------------------------------------------------------------------------- {if $product.show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}<p class="price_container"><span class="price">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span></p>{else}<div style="height:21px;"></div>{/if}------------------------------------------------------------------------------------------------------- After the above lines add the line below ------------------------------------------------------------------------------------------------------- {/if} Now if could just get the Product page to work I'd be wrapt!!!
  6. Yes, that makes sense and all the listings are working but I wonder why my product still shows $0.00 http://store.musicplace.com.au/trombones/1074-the-ultimate-lead-or-jazz-trombone.html ...and the same product on the front page Featured Products still shows $0 http://store.musicplace.com.au/ So close. Thanks!
  7. Oh cool. I was replying to myself and didn't see your reply. Thank you very much...I'll get stuck into it. So will I find and change code above in the category-tpl and manufacturers-tpl too? Cheers
  8. Here's a thought... IF "Show Price" is not checked in Product Global Information (when entering the product into admin site) THEN Display "Call for Price" images relevant to each product listing page. Little image for Featured Products module, larger image for Product page etc. Text "Call for Price" is fine but an image can be a better call to action especially since we want to speak to the customer.
  9. Hi, I've upgraded to 1.5.5 and would really like to hack in a "Call for Price" when the price is set to $0. It would need to be on the Featured Products module, Product listing, Manufacturers page and Product page. I've seen some tutorials around for ver 1.4...tried it but no luck. If there is already a tutorial around I would be grateful if you could send me in the right direction. Thank you!
  10. Thanks for that Sebo. Love your stuff from Bali! I was ignorant to the effects of deleted pages - thank you! I thought every discontinued web page needed to be registered in the .htaccess or robot.txt. I have a Joomla site with many many 404 errors which now I can track back to an out of date sitemap.xml that was registered with google. Found this on the Webmasters Tools site: "When a page is updated or removed, it will automatically fall out of our search results. You don’t need to do anything to make this happen." https://www.google.com/support/webmasters/bin/answer.py?answer=164734 So in the end, just making sure the sitemap is up to date should be sufficient. Hope that's correct.
  11. Hi All, We sell many second hand musical instruments and do not use the inventory functionality in Prestashop. When I have sold an instrument, what is the best way to delete the item from my catalogue without getting a 404 error on the URL and images? As of my last Crawl I have 30 URLs Not Found that I want to fix. I'm thinking it's the daunting task of: opening the .htacess file and 301 each URL and image to the relevant category page opening the robot.txt and Disallow each URL and image Would you please comment on how you maintain your out of use URLs? Maybe there is already a discussion on this forum...but I can't find it. Thanks, Rob
  12. Hi MouthGuard, I had the same issue and discussed on post #27 of this same thread. http://www.prestashop.com/forums/topic/138164-15-prestashop-theme-a-couple-of-problems/page__view__findpost__p__667769 Hope that helps
  13. Can someone give me some idiot advice. I have both USD $ and AUD $ as my currencies. In the currency list you are just given dollar $ symbols. Looks a bit silly with the pound symbol, euro and two $'s in the list. How hard would it be to make the width of the dropdown list wider and included both text and the symbol. USD $, AUD $, EURO €, POUND ?
  14. This may be of interest. My shop is in Australia so the label for "Currency : €" at the top may feel a bit uncomfortable and confusing for the general public so I've changed the symbol to $, the same as my default currency. But I do want to look into this because if you change from the default currency to another symbol the result will not be reflected. THe reason being is that the symbol is hard coded on line 53 in prestashop_new/modules/blockcurrencies.tpl I wonder if anyone could write the code that would display the selected currency? Otherwise I may just delete the symbol from Currency : $ and let the change be noticed in the stores prices. Not perfect but it'll work.
×
×
  • Create New...