nsathees
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Display Current Child Taxonomy and its Parent Taxonomyif you don’t want link to the categories then use the following code
<?php $cat_id = get_query_var('cat'); $parents = get_category_parents($cat_id, false, ' » ', false); echo $parents; ?>Forum: Fixing WordPress
In reply to: How to Display Current Child Taxonomy and its Parent TaxonomyTo lost the categories inline use the following code. If necessary append the post title to it.
<?php $cat_id = get_query_var('cat'); $parents = get_category_parents($cat_id, TRUE, ' » '); echo $parents; ?>Forum: Fixing WordPress
In reply to: Links to pages on postsWhy not browse to that page on a new tab of your browser (Google Chrome or Firefox) and copy the link and past it in the post!
Forum: Fixing WordPress
In reply to: Uninstalling wordpressIf you mean by that it is not allowing you to re install is that it is reverting back to the old installation, than you need to truncate the tables in the Database and re install.
WARNING: All data will be lost.
Forum: Fixing WordPress
In reply to: file download erroryou need to make the folder uploads writable. all the folders in uploads needs to writable as well.
Forum: Themes and Templates
In reply to: Child CategoriesSo there is no one have solved this? Then I guess I have to go the long way with explode($catlist).
Forum: Themes and Templates
In reply to: Weird Sidebar Formatting Issue–Help?You have nested content-wrap one is the whole width of 960px and the other is 680px;
which will have conflicts.also use the overflow within css.
Forum: Fixing WordPress
In reply to: Related Posts Thumbnails custom thumbnail size, quick changeyou have 3 sizes if you don’t use any of the other then you can set it to be 90 90 and use it. Else you have to manually create 90 90 and upload to uploads dir and use the custom field to assign it the post and call it in the post.
Forum: Fixing WordPress
In reply to: Setting permalink to /%postname%/ fails on nested CategoriesThe problem was the MOD Rewrite in Apache. Solved it.
Forum: Fixing WordPress
In reply to: Setting permalink to /%postname%/ fails on nested Categories@esmi
Don’t have it online yet! Developing in localhost under Ubuntu LAMP Stack.I use to provide many solutions to the questions asked here. Just mentioning that I am very familiar with WP and I need constructive answer such as point to the most likely place the problem could occur please.
Thank you,
Forum: Hacks
In reply to: Feeding single category to pageis in_category(‘reviews’) to check if it is querying the reviews category and display the content.
by the way don’t paste long codes here, Use pastebin to post the codes and link it here!
Forum: Hacks
In reply to: Hide admin pages in menuEither use include or Exclude with wp_list_pages
Forum: Plugins
In reply to: Looking for an Image/Gallery PluginDo you mean like this?
http://hotelsinmalaysia.org/ancasa-all-suites-resort-spa-pd/I use custom fields
Forum: Fixing WordPress
In reply to: Problem With Permalinkscheck your .htaccess file in WP root dir.
Forum: Fixing WordPress
In reply to: Why Do I always get notification email from wordpress@seocomrade.comThe e-mail is sent to comrade@seocomrade.com by wordpress@seocomrade.com
you can change that, but then you are messing with the WordPress internal code! Are you comfortable with that?