Magento: How to modify the HTML of the order confirmation page? - magento

I would like to add some HTML to the order confirmation aka checkout success page of my Magento store (the page whose url ends with index.php/checkout/onepage/success/).
Is there a way to do this from the Admin Panel? I don't see it under any of the existing menus (http://grab.by/N1Ek).

You can add HTML with a widget:
Go to CMS > Static Blocks, create a new static block with your HTML code as content
Go to CMS > Widgets, add new widget instance
Choose type "CMS Static Block" and your theme
Choose a title, select "Display on: Specified Page" and "Page: One Page Checkout Success". In "Block Reference", choose where on the page the content should be added
On the "Widget Options" tab, select the static block, created in (1)
Then clear cache and you're set.

Related

Get Menu items in content zone in orchard cms

I have created one Content type called "Product", Then created one query that select all product and shows on home page. To show products on home page i have created projection widget.
Now when i click on particular product it gets redirect to the detail page of that product.
Question is i want to show Menu items (like navigation bar) beside the content.
in the attached image red portion will have menu items.
so how can i achieve this?
Please help.

cscart display products (products in selected category) in cs-cart content page

Is it possible to add selected products/categories in cs-cart page (created using websites -> content -> add page) in cs-cart3?
I have created the page using websites -> content -> add page. Try to edit page and clicked on block tab, but some how it is not allowing me to add block/filterblock it.
If you see attached screenshot, there is no add block option available?
Any idea?
In administrator Area click on
Design -> Blocks -> Pages (tab)
In Blocks, under "Main Content" click on Plus Icon
Add Grid or BLock -> Add Block -> click on "create new Block" (tab) and select products or categories, finally give this block name and select type "Manually"
New Block will be added under "Main Content" (you can also disable this newly created block for specified pages(which you select)
Now to add products or categories Manually go to
admin area -> website -> contents -> click on edit page (for page you wish to edit)
click on Block tab -> finally click on Cog of newly created block to add/select product for that specific page.
Note above instruction are for CS-Cart 3, I hope it might be same for cs-cart 4 as well

how to create a right sidebar in magento which will be visible only on product view page

I am new to magento .
I want to create a right sidebar on product view page such that this is visible only on product view page not on other pages.
How can I do this.Please Help.
Thanks.
To have a right sidebar only on the product page you need to to a few things:
in the admin panel set the product pages to have 2 columns with right sidebar
create a block and template file (or just edit one that is available)
in catalog.xml (this is in your themes's layout folder) find the handle called and within that section find in there you can add your block / template file.
For more info on how you can create blocks and templates see here.
In magento almost every postion is handled by catalog.xml, (if you go the proper way) You can place any static block , in catalog.xml you will find the postioning of blocks for every page (be it category, product or home page) just you need to place the block in the right reference.

left sidebar block double up (want to remove duplicate block)

I am having a problem where the "Advanced Search Form" displayed on the left sidebar on my home page is duplicated. (http://www.efficienttrade.co.nz/).
I previously wanted my home page to be identical to my "product list view" page http://www.efficienttrade.co.nz/products.html, I was given a solution where I was told to insert the below code into the content area of my home page CMS area.
{{block type="catalog/product_list" name="home.catalog.product.list"
alias="products_homepage" template="catalog/product/list.phtml"}}
I did so successfully, but now have a duplicate advanced search form showing on the left sidebar somehow.
Summary:
Duplicate block displaying here - http://www.efficienttrade.co.nz/
What the page should be looking like - http://www.efficienttrade.co.nz/products.html
My recommendation precedes your current attempt...
Go to System > Configuration > Web > Default Pages and set the Default Web URL value to the system URL for that category, which is catalog/category/view/id/3 for your data set (ref http://www.efficienttrade.co.nz/catalog/category/view/id/3 ).
HTH

Magento New Products Block

I would like some help on how to a block or the right sidebar displaying the new products added to the store.
To add new products to a CMS page (Home, Contact, etc) use the block code
{{block type="catalog/product_new" name="home.catalog.product.new" alias="product_homepage" template="catalog/product/new.phtml"}}
From http://www.magentocommerce.com/wiki/groups/248/display_products_on_home_page
For sidebar please refer
http://www.magentocommerce.com/boards/viewthread/10331/
You'll have to set the reference pointer to be Right or Left
Create widget for the sidebar with new product block and set the template where to show that widget.
Go to CMS->Widgets section from admin menu.
Than select type as CMS Static Block and theme, set Widget Instance Title and order and click Add Layout Update button.
Select All Pages from Display On section and than select Block Reference as Right Column.
Now select Block from Widget Options menu and save.
Refresh cache and now the New Product Block visible on right sidebar.
Hope this will help you.

Resources