ravisarma
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme with drop down menu, custom header, that works on IE?happy5, apologies for the late response, but I am the author of Ahimsa and I can help you with any customisation questions you have. There is already a post on my blog that details how you can change the header: http://ahren.org/code/bit/how-to-add-an-image-in-the-ahimsa-theme-header.
Please be warned though that any changes you make to theme files should be backed up, since an upgrade of the theme from within WordPress will perform a fresh install, nuking all your changes.
Forum: Themes and Templates
In reply to: removing ‘substance’ & ‘style’ text in bottom right cornerofpeb, to get rid of the “Site” and “Comments” bar, you can do one of two things: edit style.css and add to the bottom:
#rsslinks { display: none !important; }That’s the quick and dirty way. Or you can remove the below section from header.php:
<div id='rsslinks'> <div class='capsule'> <a href='<?php bloginfo('comments_rss2_url'); ?>'> <img border='0' align='top' alt='Comments RSS' src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>' /> <span title='Subscribe to the RSS feed for the comments on this site'>Comments</span> </a> </div> <div class='capsule'> <a href='<?php bloginfo("rss2_url"); ?>'> <img border='0' align='top' alt='Site RSS' src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>' /> <span title='Subscribe to the RSS feed for the posts on this site'>Site</span> </a> </div> <?php if( $options['showloginout'] == 1 ) { ?> <div class='capsule'> <?php wp_loginout(); ?> </div> <?php } ?> </div>Regarding moving the adsense banner up, I do not see one in your page now — perhaps too late, but if you still need help, you can contact me at the email address in my first comment above.
Finally, regarding the “disgusting” comment from “tomontoast”, I guess he is referring to my HTML/CSS changes to the default theme, or to the default theme markup itself. Trenchant criticism, for sure.
Forum: Themes and Templates
In reply to: Problem with the width of the page using Ahimsadismadylan, I am the author of the theme, but I saw this post from you only now, since I do not visit the WP forums often. Do you still need help?
Forum: Themes and Templates
In reply to: need help with ahren ahimsa themeofpeb, I just saw this post while searching the forum. Do you still need help? I am the author of the theme and I can help, if you need it.
Forum: Themes and Templates
In reply to: Japanese Text : I want to avoid “Long Vertical Title”RozKen,
I am guessing your problem is that the Japanese text (タダを使いこなすPC技) is getting wrapped around to form a long vertical title?
One way out of this is to edit the stylesheet and add:
#title { white-space:nowrap; }or if that doesn’t work, the edit the header.php and where it says:
<td id='title' ...>replace it with:
<td id='title' nowrap ....>Forum: Fixing WordPress
In reply to: re-edit theme skinCommander Keen, I have not tried my theme on a Windows server… could you possibly post the exact error message you see when you Thank you to load a skin, etc? The theme code has to look into the absolute filesystem path to load the file, so that shouldn’t be the problem…
Forum: Themes and Templates
In reply to: left and right sidebarsTony, I do plan to support two sidebars in the next release, slated for some time in October. You can track progress or add comments here: http://github.com/ahrencode/Ahimsa-for-WP/issues#issue/18.
Yazman1955, funnily enough I use Subscribe to Comments on my blog (http://ahren.org/code/) which uses my Ahimsa theme, so one easy check you can do is to leave a comment on my blog and see if you get emailed responses ;-).
Forum: Plugins
In reply to: When is Comment Reply Via Email Coming to WordPress.org Blogs?Can be achieved via IntenseDebate, I think… see my blog post at http://ahren.org/code/bit/reply-via-email-for-wordpress-blogs.
Forum: Plugins
In reply to: When is Comment Reply Via Email Coming to WordPress.org Blogs?In the post by Joseph Scott (http://en.blog.wordpress.com/2009/04/23/comment-reply-via-email-open-to-all/) announcing this feature, Matt responded to a comment asking the above question, by suggesting a commenting system like Intense Debate. So, I suspect this is not coming (at least in near future) to non-wordpress.com WP blogs.
My problem with Disqus, Intense Debate (though to be honest I have not used ID, so maybe I am wrong) is that they break the theme styling for the comments section. So I too would like this feature. To implement it for generic WP blogs they will need to add some more code to let us specify a From address and then use that address. Also a mechanism to feed responses back into WP would be needed.
Forum: Fixing WordPress
In reply to: re-edit theme skinSupport for skin editing (including updating of existing skins) is now available in Ahimsa 3.0 (available now via wordpress.org). Support for additional custom stylesheet is also available. Please backup your current skins before you update them.
Ahimsa 3.0 announcement is at: http://ahren.org/code/bit/at-long-last-ahimsa-3-0-for-wp.
I am wondering if the theme update probably deleted your custom stylesheet because that’s the way the WP update mechanism works? i.e., it blows away the existing directory first? If so, that would be a problem with my theme update as well.
Forum: Fixing WordPress
In reply to: Deny usernames with SPACE character when registeringI am just guessing here, so please use caution:
In wp-includes/formatting.php is a function sanitize_user() — perhaps that’s the place you should start looking. That the file is named formatting.php gives me pause… perhaps the class WP_User is where you should add your code. If you are not PHP proficient, you can ping me, and I can try to figure out the exact spot to add relevant code.
Also, have you checked to see if a plug-in already exists that implements this?
Forum: Everything else WordPress
In reply to: Can media manager recgognize files uploaded via FTP?One more thing: it is possible to upload in a manner recognised by the Media Manager without using it. This can be done using the WordPress XML-RPC interface. For example, the WordPress::API::MediaObject Perl Module wraps all the XML-RPC making it possible to easily write a script that performs an upload and spits you back a URL:
use WordPress::API::MediaObject; ... ... my $wp = WordPress::API::MediaObject->new({ proxy => 'http://blog.example.org/xmlrpc.php', username => 'mylogin', password => 'somepass', }); $wp->load_file("xyz.jpg"); $wp->upload(); print $wp->url();On my Mac, I have a (as yet incomplete) droplet that lets me drag/drop multiple files onto it and then uploads them to my WP media manager.
This won’t help if you want to use FTP or cannot wrap a UI/GUI around such code, of course.
Forum: Everything else WordPress
In reply to: Can media manager recgognize files uploaded via FTP?I do not think this is possible. I am looking through the WP code to find out how and where media metadata is stored (its not obvious from the DB schema), but my belief is that without the presence of such metadata (added when you upload the media using the WP uploader), the media won’t show up in the media manager.
Here’s what the docs say:
http://codex.wordpress.org/Media_Library_SubPanelIf you do need to upload Media, even if that Media is not related to a Post or Page, then you need to use the Media Add New SubPanel.
There are some plugins that attempt to present media from certain external sites (e.g: Flickr?) within the Media Manager. And there is one plugin that helps you incorporate independently uploaded files into the media manager, but the action is not automatic.
Forum: Fixing WordPress
In reply to: re-edit theme skinMaxwell_pink, I plan to support an additional style sheet too, and load it at the end to overwrite any existing styles. I am not sure how the new WP theme upgrade feature works. I will check to make sure that if it deletes all existing files, then I have some mechanism to not lose the custom stylesheet.