Social Share/Vote Button plugin for joomla content

Update 03.09.2010: This extension got approved in JED. If you like this extension pls write reviews and vote in JED.

All share count or “Social share/Vote button” is a joomla plugin that shows social share or vote button in articles. It contains all popular social network or share/bookmark sites that supports button/badge for vote/share. I was inpired by the wordpres plugin “Digg Digg WordPress Plugin” which I am using in my blog for many days.

Social share/Vote button

Continue reading

Posted in Joomla, Joomla Extention | Tagged , , , | 72 Comments

WP Photo Album Plus Plus: WordPress Image Gallery

Most of the wordpress image gallery plugins can not make me happy. NExtgen is too much heavy, then I got another wordpress plugin “WP Photo Album Plus” developed by J.N. Breetvelt, a.k.a. (OpaJaap). R.J. Kaplan developed WP Photo Album 1.5.1 and then J.N. Breetvelt extended it with new features. Really I like this simple but powerfull gallery plugin. But something I didn’t like which I am trying to modify and releasing for every body so that I can get more ideas from other and even this modification can be done to main plugin too. Though my modification is not done yet! But why not I share my last modification and explain what I have done upto now :)
Continue reading

Posted in wordpress, Wordpress Plugin | Tagged , , | 3 Comments

Adding vertical fixed feedback button

update: 06.09.2010
Wana use as wordpress or joomla plugin ? then buy from my official website

Downloads

For Joomla
For WordPress

The Story

If you still didn’t notice, please check again there is a vertical feedback button in my blog , right side. So, sometimes people asks me how to do that ,,, any one can read the source code or having debug tool like firebug for firefox can see the source code and add in his own site. But max time, it’s true that we don’t want to learn by reading or google about any problem, we just ask other to get ready made solution. Even we don’t write in forums about our problems …. grr…

So here is answer of the those question, “How I added the vertical feedback button?”

I know how html works and how css works , I know where to edit in wordpress theme. So many days ago I saw that in a site and copied the source code and image and added in my site :P
I am showing for default wordpress theme tweentyten and all paths shown bellow are windows style as windows is my primary os.

Step1: Copy this image to your wp-contentthemestwentytenimages folder first.

Step2: Open style.css file from wp-contentthemestwentyten dir and ready to add some css code :)
Step3: In the file style.css file at last line add the following css codes
Continue reading

Posted in Tips and Tricks, wordpress, Wordpress Themes | Tagged , , | 6 Comments

বৃষ্টিহীন বৃষ্টির নগরে

ঝির ঝির বৃষ্টিতে চমশার কাচে আশ্রয় নিয়েছে অলস বৃষ্টি ফোটা,
মুছতে ইচ্ছা করছে না।
বৃষ্টির কোন ফোটাতে যখন আলো পড়ছে চোখ আস্তে আস্তে ঝাপ্সা হয়ে যাচ্ছে
আর
চলে যাচ্ছি অচেনা কোন নগরে
যেখানে
জেগে থাকি বৃষ্টিহীন বছরের পর বছর।

বন্ধু তোর নগরে যদি বৃষ্টি না হয় আমাকে জানান দিস,
রংয়ের হিসাব ভুলে ধার দিয়ে দেবো আমার চমশার কাঁচে জমা বৃষ্টি্র ফোটাগুলো।।

Posted in My Bengali Poems | Tagged | 5 Comments

Adding My posts sub menu for posts section in wordpress

Let me explain the situation. Suppose you have contributor access to wordpress. If you go to posts page in admin panel that list all posts   and here you are not author of all posts.  you will see the url like

edit.php?post_type=post&all_posts=1

and All( total post number here). There will be another menu named Mine(Current user post number). All link is default. So we can make nother submenu of posts in admin section for Mine link directly. Let me show you the few lines code.

add_action('admin_menu', 'manchu_myposts');
function manchu_myposts()
{
    if (function_exists('add_submenu_page'))
    {
		//$parent, $page_title, $menu_title, $access_level, $file, $function = ''
		add_submenu_page('edit.php','My Posts','My posts', 1, 'edit.php?post_type=post&author='.get_current_user_id());
    }
}

You can copy-paste above code in your theme functions.php file and it will show a new sub menu in posts ectin as My posts. Multi user blog users can get easily link for his/her posts.
myposts
it’s just a easy way to make personal posts link for any user have access at leas contributor. Access level 1 belongs to contributor..

Update: 15-09-2011

While working on a project I got a tips from stackoverflow wordpress site about showing only specific author’s posts in author mode.

function cb_posts_for_current_author($query) {
     global $pagenow;

     if( 'edit.php' != $pagenow || !$query->is_admin )
     return $query;

     if( !current_user_can( 'manage_options' ) ) {
     global $user_ID;
     $query->set('author', $user_ID );
     }
     return $query;
}
add_filter('pre_get_posts', 'cb_posts_for_current_author');

thank you

Posted in Tips and Tricks, wordpress, Wordpress Plugin | Tagged , | 6 Comments

Stuck in wordpress Maintenance Mode?

Are you Stuck in wordpress Maintenance Mode?  I was in that situation and thought to write about my pain and findings so that it may be help to reduce pain in the ass when u are crazy to do some upgrade for plugins and themes and you are stuck  in maintenance mode for “something wrong” in upgrade/upadte process .

This tip is for wordpress3.0+, don’t  know what to do for lower version.  The thing is when wordpress takes the site maintenace mode it creates a file in the site root dir named .maintenance  and when done remove that… :)

So, now you know what to do if u are stuck in maintenance mode. I wish I am going to sleep well tonight.

note: check the dicussion in wordpress forum about this issue.

btw, let me show you a sample screenshot about how the error msg look for upgrade failure

failure

Posted in Tips and Tricks, wordpress | Leave a comment

Facebook fanbox wordpress plugin

It’s just a simple fanbox widget as wordpress plugin, nothing to explain. But I made my own version ?

Features

  • iframe method
  • auto detect ie(internet explorer), because sometimes it’s make problem for ie and option to use as iframe only for ie !
  • jquery based document ready facebook load ! Not clear ? see bellow

One thing to note that I used a way to load the facebook js script after loading jquery as normally in wordpress site front end we use jquery and many plugin uses this… so we can take that jquery is using default. So I loaded the fb js using wp_enqueue function and then called the fb init function after the document is loaded using jquery dom ready function :P … It’s just an experiment about slow loading of facebook fanbox widget in wordpress :D

Download

  Facebook Fanbox wordpress widget (2.9 KiB, 788 hits)

If you just download with no comment and no recommendation to others, then I am planning to hate you :P
Man at least share in social network and give me traffic so that I can have more money from ads :(

Good morning. It’s just morning after working whole night and I am feeling too hungry :)
Continue reading

Posted in wordpress | Tagged , , , , | 9 Comments

Adding joomla native dropdown menu in frontend

joomla native drop down menu

I think it’s my 4th post about using joomla native resources like tab slider, tooltip, modal/popup window and I am very happy that I just tried to used the joomla admin top menu … the top to bottom drop down menu in front end and it’s working fine. I just used the joomla native resources and changed one line of code in mod_mainmenu module. I think for doing something test or creative things sometimes we can try to change core code little… just keep in mind where u are changing and change again while u upgrade again in future.

Ok then let’s move for how we can use the main menu module as ‘top to bottom‘ drop down menu like the joomla admin panel top menu. we will work on default template of joomla1.5 Continue reading

Posted in Joomla, Tips and Tricks | Tagged , , , | 31 Comments

জুমলাতে নেটিভ টুলটিপ এর ব্যবহার

Hei! it’s bengali unicode text, This post is wrriten for amaderprojukti forum.
অনেক দিন বাংলায় ব্লগ বা টিপ্স কিছু লেখা হয় না। আজকের বিষয় আমার অনেক গুলো গার্লফ্রেন্ড এর ভেতর অন্যতম “জুমলা”। যদিও আজকের লেখাটা জুমলার একটি গোপন সুন্দর দিক নিয়ে আর তা হলো জুমলা ১.৫ এর নেটিভ টুলটিপ।
প্রথম একটি ছবি দেখায়ঃ
tooltip
এডমিন প্যানেলে কোন কিছু কনফিগারেশনে ঢুকলে বা অনেক সময় কোন লিঙ্কএ মাউস হোভার করলে উপরের মতো টুলটিপ দেখায়। একই রকম টুপটিপ চাইলে আমরা ফ্রন্ট এন্ড এ ব্যবহার করতে পারি আর তার জন্য এক্টিভ টেমপ্লেটে দরকার সামান্য পরিবর্তন, সেই পরিবর্তন কিভাবে করা যায় তা নিয়েই আজকের আলোচনা। পরের ছবিটি ফ্রন্ট এন্ড এর।
tootip

কিভাবে ফ্রন্ট এন্ডে টুলটিপ ফিচার যুক্ত করবেনঃ
টুলটিপ ফিচার যুক্ত করার জন্য আপনাকে প্রথম টেমপ্লেটের ইন্ডেক্স ফাইল(index.php) এ একটি লাইন যুক্ত করতে হবে। যদি আপনি ডিফল্ট টেমপ্লেট ব্যবহার করেন তাহলে rhuk_milkyway হচ্ছে আপনার টেমপ্লেট এর নাম, এর ভেতর index.php ফাইলটি ওপেন করুন কোন এডিটরে, এখন হেড ট্যাগ() এর আগে

Continue reading

Posted in Joomla, Tips and Tricks | 1 Comment

দেওয়াল

একটা উচু দেওয়ালের সামনে প্রতিদিনই দাঁড়ায় আর
ভাবি এই দেওয়ালটার তৈরি না হলে কি খুব ক্ষতি হতো ?

মাঝে মাঝে ভাবি দেওয়ালটি জবরদস্তি করে ভেঙ্গে ফেলি কিংবা
এতো দূরে পালিয়ে যায় যেখান থেকে আমি চাইলেও এই দেওয়ালের কাছে আসতে পারবো না … হে হে

ধরে নিলাম, আমি দেওয়াল ভেঙ্গে ফেলেছি কিন্তু
এইযে এতো বছর ধরে মনের ভেতর আর এক বিশাল দেওয়াল তৈরি হয়েছি সেটার কি হবে ?

ভাবছো আমি নিরাশাবাদী … হে হে না ঠিক তেমনটি নয়, আমি জানি আমি একদিন এই মনের দেওয়ালও ভেঙে ফেলবো, তারপর ?
দেওয়ালের ওপাশে যা আশা করেছিলাম তা থাকবেতো, নাকি সবই ফাঁকি।।

ভাবছি দেওয়ালের প্রতিপালককে ধমক দিয়ে বলি,
ফাজলামি পাইছো, ইচ্ছা হইলো আর দেওয়াল তুলে মজা দেখো না ?
———————————————————————————-
২৫.০৪.২০১০
উৎসর্গঃ একটি অদৃশ্য দেওয়াল এবং তার প্রতিপালককে

Posted in Bangla Blogs, My Bengali Poems | Tagged , , , , , | 7 Comments