I'm using the NEAT theme in #bigcartel - and by default the COLLECTIONS page alphabetises A-Z.
I was wondering what needs to be changed in the PRODUCTS CSS page to change this? Whether it's Z-A, or maybe even by popularity (if possible) ?
Cheers
The "Collections" page just pulls category names in the order they're sorted in your admin. To change that, visit the Products page in your admin and click on any product to edit it. Then under the "Category" subheading, click Edit categories and drag them in your preferred sorting order.
Related
I am making this wordpress based website ( https://naujas.pacopac.lt/ ), it is for company with multiply product categories and in every category page I want to have filter system by different attributes.
I tried to create page for every category, but the problem is that I can add products of certain category, but I can not filter them then. Also I can only add filtering through widget.
So the way i see to make it is by directing people to product category page, like https://naujas.pacopac.lt/product-category/“name of category”/. For example https://naujas.pacopac.lt/product-category/pakuotes/ , add widget with filtering and then it works. BUT every category has to be filtered with different attributes, and I am only able to add one same widget to all categories pages and I can not find a way in WordPress to edit every each of these category pages, also I can only make one side widget.
So in short the problem is, how can I make different Side widgets and edit every each of product category pages with different widgets? I am using uncode theme with woocommerce and visual composer, would like to avoid coding, but also have basic knowledge in it so something not too complicated could be done.
Thank you very much guys!
Solved with Widget Logic plugin, able to show widgets on certain pages and hide others
Can a particular category be hidden from an individual affiliate. Say for instance the affiliate would like not to have "pet food" show up when his link is used??
Absolutely, but it's going to require customization that's specific to your navigation xml package and requirements.
The easiest way would be to hide the category from the menus in the xml package you use for navigation based on the current users affiliate.
However, 'hidden' could mean quite a bit more than that. If you need to hide the products in that category all together (for example from a users search), you'll need to do quite a bit more customization including the GetProducts stored procedure.
I hid my my categories by adding an "IsHidden" column to the Category table. Then added "AND IsHidden = 0" to the following stored procedures:
aspdnsf_EntityMgr
aspdnsf_SearchCategories
I was hoping someone could help me, I'm trying to create a filtering menu for product attributes. I have the attributes being listed out just fine but when you click on them they take you to the 'Archive' page which lists the correct products. Now is there anyway I can make it so when the user click on an attribute it shows the filtered products but using the 'shop' template/page. So not linking to the archive page??
Any ideas?
I have looked into the Layered Nav widget, its closed to what I'm wanting but I don't like how you can select multiple attributes. I just want it to do i one by one.
thanks guys/gals
This page has an answer: http://docs.woothemes.com/document/using-custom-attributes-in-menus/
At the bottom you'll see how to create a proper template for selected attributes pages.
Notice that your taxonomy-product_cat.php copy should be put into your theme folder, not to woocommerce folder in your theme.
It works for me.
In Magento, how would I be able to treat products in a particular category differently?
Lets say, I have one category "Specials" and I want to have a bit different presentation of its products from the rest of the catalog products.
I initially thought about hooking custom styles up to the category class name that gets attached to BODY element. That, however, does not seem to be fool-proof, since if you directly access those products, they dont always show up as in that category (assuming cookies or sessions have a say in this) and custom styling is ignored.
Also though about assigning custom layout template to that category, but I am using those as layouts and not styles and I dont want to mix up the uses to avoid issues in the future.
Anyone had this concern before? Thanks for the help!
You have 2 code oriented solutions :
If the notion of "category" is the fact that you're accessing a product through a category (on your product page, the breadcrumb display the category), you'll be able to cehck (somewhere in your catalog/product/view.phtml) the Mage::registry('current_category') which contains your current_category and compare it with your "particular category" (which could be stored as a configration variable)
Otherwise, if you want your style applied even when you're not accessing your product via the category navigation, you'll have to manually check your product categories ($product->getCategoryIds()) and compare it with your "particular category" (which could be stored as a configration variable)
ps: keep in mind that a product can be assigned to multiple categories
Hops this helps you
If you have particular category like special so Create new theme for Only Special category and assign that theme to special category from backend, you can easily assign different theme to different category from category management page in admin.
Or you can aslo assign different theme to products also from manage products page.
I'm using Views module and an exposed taxonomy based filter, to allow users to select a subselection of articles.
I need to further customize my filter:
I want the user able to order the tags alphabetically by clicking a checkbox (if this checkbox is unchecked the default order is reset.
I want all tags selected in the beginning to show my user all the articles. (Additional tags can be added by the user later, so I cannot just select all the tags in Views settings, because the new ones would be uncovered).
thanks
1) jquery script that adds check-box (or link as text or pic) and if it is checked, rearranges menu or list
2) rephrase question, i have no whiskey at home
what about the other way round?? -> selected tag means "show".
how do your filters work?? You don't use http://drupal.org/project/faceted_search ?
i am starting with it and like it.