Reuben
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how an i echo just the id of an attachment?$attachments =& get_children('post_type=attachment'); foreach($attachments as $id=>$attachment){ echo $id; }
Forum: Fixing WordPress
In reply to: how to publish in the language tamil?You need to have Tamil fonts for that. I doubt if any of the Fonts providers like Typekit and etc provide Tamil fonts. If you have a tamil font in your computer and you have the right to use it for any purpose then you can use Cufon. Its embeds any font into a website.
To use Cufon you need to have a little understanding of Javascript.
Forum: Fixing WordPress
In reply to: Fatal Error During Photo UploadI guess you need atleast 256M memory….Wordpress tries to set to that while uploading but edit your php.ini and see if it works.
Forum: Plugins
In reply to: [Audio Player] [Plugin: Audio Player] Problem with WP 3.01, 2010 themeIt does not show up audio player because the required javascript file is throwing errors(file name: 1pixelout_audio-player.js). Try upgrading the plugin or delete it and install it again.
Forum: Fixing WordPress
In reply to: Users have no place to register?Go to settings >> general and select “Anyone can register” checkbox.
Forum: Fixing WordPress
In reply to: Fatal Error During Photo UploadAfter increasing the memory in php.ini you need to restart apache to take effect.
Forum: Fixing WordPress
In reply to: How to eliminate annoying GAP!#footer { background-color:#fff; width:900px; float:right; text-align:center; padding: 5px 0 40px 0; }
Forum: Fixing WordPress
In reply to: How edit meta keywords and description from wordpressUnless your theme or a plugin gives you an option to do that there is no other way but editing the code.
Forum: Fixing WordPress
In reply to: Google Search Description Problem, Please Helpchange that line to
@froeach($metatags as $tagpost){
or a better way isif( is_array($metatags) ){ foreach($metatags as $tagpost){ /*The rest of the code here*/ } }
Forum: Fixing WordPress
In reply to: Unordered list at end of single page post automaticallyAlso, clear the cache after deactivating the plugin! I guess you are using W3 total cache
Forum: Fixing WordPress
In reply to: Unordered list at end of single page post automaticallyIts one of those social bookmarks plugins(not tweetmeme and facebook share) which is causing the problem….Actually you should see some social link(eg. twitter, digg, etc) to share you post. Deactivate the plugin and everything will work
Forum: Fixing WordPress
In reply to: Google Search Description Problem, Please HelpMaybe Google indexed your page when that error is present on your site.. Wait until Google updates your content.
Forum: Fixing WordPress
In reply to: Php memory limit not updatedtry to change that line and see if it works(also clear cache after changing it)
@ini_set('memory_limit', '200M');
Forum: Fixing WordPress
In reply to: how do i un-enable network for my blog?did you update your permalink settings after disabling networks?
Forum: Fixing WordPress
In reply to: Register sidebar widget error message?Oh! sorry, the latest plugin still has that problem…you can edit the plugin to remove those errors
open askismet.php(located in plugins/askimet dir)
go to lines 1147 & 1148
replace this two linesregister_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet'); register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
with this
wp_register_sidebar_widget('Akismet-fix-1','Akismet', 'widget_akismet', null, 'akismet'); wp_register_widget_control('Akismet-fix-2','Akismet', 'widget_akismet_control', null, 75, 'akismet');