By Pramudita on Dec 8, 2006 in Plugins | 1 Comment
I Modified AdSense-Deluxe a great WordPress Plugin and use it for Google Adsense sharing revenue site at HYIP Blog for Revenue Sharing
AdSense-Deluxe is a WordPress Plugin for quickly inserting Google or Yahoo! ads into your blog posts, and managing when and where those ads are displayed. You can use simple HTML comments for embedding AdSense [...]
By Pramudita on Aug 23, 2006 in WordPress | 1 Comment
I Couldn’t get author of post information, the author of a post can’t be displayed or returned into my author section of my blog.
I tried to get more information to solve this problem, these links can’t solve my problem ( I don’t know why) :
http://codex.wordpress.org/Author_Templates
http://lorelle.wordpress.com/2006/05/06/using-author-template-tags-outside-of-the-wordpress-loop/
http://guff.szub.net/2005/01/31/get-author-profile/
http://wordpress.org/support/topic/27554
http://wordpress.org/support/topic/33064
http://wordpress.org/support/topic/51469
http://mu.wordpress.org/forums/topic.php?id=961
http://wordpress.org/support/topic/82102
Finally I found this function :
By Pramudita on Jul 14, 2006 in Plugins | 10 Comments
Solution for Call to undefined function bcmod() in bsuite wordpress plugin is :
after
PLAIN TEXT
PHP:
foreach($refs as $ref){
line 960 of original bsuite plugin(bsuite.php), add this function :
PLAIN TEXT
PHP:
if (! function_exists('bcdiv')) {
function bcdiv($colour, $max_colours)
{
return floor($colour/$max_colours);
}
}
if (! function_exists('bcmod')) {
function bcmod($colour, $max_colours)
{
return $colour - ($max_colours*bcdiv($colour,$max_colours));
}
}
before
PLAIN TEXT
PHP:
$thiscolour = bcmod($colour,$max_colours);
so.., the original code of bsuite plugin is :
PLAIN [...]
By Pramudita on Jul 11, 2006 in WordPress | 1 Comment
I'm trying to use LiteBox (a modified version of Lightbox v2.0 created with one thing in mind, size reduction).
Download script
Extract files, edit lightbox.css and place to your wordpress template files
Example :for css file : replace (lightbox.css) :
PLAIN TEXT
CODE:
../images/
with
PLAIN TEXT
CODE:
images/
PLAIN TEXT
CODE:
mywordpress/wp-content/themes/mytheme/lightbox.css
for image files :
PLAIN TEXT
CODE:
mywordpress/wp-content/themes/mytheme/images/extractedimages
for javascript files :
PLAIN [...]
By Pramudita on Jun 27, 2006 in Plugins | 2 Comments
Right meta keywords and meta description are very important for SEO. have an automatic right meta keywords and meta description are very useful for your blog. so choice plugins to optimize your wordpress blog with this criteria :
Can make specific meta keywords and meta description for every post/your article
Don't use plugin which make duplicate meta [...]