The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
25 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 ...
-1
votes
1answer
17 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: ...
0
votes
1answer
46 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 ...
0
votes
0answers
11 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 ...
0
votes
1answer
37 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 ...
0
votes
0answers
27 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 ...
1
vote
1answer
31 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
1answer
25 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 ...
1
vote
2answers
194 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
2answers
34 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 ...
0
votes
1answer
89 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 ...
1
vote
2answers
57 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
1answer
142 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) ...
0
votes
0answers
80 views

Magento Basic Vertical Category Navigation

Here is a really simple concept which Magento manages to make so mind numbingly difficult to achieve. See this page: http://www.net-a-porter.com/Shop/Clothing Click on 'Tops' - it displays a list of ...
1
vote
2answers
37 views

Transferring categorical means to a new table

I'm fairly new to R, but I've tackled much larger challenges than my current problem, which makes it particularly frustrating. I searched the forums and found some related topics, but none would do ...
1
vote
1answer
232 views

Magento CMS Page as Category Landing Page

I have a problem deciding how to implement my category/cms page structure in Magento. It seems so over rigid in its design, even to the extent of adding custom fields to categories, I had to access ...
1
vote
2answers
43 views

Wordpress category list of any parent category

i want to show list of child categories of Blog category. how do i do that? Thank you M
0
votes
1answer
85 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
3answers
40 views

url for multiple category

I need some help here. I have a script here for category selection. When i use on url www.domain.com/zone.php?cat=Apple it works and shows items in Apple category However I would like to have 2 or ...
1
vote
0answers
30 views

In ReSharper 7, how do I skip unit tests marked with multiple categories?

I have searched the R# documentation and the R# community at JetBrains, as well as here, but I haven't found an answer. I have something like this: an assembly marked with an Acceptance category. ...
0
votes
0answers
37 views

ACF, custom field that retreives posts, pages and categories

Using Advanced Custom Fields (http://advancedcustomfields.com) and acf / load_field I'm writing a function for creating a custom field that will list both posts, pages and categories. While Page Link ...
0
votes
2answers
53 views

Wordpress custom menu for different categories

How do I get different menus for different categories? When we add a new category through the admin we want a custom menu to generate dynamically.
0
votes
1answer
61 views

Categories with Autocomplete Jquery UI Integration

I want to add categories to the search results of a an Autocomplete widget like so http://jqueryui.com/autocomplete/#categories but I am having trouble figuring out how to integrate the code into my ...
0
votes
1answer
84 views

Joomla 2.5 - retrieving categories list in order like in Category Manager

After googling and messing around for 2 days i've come to the dead end looking for a rescuer. :-) I want to get the categories just like in the same order they appear in Category Manager in Joomla ...
0
votes
1answer
37 views

Can't make categories in my webpy blog, bad default value use, using browser direction bar input like alias

I'm trying to make categories in my self-developed blog with webpy I try to make : mywebpage.com/c/categorieName be the input that shows the categorie (like an alias ?¿?) urls = ( ...
-1
votes
1answer
40 views

Categories appear in wrong order when assigned to a post

I have set up this hierarchy in categories as in the screenshot, for example Men > Accessories > Ties http://i48.tinypic.com/apjs3s.jpg But when I assign a post with the categories Men > ...
0
votes
1answer
100 views

Wordpress - Custom taxonomy no results in some cases. Need to perfect query

Eventually I'm going to have to fall back to writing custom queries for tags and categories in my custom post type, but for now I was rather hoping that I could do it the wordpress way. Problem: If ...
0
votes
2answers
137 views

Using JUnit categories vs simply organizing tests in separate classes

I have two logical categories of tests: plain functional unit tests (pass/fail) and benchmark performance tests that are just for metrics/diagnostics. Currently, I have all test methods in a single ...
-1
votes
1answer
25 views

How to change category of a an app during an update? [duplicate]

I'm updating my app, but i cannot find where to change the primary category. Itunes connect let me change everything but not the categories (primary or second). Any ideas?
2
votes
1answer
107 views

Opencart Category Custom Icon

I need to show a custom graphic icon to display on opencart category pages at the side of each thumbnail. Can I use one of Opencart's existing product attributes to get this to display in categories? ...
1
vote
3answers
112 views

How to Display the list of wordpress categories with their ids

Can anyone please tell me how to display my wordpress categories (parents and childs) along with their ids. i want them printed in this way: Europe,United Kingdom,London (Europe is a parent category ...
1
vote
1answer
54 views

Categorize url API

Does anyone know some kind of API which allow to categorize sites. Examples: Microsoft Reputation Services (https://www.microsoft.com/security/portal/mrs/) or Kerio WebFilter ...
1
vote
1answer
51 views

Best way to create categories with words

I am currently working on a little "Hangman" project. I want to make it possible for the user to choose from different categories, such as "Countries" or "Food" and this got me thinking about what ...
0
votes
1answer
35 views

Joomla Category Home Pages

Is there any way in Joomla2.5 to create Home/Landing Pages (ie. "default") pages for each category. For example, I would like the user to be able to go to www.somejoomlasite.com/category1 and see a ...
1
vote
1answer
185 views

Joomla 2.5 + How to display the category in the url

I was hoping someone could help me. I've searched high and low for an answer for this one, and I haven't been able to find the exact answer (even within the forum). How can I display the category ...
1
vote
1answer
93 views

How is this code creating a backup of the NSMutableArray…?

Please have a look at the following category... As far as I knew one can't add instance variable to categories.. .h // // Created by macbook on 17.01.13. // // To change the template use AppCode | ...
0
votes
0answers
47 views

display sub categories assoccited with each post in a category archive page.

i have wordpress blog with many posts. each posts associated with many categories and sub categories. i want to display sub categories assoccited with each post in a category archive page. for ...
0
votes
2answers
58 views

Joomla 2.5 How many possible categories

I googled but could only find answers for the max amount of articles. Question: short Version: How many possible categories (with subcategories) can Joomla 2.5 handle on a shared host. Which ...
0
votes
1answer
96 views

Netsuite How do you link sub-tab on home page to page/category?

I am editing a previously set up company web site with Netsuite. I would appreciate any assistance provided on how to link a presentation sub-tab to the appropriate category/page. The problem is ...
1
vote
2answers
461 views

Android - Headers categories in PreferenceActivity with PreferenceFragment

I would like to display a preference screen like the one in the Android settings app : using headers, PreferenceActivity, PreferenceFragment and headers categories. I wan't this result on a tablet : ...
0
votes
1answer
124 views

Wordpress MySQL Query for category pages

I am using this query on my wordpress index.php to display posts and sort them by date (oldest first ASC). I use this database query because query_posts didn't work for me for some reason. ...
0
votes
1answer
28 views

Exclude leftnav in specific category/categories

Leftnav is active across all pages in my Magento site. But I want to hide it in specific category/categories. Here is my code: $cat = Mage::getModel('catalog/category')->load(3); ...
1
vote
1answer
382 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 ...
0
votes
1answer
29 views

get all sub categories without specify any category in wordpress

I'm having 2 level ( one sub-category only. No sub-sub category ) Category in WordPress. I need to get all sub categories without parent category. I didn't specify any parent category. Example: ...
0
votes
0answers
57 views

Setting Exchange categories in iOS App

Is it possible to set the categories of an Exchange object via EVentKit in iOS? I am seeking a solution without using any external services like EWS.
-1
votes
1answer
100 views

Display subcategories of a specifc category in side bar

I'm using Hellowired theme, top navigation links are displayed in side bar. Instead I want subcategories of a specific category(ID 3) to be displayed in sidebar. Please keep in mind active inactive ...
1
vote
1answer
50 views

nested subcategory add edit and update

Hi Folks i am beginner in ROR, want to achieve following, (using => Rails 3.2.12 => Ruby ruby 2.0.0p0 ) i want to add or change characteristics of categories by a backend and that should ...
0
votes
1answer
14 views

Filter GWCODE categories by entry count

I am using the GWCODE categories plugin for my sidebar in ExpressionEngine. Is there a way to only show children (depth_2) categories that have 15 or more entries? I know there a entry_count ...
0
votes
1answer
116 views

To catch id from gridview to fillgridview

I have two gridview on one page.. i have listed the first one than from commandargument("id") i listed the second one.. but i am doing something on these gridviews i can fulfill the first gridview ...
0
votes
1answer
58 views

Active navigation menu rails and Anchestry

I used Ancestry gem to provide full categorization function to my website. At this point I want to create navigation menu. The idea, is like this. I click on main category, it navigates to it, ...

1 2 3 4 5 14