Jump to content

sammyhagar7

Members
  • Posts

    9
  • Joined

  • Last visited

sammyhagar7's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Awesome work around. Thanks for posting this! I was also looking for a way to skip that order summary page on the paypal module. It seemed redundant.
  2. I am trying to have the option of Guest Checkout in Prestashop. Is there a setting somewhere built into the default Prestashop that allows this? I've looked around but haven't been able to fine one. If I need to use a module, is there any that work well for what I want to do?
  3. I saw this thread in the forum... how exactly are people getting the option of guest checkout? That is what I am looking for. Thanks in advance for some help.
  4. OK so I did some experimenting. Yes, I had to put in a "reduction" in price by a certain amount rather than just setting a lower price. Then it showed the original price but didn't have a line through it. So then i moved the code in the CSS product_list.css toward the top of of the sheet rather than at the bottom and it works now. Thanks for the help. one last question: why did that example on the link "http://doc.prestasho...antityDiscounts" show the price crossed out? Seems like it is showing that as part of default prestashop?
  5. Yeah, I see the spot for the original price as well. In product tab I have a price in the pre-tax wholesale price and a price in the pre-tax retail price. For trouble shooting, I uploaded the default product_list.tpl file again and added the change you put in there. Just so you know what I did, here's what that section of code looks like (i don't know how you added those cool code boxes in the forum reply)... This is a little above where I added the code and included a little below. Let me know if that is right. Thanks {if isset($product.online_only) && $product.online_only}<span class="online_only">{l s='Online only!'}</span>{/if} {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} <div> {if ((isset($product.on_sale) && $product.on_sale) || (isset($product.reduction) && $product.reduction)) && $product.price_without_reduction > $product.price && $product.show_price AND !isset($restricted_country_mode) && !$PS_CATALOG_MODE} <span class="old_price_productlist"> {convertPrice price=$product.price_without_reduction} </span> {else} <div style="height:22px;"></div> {/if} {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if} {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)}<span class="availability">{if ($product.allow_oosp || $product.quantity > 0)}{l s='Available'}{elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)}{l s='Product available with different options'}{else}{l s='Out of stock'}{/if}</span>{/if} </div>
  6. Hey AKJV, Thanks for the reply... I tried the changes that you said and for some reason, the original price is not shown. any ideas? The address where I am working on getting the store going is http://www.jumpaudio.net/store. the "earbuds" are the products that have prices so far. Thanks so much for you help on this.
  7. Hello, I've been looking around for a solution to this problem. I am trying to get the original price of an item to show crossed out and then show the sale price below it. I have tried a bunch of stuff but haven't been able to figure it out. On this thread someone mentioned that they had the original prices crossed out? I'm not sure if it is a feature built into prestashop that i am missing or if i have to change some of the code somewhere. in any case, any help would be greatly appreciated. thanks
×
×
  • Create New...