HI

I am new to Magento and still new to the whole css, php thing. And I have been searching for over a month to find this answer (I am sure it is here some place, but I cannot seem to find it)

I am building a b2b site for a clothing company. Since they are a wholesaler, they do not sell single items, but rather, they sell them in a pack. Depending on the items , some will come in a pack of 2-Small; 2-Medium; 2-Large, other will come in a pack of 1-Small; 2-Medium; 1-Large, and so on.

So far, I set up an attribute called “Package Set”, which describes the kind of pack the customer will be getting when ordering the item, but it only appears in the Additional Information tab, which is not good, because we want that information to stand out. Putting it in the Short Description is an option, but we want to emphasize it more.

So we want to 1. add a text “per pack” right behind the price. 2. add the value of the attribute “Package Set”, right underneath the price, so people will see it clearly, both in the category and product page. It would look some thing like,

“$60 per pack

Package Set: 2-Small; 2-Medium; 2-Large.”

I am using the modern theme running 1.4.1.1

Thank you

link|improve this question

0% accept rate
feedback

1 Answer

Copy the file "app/code/design/frontend/base/default/template/catalog/product/view/price_clone.phtml" to the directory "app/code/design/frontend/default/modern/template/catalog/product/view/". This is so you are not overwriting the original file.

Open the file for editing. After where you see this:

<?php echo $this->getPriceHtml($_product, false, '_clone') ?>

Add the following:

<?php echo $this->__('per pack') ?>

By using the function $this->__() you are making the text available to be translated easily. It is good practice to do this always.

For the second part now add this bit on the line after:

<p><?php echo $this->__('Package Set %s', $_product->getPackageSet()) ?></p>

Again it is potentially being translated but this time your extra attribute is being inserted where it says %s. The reason for doing this is to make it clearer when using inline translation. The line has been wrapped in a <p> paragraph tag for yet more clarity and to ensure it appears on it's own line, not following on the end of the previous.
I have assumed your attribute has the code "product_set" - which in Magento becomes 'camel case', or getProductSet.

Finally you might want to remove the attribute from Additional Information tab. This is quite simple, go back to the Manage Attributes page in admin, edit your attribute and change "Visible on Product View Page on Front-end" to "No".

link|improve this answer
Thank you but it is not working. I tried adding <?php echo $this->__('per pack') ?> on "app/design/frontend/default/modern/template/catalog/product/view/" and when it did not work, I tried it on "app/design/frontend/base/default/template/catalog/product/view/price_clone.phtm‌​l". Please advice. Thank you – eugene Nov 7 '10 at 4:03
First make sure the cache is completely off in System > Cache Management. Go to System > Configuration. Change the drop-down control in the top left to the store you are working on. At the bottom of the left column click on Developer then in the Debug section turn on Template Path Hints. When you next look at the product page you will be able to see which file is being used for the price. This is one of the most useful tricks you can learn. Also refer to the designer's guide. – clockworkgeek Nov 7 '10 at 12:26
Thank you very much! You have been a great help! I found the file that is used for the price. I am able to input a text, but I still need help with adding the attribute. The owner wanted me to change the attribute code to "ratio" (so that it would be consistent with their terms). So using your instruction, I added a code, <p><?php echo $this->__('Per Pack of - %s', $_product->getRatio()) ?></p>. It prints out "Per pack of -", but no value for "ratio" is shown. Thank you very much. I sincerely appreciate it. – eugene Nov 8 '10 at 17:32
1  
Thank you Clockworkgeek! I got it to work. Since my attribute was a drop-down selection (which I should have mentioned), I used, <?php echo $_product->getAttributeText('ratio') ?>. Thank you once again! – eugene Nov 9 '10 at 18:30
Yes that would affect it. Well done for finding your own answer on that one. – clockworkgeek Nov 9 '10 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.