Magento – Magento 1.9 Product page customization

magento-1.9PHPproductxml

I'm using Magento 1.9.3 to make my store, but I came to a custom layout problem right now.
I tryed by my own looking in similar topics over there but couldn't figure it out.

I need to put my custom attributes in different places instead of tabs.

I have the "Informação Adicional" (en_US: Additional Info [attributes]) that I need in the right column.

Thanks!

enter image description here

UPDATE

I tried what @MauroNigrele suggested, but without success. So I tried to copy the php instructions from frontend/base/default/template/catalog/product/view/attributes.phtml into a block I use in the right column, as you may guess, not worked (I'm a newbie).

Now I thought on doing something that may be easier.
Create a new block that I could use in the right column, showing the "Aditional Info" tab, instead of a collateral tab, where it is right now.

So, it should show me the Aditional Info where previously I wanted to show only the tracklist.

I supposed it may have something to do with this kind of code:

{{block type="core/template" name="tracklist" template="frontend/base/default/template/catalog/product/view/attributes.phtml"}}

But I still couldn't figure it out how to do that, I readed other topics with something similar, but I couldn't understand them clearly.

They are as follows:
https://stackoverflow.com/questions/13710077/calling-an-attribute-in-a-cms-block-in-magento?rq=1
https://stackoverflow.com/questions/13883139/how-to-add-product-attribute-on-product-page-via-cms-block-magento

Shortly, I want to put the "Informação Adicional" (Additional Info) in the right column. As I saw, their php file is from:
frontend/base/default/template/catalog/product/view/attributes.phtml

It may be useful to say I use a custom theme: Ultimo.

UPDATE 2

I tried to work with the default and rwd catalog.xml, moving the additional block into the right column, but it doesn't show in the website.

UPDATE 3

I did what @ Ahmed El Awadi saidin local.xml, and now it shows in the right column:
There was no 404 CMS page configured or found.
The code used is:

<action method="addTab" translate="title" module="catalog"><alias>additional</alias><title>Additional Information</title><block>catalog/product_view_attributes</block><template>catalog/product/view/attributes.phtml</template></action>

UPDATED with new description image

Best Answer

You can use the exactly same approach that is used for "Fabricante" You just need to change the attribute code for the new one, in the right template ie:

app/design/frontend/{package}/{theme}/templates/catalog/product/view.phtml

<div class="product-sarasa">
    <?php echo $_helper->productAttribute($_product, $_product->getSarasa(), 'sarasa') ?>
</div>

To find the right template file just activate "template hints" in:

System > Configuration > Advanced - Developer > Debug > Template Path Hints.

Related Topic