lalng001
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Help with a codeok thanks for the reply, but will this code get the category of where my post is posted?
<?php global $post; $categories = get_the_category($post->ID); var_dump($categories); ?>
And how should i get the other post in the category?
Forum: Themes and Templates
In reply to: Comment Template Problemyup i’m really sure
Forum: Themes and Templates
In reply to: Comment Template ProblemAnyone that can help please
Forum: Themes and Templates
In reply to: Comment Template Problembump anyone can help please?
Forum: Fixing WordPress
In reply to: Comments Problembtw way here’s an example of the post. sorry for double post i can’t edit my post above
Forum: Plugins
In reply to: About the collapsible category pluginBump!! Anyone please?
Forum: Your WordPress
In reply to: Evaluate my Site 1 – 5 (5 Highest)1.2
Closed window quickly. (just being honest)
Can you tell me why you close the window immediately? Please i want to learn what are my sites cons and mistakes… I can’t improve my site if you are just giving me raw score. ZZzzz
Forum: Your WordPress
In reply to: Evaluate my Site 1 – 5 (5 Highest)Looks really nice, but only thing i don’t like is all the asking for money, i feel like I’m walking down the high street and the charity muggers are jumping out at me every two seconds!!! So for that reason I am giving you a 2, would have been a 4 otherwise.
Nice design and layout, shameless begging for money.I’m not really begging for money. If it look in that way. I am not forcing anyone to donate. As you can see there are no pop ads, google ads, adbrite or anything in my site. I’m just encouraging anyone that was also benefits in my site to donate for further site development.
Anyways, thanks for all of your comments, and can i request that please don’t give me just score. Please also tell me what i did wrong, or what do you want me to improve….
That theme is very nice but it does not suite you.
You did not customize it to meet your needs.
I give you 2 points.
I see no problem with my template now. Can you tell me what idea you have for my site. I will be happy to improve it. Thanks
Forum: Installing WordPress
In reply to: About the Export in 2.7Ok Ok thanks michael ^^
Forum: Themes and Templates
In reply to: Sudden Google AdsThanks for the reply but i think i know the reasons now. My server is now forcing ads to the footer of the websites hosted by it. Grrr.. Now i need to find another good free web host
Forum: Plugins
In reply to: [Plugin HidePost] Don’t PROTECT LINKS in specific posts/pagesOk Ok thanks thanks. I’ll just wait for the option of you want to do in the near future ^_^. Thanks…
Forum: Plugins
In reply to: [Plugin HidePost] Don’t PROTECT LINKS in specific posts/pagesYes that’s true but it will be so much work because my blog is more about downloading. Michael’s code will really do the trick but my problem is i can’t get it functional.
Forum: Fixing WordPress
In reply to: Color of my linksForum: Fixing WordPress
In reply to: saved all wp files to ftp programYup, to publish all the comments/posts of your previous blog, you must go to your site/wp-admin/tools then go to export. Then you can download all the data of comments, posts, pages you created of your blog. Then in your new blog, go to tools again then select import. After that all will be imported in your new blog. As easy as that.
Hope this helps..
Forum: Plugins
In reply to: [Plugin HidePost] Don’t PROTECT LINKS in specific posts/pagesWell i put the correct ID. But i’m using custom permalinks %categort/%posts, that’s the structure of my permalinks.
This is the code i change, it’s really like your example.
function hidepost_filter_post($content) { global $post, $m_id, $hidepost_hide_link, $hidepost_hide_content; hidepost_replace_pattern(); //Protect the link if ($hidepost_hide_link == 1) { if ($post->ID != 1223 && $post->ID != 691) { $m_id = -1;//Magic ^.^ $content = preg_replace('#\<a(.*?)\>(.*?)\</a\>#sie','hidepost_replace_link($content)',$content); } }