Tagged Questions
1
vote
1answer
35 views
Having Trouble Assigning an Outlook Category to a MailItem with VBA
I have put together a vba script (that runs in ThisOutlookSession) that monitors MailItems added to my sent folder, and when it detects a project number in the subject, it copies that MailItem to a ...
0
votes
1answer
43 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
2answers
94 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
1answer
87 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
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 ...
0
votes
1answer
162 views
How do I make associated simple products inherit parent product categories?
My problem:
At one point, everything was working fine. Associated simple products for a configurable product inherited the configurable products' categories. Then we reorganized some categories and ...
0
votes
1answer
76 views
Limit number of posts for each category and child of, wordpress
I have a problem that I can not solve. As the title says, I want to define a different number of posts in each category. I tried to query posts and not work, and they leave the posts of all ...
-3
votes
2answers
138 views
Why we use Categories in Objective-C [closed]
Can anyone explain why we need categories.I need to use categories in my project but don't have an idea how to use category and why we need to use categories.
1
vote
1answer
246 views
Archive Page for Single Category in WordPress
I have two categories of posts on my site, for which I'd like to use the archives.php page.
I've already used it for REFERENCES.
I want to now use it for posts with a category of NEWS, but the ...
0
votes
1answer
365 views
display category of subcategories and sub/subcategories
I'm beginner of Php .. I Develop my first dynamic website -> http://www.afrogfx.com
if you look at my sidebar you will see categories list my problem located here if i create sub sub categories like ...
2
votes
2answers
72 views
MediaWiki: changing the label of a category at the bottom of the page
In mediawiki, is it possible to change the label of a 'Category' at the bottom of an article.
For example for the following article:
=Paris=
blablablablablabla
[[Category:place_id]]
I'd like to ...
0
votes
1answer
289 views
Magento - filter category by description
In magento, I need to pull all categories that have text "test-category-block" in the description.
I tried to add addFieldToFilter but doesn't work.
Is there an easy way to do it?
Update:
Just found ...
0
votes
3answers
86 views
How can I change /category to something else for a specific Wordpress category?
I have created a post category called Products for a client where they can list products with a
link to their off-site shopping cart to purchase them.
Right now, the URL reads like this:
...
2
votes
3answers
148 views
Can my “view by category” jquery code be shortened or refined?
I am attempting to update my photography website and use jquery to show or hide the "categories" for my portfolio. I've searched all over an finally came up with this solution here:
...
0
votes
0answers
2k views
Magento - How to programatically set a new parent for a category?
I'm using this method so create new categories:
private function createCat($name){
$category = Mage::getModel( 'catalog/category' );
$category->setStoreId( 0 );
$category->setName( ...
0
votes
1answer
148 views
Wordpress Category Selector - stuck
I'm using Auctionpress to create an ebay like website. I have over 300 categories you can list an item in.
When a user is listing an item they only get a list box with all the categories and then ...
1
vote
0answers
126 views
wordpress category selector [closed]
I'm using Auctionpress to create an ebay like website. I have over 300 categories you can list an item in.
When a user is listing an item they only get a list box with all the categories and then ...
1
vote
1answer
742 views
Magento - Filter categories by visibility
How can I get only categories that are visible in frontend (Include in Navigation Menu -> set to yes). I've the following function to get the category names and urls.
function getCatLinks($id){
...
1
vote
3answers
99 views
When does a Category come into effect
I'm a little confused by something regarding Categories. If I have written a Category for ClassA called ClassA+Something, at what point does that category come into effect? I'm assuming a single ...
1
vote
3answers
642 views
Categories feature of objective-c comes under which OOPS feature?
As per my knowledge, Objective-C is an Object oriented programming languge and Categories is a feature provided by Objective-C.
So I would like to know that Category feature is coming under which ...
0
votes
1answer
478 views
Category and its Core classes
If I create a category on one of the core classes in IOS, Eg UIImage, then will i have to always import the header where in I have declared its interface, or because UIImage being part of UIKit, will ...
0
votes
1answer
2k views
Magento - Listing all Categories in footer
I'd like to display all my available and active categories in my footer. Like here:
http://cl.ly/242T162h1l121D0f3Y30
I know how to display at least one:
$category = ...
2
votes
3answers
377 views
Magento empty a category (1.5)
I'm wondering if there is a quick way to remove all products from a particular category?
Or am I stuck with getting all the categories products then looping through and removing the category from ...
1
vote
4answers
634 views
Objective C - Category to modify a singleton object?
I know that the whole point of singleton is to instantiate 1 instance of the onject and reuse it, but when it comes to unit testing I want to be able to renew the singleton object before every test.
...
0
votes
1answer
146 views
Tags and Categories in Wordpress [closed]
I would like to discuss the right usage of tags and categories.
I have a review site with over 1000 reviews of bars and clubs.
I have set up post categories like this: Bar, Club, General Article.
...
0
votes
2answers
4k views
Magento Layered Navigation Categories [closed]
I would like the user to be sent to the category landing page when the user clicks the category in layered navigation.
So instead of the user getting /category.html?cat=11, they would get ...
0
votes
2answers
220 views
Accessing views from within NSTextField Category?
I've got several different classes in my code utilising identical methods -- resulting in a lot of duplicated lines -- and I recently found out about adding Categories which promises an effective ...
11
votes
2answers
3k views
Doxygen and Objective-C categories
Although the latest releases of Doxygen claim better handling of Objective-C categories, it still seems to choke on categories in my source code. I'm wondering if someone has gotten it to document ...
16
votes
3answers
7k views
Using Super in an Objective C Category?
I'd like to override a method in an Objective C class that I don't have the source to.
I've looked into it, and it appears that Categories should allow me to do this, but I'd like to use the result ...

