Magento price showing twice - magento

I installed a new template on my Magento store and when I got to a product page it shows the price twice? Most of my products are a "simple" Product and I have one "Configuarable" product
Any ideas how I can get rid of one of the prices?
Here is Simple product:
Here is configurable product: (with an option selected)
Any ideas?
I'm running latest 1.9.3.7 and can't find a fix anywhere

You need to check your
app/design/frontend/default/your _theme/temlate/product/view.phtml
1st: inspect find the class or id
2nd: then remove wrong price code
before doing this take a backup of your file

I don't think anyone can help you here unless it's a popular theme people would know. The problem is not in Magento, it's in the theme files. You will need to find the theme file and check the php logic to truly know what is happening there. Best case, contact the theme developer if you purchased it or switch to a new theme.
To find the theme file responsible for printing the price, you can enable template hints. This will show the hints to you and all the customers, so be diligent about doing this live. Secondly, you will need to take a look at the block which encompasses the pricing. When you find the template name, just go to the .phtml file and see what's going on there with the price output.

Edit app/design/frontend/default/your_theme/template/catalog/product/view.phtml
Look for price divs and comment one.

Related

How do I override the base price against Custom option Pricing?

Hi this was a question from magento forum on their site.. However I am looking for the same thing for a while, could any answer this ?
*I need the exact area in which Magento adds Base price and Custom option price *
I have been looking across these forums so many apologies if this is a
duplicate, but I am having a lot of trouble with the custom option
pricing on front-end not being absolute, but adding itself onto the
base price of the product.
I have been looking at a few modules, which I am happy to purchase, if
easy to implement, but there are quite a few that are going around.
Attached are some images if anyone has a solution.
The base price on the product (is a product with many different custom
options, could be size options also) is £7.32, which is fine as the
page states ‘From £7.32’
However, there are a few options selectable, which rather than show
(+) and ultimately add to the base price, should show the actual price
and not onto of the base price.
So Rhynogrip 70 x 198 price is actually £48.96, however when selected
it adds this to the £7.32, rather than replace it. The attached all
show this.
If anyone could help that would be great!
Thanks in advance.
I recommend you set the price of Rhinogrip 70x198 to 48.96 - 7.32 because that is what MAgento expects.

How can i edit the product template of Magento Website

Sorry for asking for very basic question. Actually i am very new to magento hence couldn't find the solution..Here is the question:
I have a magento ecommerce website and i want to edit the product template of the website.
I have both magento and FTP credentials. But not able to figure out where is the actual product template.
in which folder i have to look for the product template file?
I want to append some HTML to each product page hence i am looking for it.
Please Advise.
Hope to get some help.
Regards,
Rich
The best way to debug this type of issue when new to magento is to "Turn on Template Path Hints"
Log into the admin
Goto -> System ->Configuration, and on the bottom of the list select “Developer”
click on Debug – you will only see “Profiler”. Here is the trick – you have to switch the “Current Configuration Scope:” [in the upper left] to a website instead of default. Select “Main Website”.
Now you will see the selection for Template Path Hints – check yes. This will display the path of the template for each block of the page so you can find stuff! You can also choose to “Add Block Names to Hints” to see the corresponding model class for the block.
Which going to point you to app/design/frontend/[theme]/default/template/catalog/product/*
Read more # http://www.redlightblinking.com/blog/magento-debugging-how-to-debug-template-paths-logging-and-display-errors
In addition to the previous answer make sure to disable the cache otherwise you might not see the results right away.
The Product page has many files attached but mainly the most importants, in my opinion, areI
the media.phtml that controls the size of your mage, more views, etc then you have the
the upsell.phtml that call the upsell products and
the view.phtml that combine all these files.
You can find them at
app/design/frontend/base/default/template/catalog/product
app/design/frontend/base/default/template/catalog/product/view
Copy these files and paste them in your theme directory. DO NOT OVERRIDE THEM! and also keep in mind you have: single product, configurable product, etc so you'll have to edit those files as well if you need!
Hope this helps and any feedback from other users is always appreciated.
I have a Magento e-commerce website and I want to edit the product template of the website. I have both Magento and FTP credentials. But not able to figure out where is the actual product template. in which folder do I have to look for the product template file, I would like to edit my product by adding some code. I found this folder in FTP /public_html/app/design/frontend/ET/base/Magento_Catalog/templates/product/view/productlabels.phtml
I edit some code
unit price :
<script type="text/javascript">
$(document).ready(function() {
var Quantity = document.getElementById("qty").value;
var UnitPrice = document.getElementById("options[4]").value;
var vUnitPrice = vUnitPrice / vQuantity;
vUnitPrice = $("#vUnitPrice ").val(total2.toFixed(2));
document.write(vUnitPrice);
}
</script>
but nothing changes, help me please

Magento - Adding quantity box to upsell / related products

I have a question regarding Magento. I want to be able to add a quantity box to the products that show up in the 'related products' list that is shown on the product detail page. This way a visitor can order a related item multple times instead of only once per action. I have been looking for a solution for this for over 2 weeks, but I can't seem to find anything usefull. Can anyone help me out?
Thanks in advance!
Think you need to edit this template: your_package/your_theme/template/catalog/product/list/upsell.phtml. If you do not have that file already in your theme, simply copy it in your theme and package following the rest of the path.
There you can add you Qty input box and add Add to Cart button and change the URL to include the qty. You should bear in mind that you may have also configurable/bundle products displayed as an up-sell, so you should cover these too.

Multi-part clothing store in Magento

EDIT: This has been resolved thanks to: http://www.brimllc.com/2010/12/magento-grouped-products-containing-associated-configurable-products/
The guy who runs this blog was very, very helpful. We can now add configurable products to a grouped product. Problem solved.
I'm trying to do something very simple, but can't figure out how to execute.
We've got a Magento store that sells lingerie. Tops and bottoms that each have their own size.
So a customer could order a top in small and a bottom in medium.
On the front end, I need to customer to see:
Product name
Top: S, M, L (dropdown)
Bottom: S, M, L (dropdown)
Just can't figure out how to do this in the Magento admin. Each product is entered as a simple product with the attribute "size" defined: "Small" for example.
But, when I create a configurable product and select the attributes "sizes_tops" & "sizes_bottoms" it only allows me to select products that have both defined, so obviously that won't work.
How on earth do I do this simply in Magento?
We could also have a situation where there are two types of bottoms to choose from, like full and g-string.
If there wasn't the restriction on adding simple products to a configurable product with only one of the attributes defined I'd be all set (I think anyway).
Any help is greatly appreciated.
Thanks in advance.
EDIT: I have seen this post: How to Have a Bundled Configurable Product in Magento?
classyllama.com/configurable-bundle-module - "Note: At this point, we are selling this bundle as-is. ie, we are not providing implementation support for this module. If you purchase the module and it doesn't work for your needs, we can deactivate your license and refund your money." - So it seems there is no support for the product, not very promising.
mag-manager - Site does not load
tinybrick- Does not fit the requirements
As you intimated in your post, this is not something that is possible with a vanilla installation of Magento. Having (attempted) to implement this feature repeatedly in the past, I can also say that it is highly complex and difficult to accomplish.
Hopefully, one of those modules will work well for you. Ask to see a live customer site with the module installed to get an idea of whether it will work. If not, you will be in for a significant implementation effort.
Hope that helps!
Thanks,
Joe
I guess you just have to define your tops and bottoms make them configurable separately and then make grouped items over tops and bottoms
We have turned our blog post into an easy to install module called Grouped Options. Simple products with required custom options and configurable products can now be associated with grouped products in Magento.
I know this post is old, but for anyone that is coming across this post now, Classy Llama Studios has released a new version of the Configurable Bundle extension and it is supported. You can find it here: Configurable Bundle Module on Classy Llama's Store

How in magento add manufacturer in the URL of the product?

How can I change magento so that:
{site}/category-name/sub-category/product-name
becomes
{site}/category-name/sub-category/manufacturer/product-name
Where is the standard Magento manufacturer attribute?
Thanks :)
You would need to overwrite the system's url rewrites to do that. You could either extend the class that creates the product rewrites in the first place (it probably happens somewhere in the product controller in the admin site) or create an event observer which updates the rewrites after the product is saved.
You will need to create any necessary attributes for manufacturer, etc, in the admin panel if you want to use them, but that won't really solve this problem. I understand what you're looking to do, but messing with the parsing of product URLs doesn't seem like a great idea (you're likely to run into problems). You could probably change the product url in the database (usually saved as 'some-product-name.html') to something along the lines of 'manufacturer-name/some-product-name.html'. I don't see any immediate reason why that wouldn't work, though allowing the customer to change that themselves may not be trivial.
Hope that helps!
Thanks,
Joe
It is a workaround, but you could create a manufacturer subcategory and place the products in there?
So:
root -> subcategory -> manufacturer-subcategory -> product
?
Because as per Joseph's answer, I think what you're attempting to do would be a little messy.

Resources