The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
11 views

Change default position of product in categories from 1 to product ID in Magento 1.7.0.2

In Magento 1.7.0.2, I am adding a lot of products from the backend but the positions of these new items in their corresponding categories are 0 or 1. So when sorting on the frontend, I get arbitrary ...
-1
votes
1answer
10 views

How to add character to content of post?

0 down vote favorite In per posts, there are "oo/x/". How to add "0" before "x" if length(x) <10 ? Example: x=12345678 ; length(x) = 8, so add "00" before x ===> x=0012345678 x=1234567 ...
-1
votes
0answers
16 views

Wordpress posts showing in all categories [closed]

I came across one post for this topic but it doesn't answer my problem. http://www.daghealth.com/publications is our blog page which is showing all the posts in every category. Trying to find a fix ...
-1
votes
0answers
19 views

WordPress Custom Permalinks [closed]

I would like to set permalinks for WordPress as follows: For single posts: sitename.com/%category%/%postname%/ For a list of posts in a category/tag combo: sitename.com/tag/%tagname%/%category%/ For ...
0
votes
2answers
36 views

Wordpress Category List Link to First Post

I am loading a category list in wordpress by using this function: <?php wp_list_cats($args = array( 'current_category' => 0, 'hide_empty' => 1) );?> Can anyone tell me how I can make ...
0
votes
1answer
360 views

Displaying posts from specific categories with the AheadWorks blog extension for Magento

I'm using the AheadWorks blog extension for Magento, and my blog pages are working fine. But I want excerpts of my latest posts from certain categories to appear on my home page. I've successfully ...
0
votes
0answers
17 views

Custom categories and custom tags in custom post type

Seeking help from all WordPress gurus. I'm stuck on following error. How to display and filter custom categories and custom tags in custom post type? I have registered custom post type: ...
-1
votes
0answers
13 views

Magento: need script to batch delete all empty categories and sub-categories [closed]

I have found a script code for this superpose but i don't know how to apply it neither where to, if anyone know, or know a better way to do this please let me know thanks in advance, following is the ...
0
votes
0answers
25 views

Magento categories not displaying correctly in the Admin

Whenever I go into Manage Categories and try and edit a category, the tabs do not load properly. In fact, only one tab title loads, which is the ‘General Information’ tab. Weirdly it only seems to be ...
0
votes
1answer
30 views

Dynamically Display Categories and sub-Categories onItemClick

I'm working on an android application, and now i have to diplay a list of categories, sub-categorie, sub-sub-categorie .... n-sub-categories, like this: At the beggining i want to show the root ...
0
votes
0answers
16 views

How to get next previous category in same taxonomy?

Like WP get_adjacent_post function gives the next and previous post data based on the parameters i want to get the next/previous category data is there any WP built in function which does the right ...
0
votes
2answers
5k views

Joomla / Virtuemart - How to display level 2 subcategories on virtuemart homepage?

I have a Joomla shop that stocks parts for cars. I am using the Virtuemart component to handle the shop aspect. The top parent categories for my products are; Air filters Oil filters Fuel filters ...
0
votes
1answer
10 views

Expression Engine categories channel outputting empty list

I have a problem with outputting categories in to a list. It seems to create another ul(one for the channel:categories) within the my ul, and also creates empty lists before each list. I used the ...
0
votes
1answer
11 views

Magento 1.7 All Categories and respective Thumbnails

I need to list all categories and respective thumbnails. The problem is that I can't display the thumbnails. I have tried all tutorials and nothing. Here is a list of posts explaning different ...
-1
votes
0answers
14 views

Wordpress Multi Tiered search categories [closed]

Trying to setup an advanced search form on a website that searches through categories. Looking for something that has a drop down menu with parent categories and a secondary drop down menu with all ...
0
votes
1answer
42 views

Woocommerce get next / previous product SAME category

I've read this: Woocommerce get next / previous product and also tried this: <?php previous_post_link('%link', 'Previous in category', TRUE); ?> and any of them work under woocommerce product ...
0
votes
0answers
7 views

Show more categories on one row in WooCommerce

I would like to show 6 categories on one row on my WooCommerce homepage. Default it shows 3 categories on my site. Does anyone know how to do this? I've tried this, but it didn't work: // Change ...
0
votes
2answers
20 views

List Wordpress categories in sidebar with image

I'm to list categories with images in the sidebar this is how I do it (and it works) I do this because I've certain categories I do not want to display! <?php $latests = new ...
0
votes
0answers
220 views

Prestashop - show categories in manufacturer.php

Is it possible to put categories sidebar selector in list of products by manufacturer. So for example... I have 3 categories (women, man, children) all of them have products from manufacturer xyz. ...
0
votes
1answer
41 views

What is the correct way of dealing with a django model that is in many categories or sub categories

I'm unsure of the best way to design my models for this task. Searching around suggests that I need to use something like Django-MPTT. I am creating a listings application where any 'item' can be ...
0
votes
1answer
19 views

Rails route Category find by name issue

I want my users to be able to view /categories/comedy/ and see all posts available in the comedy category. Problem is that in my database all categories are with a capital, so comedy is Comedy. This ...
0
votes
1answer
12 views

WP current category - strange behaviour

I've use this code: $current_id = get_query_var('name'); echo $current_cat; $category_id = get_cat_ID($current_cat); echo $category_id; to get current page category number. Everything is working ...
0
votes
1answer
41 views

Android ListView Navigation

I want to display categories-subcategories using list view (sort of breadcrumb menu). But I don't know where to start? Here is the requirement The first screen should show a list of categories. When ...
7
votes
3answers
175 views

List all categories but only have grandchildren anchored (Wordpress)

I'm currently using this to list all the categories: <?php $args = array ( 'menu' => 'secondary-navigation', 'sort_column' => 'menu_order', 'container' => 'false', ...
0
votes
1answer
18 views

Is there a PHP equvalent of Objective-C Categories?

For the short period of time I subjected myself to Objective-C, I swore a lot, but one thing I thought was fabulous was categories. I could add a method to the NSString object as a category, and it ...
0
votes
0answers
9 views

wordpress / $query_post problems depending on themes

I have a website wrote on wordpress that have some pages in which some categories instead of others are loaded. I've worked on Platform theme, then i wanted to switch to a web responsive theme so i ...
4
votes
6answers
8k views

add categories column to the product grid in magento admin

I'm trying to add a categories column to the product grid. I've modified Mage_Adminhtml_Block_Catalog_Product_Grid. Added the following to _prepareCollection: ->joinField('category_ids', ...
0
votes
2answers
40 views

Wordpress - Exclude a category from appearing in menu or sidebar widgets

Is there a simple solution (e.g a plugin) for excluding categories appearing in a menu or sidebar? I created a category of posts called "videos" which display youtube videos (naturally!!) but then i ...
0
votes
0answers
5 views

Expression Engine show category entries

I want to be able to click on a category from the front end, and get an index of all the entries that are assigned to that particular category, and from then, a link to the single article - but I ...
1
vote
1answer
247 views

Magento 1.7.0.2 Fatal error: Call to a member function getAttributeCode() on a non-object in

I just upgraded a Magento installation from 1.4.1.0 to 1.7.0.2. Now i have an error when trying to edit a category. The error says: Fatal error: Call to a member function getAttributeCode() on a ...
5
votes
4answers
1k views

How to configure Doxygen to document Objective-C categories properly

Doxygen appears to have idiosyncratic handling of Objective-C categories and I would like to know if others have been able to work around it successfully. I would like doxygen to document all ...
0
votes
1answer
47 views

Objective C: several categories on one class

I must have misunderstood Categories I made a category on a class to extend it with some methods, and make some methods abstract following the OOP guidelines. But I thought that only when I #import ...
0
votes
0answers
23 views

Hide one category from 'Show All'

I have the below code at the top of my page which displays a small clickable thumbnail for every category. For eg, ALL, News, TV, Radio, Weather. It defaults to showing 'ALL' but when you click on ...
0
votes
2answers
54 views

Nested tables and calculating summary statistics with confidence intervals in R

This question is about the statistical program R. Data I have a data frame, study_data, that has 100 rows, each representing a different person, and three columns, gender, height_category, and ...
0
votes
1answer
33 views

Wordpress categories taxonomy

I`m using ACF plugin for custom fields and categories made from the plugin. My problem is that I made a custom category called "Mobile". Adding a new custom post and inserting it in the category ...
-1
votes
1answer
16 views

Google “category matching”, how is it done? [closed]

How is this done? I want the games to be listed in Google in the same way as what is underlined with red on the screenshot, can anyone help me with that? Screenshot from Google Search Results: ...
26
votes
4answers
10k views

How do I use objc_setAssociatedObject/objc_getAssociatedObject inside an object?

If I use objc_setAssociatedObject/objc_getAssociatedObject inside a category implementation to store a simulated instance variable in a setter method, how would I access the key in the getter method ...
0
votes
0answers
10 views

Nestle post type under category WordPress

I'm using a plugin called Easy Recipe that creates posts when someone submits a new recipe and I'm looking to making these posts become nestled under the category "recipes" and here's the code that ...
11
votes
6answers
8k views

Instance Variables for Objective C Categories

I have a situation where it seems like I need to add instance variables to a category, but I know from Apple's docs that I can't do that. So I'm wondering what the best alternative or workaround is. ...
0
votes
1answer
23 views

SQL to bulk edit all post from specific author?

I've been looking around many google results and answers here without luck. I need to remove and add categories to posts by a specific author using a SQL statement. I assume logically I would do the ...
1
vote
1answer
27 views

Changing content of categories pages

I have a table called categoria with 10 rows: (idcateg, descri) VALUES (1, 'Action'), (2, 'Classic'), (3, 'Fight'), (4, 'Others'), (5, 'Puzzles'), (6, 'Racing'), (7, 'Shooting'), (8, ...
0
votes
0answers
22 views

How to exclude 2 Portfolio Categories from page?

I want to exclude 2 Portfolio categories (IDs 4 & 23) from a page using the code below but it still displays all categories. Similar code works for 'Posts' but not for 'Port' - can anyone see what ...
0
votes
1answer
20 views

How do you assign a specific order for a category in Wordpress?

I am having a small problem which I believe to be related to a syntax issue. I have a specific script for home which calls the bloginfo("name") for the page title then an else statement below which ...
3
votes
2answers
5k views

jQuery UI Autocomplete with Categories

I'm using jQuery UI's Auto Complete to provide suggestions from a remote source for a search input box. I've got the "remote datasource" example working. For example, this works: ...
1
vote
3answers
11k views

magento show categories on left sidebar on a page

I cant manage to show on a page, on the left side the categories. I selected for the page under Design - layout to 3 columns, Right side shows fine but nothing on left side. New to magento so i`m not ...
1
vote
2answers
56 views

get the number of factories that are in a category

In this question, I asked about how to show the number of factories which are located in a specific category (using count). I just want to do something like this: Sidebar ------ Category1 (3) ...
0
votes
2answers
30 views

Showing Categories in wordpess loop

HI I have added a loop code to a WP page to display a list of thumb of posts. It works fine, but it shows each post I have published, even if isn't in the categories choosen. It's a problem because ...
1
vote
2answers
82 views

R: Count unique values by category

I have data in R that looks like this: Cnty Yr Plt Spp DBH Ht Age 1 185 1999 20001 Bitternut 8.0 54 47 2 185 1999 20001 Bitternut 7.2 55 50 3 31 1999 20001 Pignut 7.4 71 ...
0
votes
1answer
49 views

Get all parent categories of wordpress post with PHP

Given a category name, I need to get an array of all categories that a wordpress post belongs to, including all parent categories. The wordpress functions are NOT available. The below code times out ...
0
votes
1answer
57 views

Creating programatically a category when Flat mode is enabled in Magento

I want to create programatically a category in my data folder of my module. The Flat categories option is enabled. When a I try to create a category like so: $category ->setStoreId(0) ...

1 2 3 4 5 13