Jump to content

JonQCoder

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Location
    Texas
  • Activity
    Developer

JonQCoder's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I was having problems with my top horizontal menu not letting me add any links to it or delete links from it, so I attempted to reset the module. An error message showed up briefly, I don't recall what it said, but now my top menu is completely gone. Under modules I have the option to "install" or "delete" it but when i try installing it, it says This module is already installed: blocktopmenu . Deleting it displays a "module deleted successfully" message, and the module changes from "Top Horizontal" to "blocktopmenu" and gets put under "other modules". If I go to install it, I get the same already installed message. I'm not sure what else to try at this point. Replacing the module's files didn't change anything, but if I remove the files completely, it takes it away, but reinstalling it results in the same problem. I'm using Prestashop 1.6.0.14
  2. I am attempting to implement this, however, the shipping only takes and displays the last entry. So if someone orders 305 pounds worth of products, which the code above would split into three packages, it only shows the shipping for 5 pounds. Rather than the shipping for a 150 package + 150 package + 5 package. Suggestions on changing this? I sell some pretty heavy books, so it does not take much to meet the 150 limit.
  3. The Connect to UPS module(v1.4.0) consistently gives the incorrect amount for UPS Worldwide expedited. It is almost always off by $15, so I thought I would just add $15 to non US shipping, however none of the changes to the module i've made seem to have any effect. Perhaps I am changing the wrong bits of code. If I wanted to add $15, which line of code would I need to change? Edit: I have attempted to add it using the "handling fee" however, the UPS module just blanket applies it to every single carrier, and the Shipping>Preferences>Handling Fee doesn't apply when I set "Apply handling fee" to yes in the carrier.
  4. I have the same problem as the original post. I have "Tax excluded" in the groups but it still adds the tax to all products. Is there a different method to exclude the tax being added to the price until checkout? I don't have an aversion to modifying code if necessary.
  5. I am using the Anchor theme from templatemonster.com. I attempted to add the code you suggested to modules/homefeatured/homefeatured.tpl at line 46 but it still showed $0.00 instead of "Coming Soon". The code at that line before the changes is: {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} I added the code you suggested in the else part of it, but changed it to: {if $product.price == 0} {l s='cooming soon' mod='homefeatured'} {else} {convertPrice price=$product.price_tax_exc} {/if}
  6. Hello, I am in the process of converting our old CRE site over to Prestashop and so far it's been absolutely wonderful, however, I am a bit stuck. I would like to display "Coming Soon" where the featured product price is $0.00, but can't seem to figure out how. I was able to get the actual product page to display "coming soon" through another topic I found in a search here, but trying to apply that same thing to featured products causes the site to return blank. Any suggestions? I'm using Prestashop 1.5.6.2. New to prestashop, but familiar with php development.
×
×
  • Create New...