I am new to opencart. Here as per my layout I have a left sidebar where I can see all the product category. I have used the sidebar in home page and product details page and it is looking fine. Like this I want to show the sidebar in checkout Page . So can someone kindly tell me how to show the sidebar in checkout page?
Login to your admin area then navigate to:
Extensions > Modules
Then click on the Edit link (under the actions column) next to Category module name.
Click the Add Module button and select Checkout as your layout and Content Left as the position.
Make sure that you've enabled it and click Save. Refresh your page and you should then see the category list on your checkout page.
Hope that helps!!
Related
I would like to create a grid and add/edit form in magento customer edit page.
I have successfully created new tab in customer edit page. On my previous practices, I have created a grid and forms on the top menu but not on the customer page.
QUESTION:
How to create a grid and form in customer edit page? it is similar to billing agreement grid, news letter grid, wishlist grid.
The process should be like this.
The admin will choose a customer and click it.
On the edit page, the admin will navigate to a custom tab that display a grid and button.
The grid display some details like title, short description and others.
the admin can add some list that is only available to that customer.
the newly added list will be added to the grid
I am using the woocommerce plugin for a wordpress site. The categories of the shop should be listed on the left part of the page and the categories on the right side.
When the shop page first loads, it is displayed as above. Which is good. When I click on the category it only shows the products and not the categories.
Is there an easy way to get the categories on every page?
You can edit your category and set Display type to Both.
Default setting can be set in Settings page under Catalog tab.
I am creating simple image banners on the top of each category page of my site (add category header content)
I'd like to add an image to the top of the woocommerce shop base page.
When I insert an image in the page edit screen, it does not appear.
But Woocommerce 2.x can not display the shop base page excerpt (short description)
others normal page are all show their short description.
How would I go about doing that?
I can not find page template of the woocommerce shop page
Thanks!
http://wordpress.org/extend/plugins/woocommerce/
I found it!
Insert into the top of yourtheme/woocommercer/achive-product.php
//Check is_shop - Shop base page
// if True then Show Category Header Content of The first Product in Shop base Page
if (is_shop()) {
$args = array('taxonomy' => 'product_cat');
$product_categories = get_categories( $args );
$term_id = $product_categories[0]->term_id;
$content = get_term_meta($term_id, 'cat_meta');
if(isset($content[0]['cat_header'])){
echo do_shortcode($content[0]['cat_header']);
}
}
Hope to help someone! :)
Just thought I would share how I accomplished this so easily. On your shop page click "screen options" at the upper right of the page. Checkmark "Exerpt". Scroll down to the Exerpt box. (there will be a new box to type in there.) Here you can type in the url to your image using html. Click update to update your page. Now you will have the image or banner you want under your shop title. I also removed the title "Shop" by simply removing it from my page title on the page where you edit your shop. Then I changed the menu option in menus back to the shop title. Hope this helps someone. It sure would have helped me to know this sooner.
Just create the id or class on the top where you want to add the image banner at the top and after that you just go to the admin dashboard and then.
Apperance-> custom css and
.your_custom_css_top {
background-image:url('IMAGE_URL_HERE');
}
To add Banner Images for All WooCommerce Default Pages (Cart, Thankyou, Checkout, Shop), You have a setting page Like below to add or enable Banner display on pages. Also, add a link option for Banner click and an alt text field to add SEO purpose text.
Thanks for sharing some link it helps a lot. But I see there is another link with good reviews https://codecanyon.net/item/woocommerce-banner-images-products-post-categories/25545174
I am new to wordpress so please still help with me if I get the language wrong.
Using woocommerce to display a shop with variable products, I would like the shop link landing page to display the shop categories with the featured image of that category.
My current shop page displays all products, with a pagination to other product pages and I cannot find the template for all products.
When I go to shop page in wp-admin and click on the edit page it is empty, so am not sure how they are getting there in the frst place and I have looked at the HTML not just the visual editor.
Many Thanks
Asa.
It's easy, just go to 'WooCommerce -> Settings' link from side bar admin menu & select 'Catalog' tab & then tick 2 check boxes "Show subcategories on the shop page" & "When showing subcategories, hide product" -> click 'Save Changes' button at bottom. That's it! You are Done!
Now visit 'Shop' page you'll be able to see categories.
Hope this helps.
This is now in Woocommerce -> Settings -> Products -> Display, 'Shop Page Display' drop-down.
In current version 3.4.5 there is no display option under Woocommerce -> Settings -> Products -> Display. It has been moved to customizer under Woocommerce->Product Catalog
Thanks for taking a look at this. I’ve been looking and looking for a solution to what seems like a simple thing to do but nothing yet. Here goes:
When you click on "Specialty" in the main menu it goes here:
Home /Specialty
When you click one of the product images on the home page it goes here:
Home /Specialty /Holiday Satin Stocking (Full product description page)
I need all products with full product information to end up at
Home /Specialty
Page set-up would be: Click on Menu item or an image to show like this:
|||Product1||| Product Description Add to cart
|||Product2||| Product Description Add to cart
|||Product3||| Product Description Add to cart
I would like to override going "Home /Specialty /Holiday Satin Stocking" all together with listing all the information here: Home /Specialty
"Specialty" is set up as an anchor and all products types are simple.
Thanks so much!
You need to edit the product list template and add in the appropriate getters ($_product->getDescription, etc.) to that phtml file.