Brajesh
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Wp Unique Article Header Image] 2.7 and Higher Supporthi there
It is not a dead project,but I had a very busy schedule,so i was not able to release the new version.I am organizing my work ,to give some time on this project.hope some updates in few days.Forum: Plugins
In reply to: [Plugin: Wp Unique Article Header Image] Won’t InstallPlease check your server supports php5,if yes, there will be no issues.the only issue arrives ,if your server does not support PHp5
Forum: Plugins
In reply to: [Plugin: Wp Unique Article Header Image] 2.7 and Higher Supporthello shlaxim
after so many delays and time issues ,i am happy to let you know the plugin is ready to be released .the current version will not only support wp2.7+ but also is compatible with PHP4,This weekend ,I will be releasing the plugin ,so please hope it to be available on coming sunday ??Thanks for liking this plugin.
BrajeshForum: Plugins
In reply to: [Plugin: Wp Unique Article Header Image] This plugin is wonderfulhi Richard
Thanks for the review.I am happy to know it suited your needs.Thanks
BrajeshForum: Plugins
In reply to: [Plugin: WP NicEdit] Loses focus on WP-2.7 nested commentshi houseofstruss
Thanks for pointing the issue.I will get back to you as soon I test it and find a solution(please don’t mind,but it may take around a week because of my current heavy schedule).
BrajeshForum: Themes and Templates
In reply to: How to remove an image from certain pages onlyhi
well, just use something like this<div class="entry"> <?php if(!is_page(16)):?> <?php comments_template(); ?> <?php endif;?> </div>
Forum: Installing WordPress
In reply to: I can not add categories – button missing and more on Wp 2.7hi
It seems, you have not been able to install the wordpress 2.7 correctly.
As far as I can guess from your screenshot and your message,some javascript and images are either not present or are having errors.You can try this.
Download wordpress again from www.ads-software.com(as may be the previous download,may not be completed successfully).
Unzip the wordpress,and overwrite your new installed wordpress’s wp-includes,wp-admin,with the newly downloaded.It should solve the issue.Please remember,you only need to overwrite wp-includes and wp-admin.
Hope it helps.If not,please let us know here.Brajesh
Forum: Developing with WordPress
In reply to: Update Post and Update Page Shows 404 Error Pagehi,can you post a link to your website.
The second best thing will be,if you can tell us which plugins you are using.
try disabling any plugin you have installed recently (If any ,after which problem started).
Any other information about the changes you have made,after which this problem started can help us to rectify the issue.Forum: Developing with WordPress
In reply to: how to mange xml rpchi
check this page for details
https://scripts.incutio.com/xmlrpc/
this library is included with wordpress.May be of some use to you.Forum: Themes and Templates
In reply to: Where do I change the size of fonts in tag cloud?hi,You are most welcome.
Yes,the tag will be inside a php file,most probably in sidebar.php.
Check the sidebar.php or other php files of your template to find the tag wp_tag_cloud.Change the appropriate arguements there as mentioned in the above link in my previous post.Let us hope it helps you.
BrajeshForum: Everything else WordPress
In reply to: Loginhi
for your first issue,The url is not weird at all.It is just containing the redirection url.
If you want a clean url try
yourblog.com/wp-login.phpAnd to reset password did you select md5 function from functions field while updating the password.Try a text password with function field selected as md5,and it will allow you to login.
For second,I am not familiar with disqus,so may not help you.Forum: Themes and Templates
In reply to: Where do I change the size of fonts in tag cloud?hi
you need to change the arguments in a function called wp_tag_cloud
Look for this in you template directory(in sidebar.php if the tag cloud is in the sidebar)
Have a look at the function in wordpress codex here
https://codex.www.ads-software.com/Template_Tags/wp_tag_cloudForum: Themes and Templates
In reply to: How to remove an image from certain pages onlyhi
You are most welcome.
No you don’t need the else as please see I have used if page is not having id ‘your_page_id’ then show the comments etc.else it should not not.That means,when you are on page having page_id ‘your_page_id’,the if condition will become false and it will not run.For multiple pages ,chain the conditional with logical or like
<?php
if(!(is_page('id1')||is_page('id2')||is_page('id3')))
{
//show tags and comments....
//
}
?>
or another alternative, if easier on understanding could be something like this
<?php
if(is_page('id1')||is_page('id2')||is_page('id3'))
{
//Do NOT SHOW tags and comments....
//
}
else
{
//show tags and comments}
?>Forum: Themes and Templates
In reply to: How to remove an image from certain pages onlyuse something like this to control
`<?php
if(!is_page('your_page_id'))
{
//show tags and comments....
//
}`
It must be put in page.php and if your theme is not having page.php it should go to your index.php where tags and comments are shown