Magento special view for special product - magento-1.9

I know I could edit common product view in theme-folder/template/catalog/product/*, what I need is when visit a special product, the product page show a special view, not the common style.
Anyone could give some suggestion to achieve it? Thanks.

Open admin > open your special product > design > Select your custom design and pay layout > Save.

Related

Opencart Custom Description Design (Products)

I've just purchased and set up Pav Fila OpenCart theme. Looks like a great theme and the only thing I want to change is the product description layout (design).
Is this easily possible with the inner block builder and layout builder or needs advanced coding? Maybe an extention?
See what we have now: http://mika.shoes/index.php?route=product/product&product_id=46 and what we
I want a simple evenly distributed description rows/columns like in the product description in G-RAW: https://www.g-star.com/en_bg/shop/women/jackets_and_blazers/d11950-6541-89
Please, note that I am DESIGNER not coder but learning now and understanding everything as explained. Do not be too harsh with me
Well if you want a simple layout change you can do this with opencart editor
Goto catalog > products > select your product ,click edit
Goto general tab
here you can customize your design like this-

How to access direct product URL with (Not Visible Individual) in magento1.9

I need a help in magento 1.9.x
I want access Product details page via URL but Product not visible in searching and Category so for that i use 'Not Visible Individual' in Visibility section when create product from backend.
So i can't understand what i do.
Please help me.
Either You have to change visibility to "Catalog Search" OR Add this simple product to any configurable product.

Conditional contact formula (in Wordpress)

I've Googled around for about an hour, without luck.
I'm trying to build an advanced contact formula i a Wordpress environment. The contact formula should do this:
At first, there should only be a single dropdown-menu available, like this:
Option1
Option2
Option3
If 'Option1' is selected, then some information should be shown, and then another dropdown-menu is shown, as such:
Option4
Option5
Option6
If 'Option2' is selected, then it should again show some information, but then show three other options, like this:
Option7
Option8
Option9
And so on. Many survey-formulars are built in this way - but I need to make it, to make a support-site for some different products.
I tried Googling for Wordpress-plugins, but without any luck (I must admit, I'm unsure of, what I should search for). I've used Wufoo-formula's before, but it doesn't appear to me, that Wufoo has that option.
How is this made the easiest and the best? Hand-coding it using HTML, javascript and CSS? Or are there a cool online-tool that I'm unaware of?
I had the same problem and made some research, which ended up in some results.
1. Buy the required functions
If you have a great number of forms to create and the money to invest, you could use something like Ninja Forms and buy the Conditional Logic plugin. With this you can create multiple forms and connect their elements with the needed criteria to show or hide them or to change their values.
https://ninjaforms.com/extensions/conditional-logic/
2. Code the form
Actually we have only one form we use. This is the reason, because I decided to save my money and did it myself.I expanded our wordpress theme by another page template and created the form that fits our needs in it. After that I added the PHP code to send the form via email on the top and the JavaScript code for the conditional logic on the bottom of my php file. In Wordpress I created a new page and applied the newly created page template.
I'm not sure if this is best practice, but for me it was an easy way to achieve my goal and save some time.
Best regards

GWT: get html with css from widget

I am developing an online payment and when a user makes a payment, the system should give a cheque including payment details at the end of payment process. I am using GWT and my cheque should be in pdf format. I am wondering whether there is a way to get html code from a widget with its style(css). I need this to make it pdf. i have tried:
gwtWidget.getElement().getString();
but it gives merely html code, without css. Is there a better way to get it with css?
Any sugessions would be appreciated. Thanks.
Try this one
gwtWidget.getElement().getInnerHTML()
that returns All of the markup and content within a given element

Magento: Where is this "$_formatedOptionValue" being created?

If, in magento you have a bundled product, and you have a few product options for it. On the shopping cart page, on the checkout page, and in other places, these options will be displayed using this code:
<?php echo $_formatedOptionValue['full_view'] ?
This code can be found in many places, for example in */app/design/frontend/base/default/template/downloadable/checkout/cart/item/default.phtml *
about line 43
Anybody knows where can I get the behind of this code "formatedOptionValue". I want to modify a bit the way the product options are being displayed and constructed. Please, if you know, can you point out the direction of where this function is being constructed?
Usually $_formatedOptionValue will be assigned within the same template file where it's used.
In standard Magento this assigment will be done by calling $this->getFormatedOptionValue(), which in turn mostly maps to one of these two methods:
Mage_Checkout_Block_Cart_Item_Renderer::getFormatedOptionValue()
Mage_Sales_Block_Order_Item_Renderer_Default::getFormatedOptionValue()