I want to hide some of the categories from magento home page. I have created some categories like New Arrivals, Special Offer Which I would like to show in some different way may be in left panel or right side of my home page. I don't want to include them in my top menu. Is There any right way i can do it. ?
Go to this screen in your admin interface: Catalog -> Manage Categories.
Click on the category in question.
Scroll down.
Set Include in navigation menu to No.
Done.
Related
I have two course category Mathematics and Physics. Each category have course relevant to it type. I want to create Nav menu on my website via this category. I mean I want to take Mathematics and Physics to be as menu.
Example: While user click on Mathematics menu it show only which courses have category Mathematics.So on. Please check below snapshot:
You need to go appearance > menu and select your menu location than after you can see your categories in just left of the screen. you can select your category from the list and click on the add to menu. After it just click on the save menu and check on your fronted side.
check the screenshot.
If you are not able to see your category list in this section than you did the mistake in your register_taxonomy() function.
you are having three options.
1)you can use the custom links for menu.
2)second option is you can check with firebug your custom category is there with display none remove that css from firebug.
3)third option is check the plugin and customize the register taxonomy function.
Found the quick and best solution for this. Please use this WordPress plugin - Custom Taxonomies Menu Widget by Ade Walker
This is available as Widget
https://wordpress.org/plugins/custom-taxonomies-menu-widget/
How do you have a completely different look for each category in magento 2 (custom category layouts), in magento 1.* I know you could change the template either checking for the page layout or changing the template in the custom layout update via xml however magento 2 doesn't let you change templates in here?
I tried following http://www.magestore.com/magento-2-tutorial/how-to-design-a-custom-magento-2-category-page-template/ but didn't really understand how it worked.
Magento 2 seems much more difficult to get my head around than the previous version so any help is greatly appreciated.
You need to create a xml file catalog_category_view_id_{{id}}.xml under your theme > Magento_Catalog > layout and change list file.
For detail :
http://sumankc.com/2016/12/10/different-template-for-different-categories-in-magento-2-category_id-layout-handle-in-m2/
GO To admin -> Manage Category and select particular category that you want different design and ther is one tab "custom design" . in this tab there is one drop down list with name "custom design". you can select custom design for perticular category.
Here are the steps that you will follow in this Magento 2: Change category page layout
On the Admin page, look for Product section. Then click on Categories section under Inventory.
You can see the category tree on the left, choose any category for which you want to change the page layout.
Then find the Custom design section, click on it.
Now you can change both category page layout and custom theme here.
In this section, you can use 2 fields to change the category page layout. The Page Layout and Custom Layout Update.
Page Layout field gives you 6 options to change the category layout.
The Custom Layout Update allows you to update the theme layout with XML code.
These are the options for changing category page layout.
On a Wordpress website where you configure the navigation bar and you can show categories, and put child categories underneath the parents, is there a way to make it so that when someone hovers over the top level category that the drop down that pops up shows the individual posts within that category? And then you can click the post and go to that single post page?
This plugin sounds like what you need.
http://wordpress.org/plugins/category-posts-in-custom-menu/
Here I have a problem, when I create a subcategory it goes to main menu and I need to show it in body where main category shows .. Simply I need my category setting like this, so how I can do this please.
Both sites use "Virtuemart". What do I need to do for this kind of result?
I need this http://www.empiremedia.biz/ Like this http://www.unitedbroadcast.com/
Anyone who well experienced in Virtuemart. or how i can solve my issue ,please guide or suggest me what need to do? Or where do I need to change core files?
Try checking "Show Children Category" in the Templates tab of the Config menu. (VM 2.0.10)
To do this:
Go to Virtuemart > Configuration
Click the Templates tabs
Select the "Show Children Category" check box
Save
Option 2:
Go to Virtuemart > Products > Product Categories
Click the product category you want to edit.
In the description box type in the name of your sub category then make it a link to that sub category... if you need the link navigate to it in your browser.
Again I can't stress this enough if you have having THIS MUCH trouble with VM I strongly suggest getting a book or hiring a developer. Please consider buying a VM book.
set your homepage or any of your pages 'menu item type' to virtue mart category layout.
on your admin page go to
menu > main menu
click 'home' or any other page
select virtuemart category layout on the menu item type*
I would like to create a nav menu that displays all the pages of a wordpress site, its layout similar to what you would see in a footer sitemap layout, approx 5 columns with all the pages shown. Each page will be a project. I want to use wordpress category checkboxes (like you have for posts) to allow selection of one relevant category for each project page. Each page will then show a category caption below the project's description text, this I will style with CSS so each category has a different background colour.
Because Wordpress doesn't provide categories for pages, I have found a plugin to add this category feature to pages called ninja-page-categories-and-tags: http://wordpress.org/extend/plugins/ninja-page-categories-and-tags/
It's possible to edit the plugin php code under basic-functions.php to return a 'class' for the category displayed using get_slug and then applying css for each.
My problem is that on the menu, which will be a secondary menu in Thirty Ten displaying the pages, I want to be able to colour the background of each link to match the category that has previously been assigned to each page using the ninja plugin. Because the menu works with pages and the categories are not directly linked to the menu items (firebug will not show category details in the html of each link to reference with the css) I am wondering how I can colour each link based on category? Any ideas?
Ultimately what I would like to achieve is a grid of page links that are all coloured based on their category, a colour coded menu.
The plugin uses the standard wordpress category functionality but I just can't think how to connect these category details to the menu items to allow me to style them with css, any help would be really appreciated, even if just a point in the right direction.
Thanks
It's difficult to understand exactly what you're after, but essentially if you want to add extra classes to menu items (which will allow styling), you need to create a custom walker function.
Have a look at a tutorial like this: http://wp.tutsplus.com/tutorials/creative-coding/understanding-the-walker-class/