th90
Forum Replies Created
-
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Add language translation supporHi .
Very Nice…
I’ll translate it now and email it to you as soon as possible..Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Add language translation supporHi.
Okay,
I’ll give the first translation file in Persian language.
I’m ready.
Thanks so much.Forum: Hacks
In reply to: Numbering posts based on each categoryThank you very much bcworks.
you helped me a lot around the problem.
Know i am searching for a code as an example to rewriting existing wordpress permalinks and …Forum: Hacks
In reply to: Numbering posts based on each categoryI don’t know how to add rewrite rules and rewrite tags .
i read some examples but they were different methods.
finally i did not understand what exactly i need to make a custom pretty link.Forum: Hacks
In reply to: Numbering posts based on each categoryHi again.
I did changes to give id for posts of each category. ( if you need code tell me.)
now, what i want is only changing the permalinks of posts.
pleassssssssssse help.Forum: Hacks
In reply to: Numbering posts based on each categoryThanks for your answer bcworks.
Can you give me an example based on what you said?
i did a change in this code and queried specific category with query_posts.
but if i want to do this for all categories what i must do?
tnx.Forum: Fixing WordPress
In reply to: wordpress category urls problemHi Siobhan,
Thanks for your help.
if this feature is good, i will not disable it as you say.
but there is a problem ,
this link:
site.com/category/somecustomstringhere/news/
loads the content for :
site.com/category/news/
but the address in url bar does not redirect to the main and real link
i mean the url still stays on
site.com/category/somecustomstringhere/news/
and does not change to
site.com/category/news/Forum: Themes and Templates
In reply to: Adding custom submenu to menu itemHi
One way is using custom navmenu walker and conditional tags based on menu item id.Forum: Themes and Templates
In reply to: Adding custom submenu to menu itemtnx for your answer modularBase
but i am a wordpress theme developer
i asked for a filter and hook or something like these.
working by codes..Forum: Themes and Templates
In reply to: Adding custom submenu to menu itemin other words , i want to add custom child item to navmenu parent item like a title loop of posts in a category.
Forum: Plugins
In reply to: [WP-PostViews] inaccurate counting?Hi.
Thanks for your plugin.
if this plugin counts each visitor as only one view per a time period like 24 hours or etc , it will be better and detailed.
is there any way to do this?Forum: Plugins
In reply to: [World Clock Widget] Daylight savings time not working.Hi
Did your problem have been solved?
if yes and you have .XML file can you share it?Forum: Plugins
In reply to: [World Clock Widget] Daylight savings time not working.yes unfortunately DST Not Working…
Any Idea to Solve This problem?Forum: Themes and Templates
In reply to: Show category even if has no posts ; the_category() functionThanks alchymyth.
I use the_category() inside the loop and the navbar is inside the loop too.
but using the_category() works fine (and automatically does what must do, no need to extra codes) , except while the category has no posts, it does not work functionally and i think there is a problem with this function.
however, we can use other ways for coding navbar.
but why the_category does not work functionally?
Thanks.Forum: Themes and Templates
In reply to: Show category even if has no posts ; the_category() functionYes.
and only the category part of navbar has problem that i said.
for showing categories with links in navbar i use
<?php the_category(' ? ','multiple'); ?>
for example:
for category pages i use this code:<?php if ( is_category() ) { ?> <a href="<?php echo get_option('home'); ?>">Home</a> ? <?php the_category(' ? ','multiple'); ?> <?php } ?>
maybe a change in the_category() function solves the problem.