Search Results for: feed

আসুন ওয়ার্ডপ্রেসের ড্যাশ বোর্ড পরিস্কার করি

ওয়ার্ডপ্রেসের এডমিন প্যানেলে লগিন করলেই একগাদা বক্স এসে হাজির হয়। যদিও স্ক্রিন অপশন থেকে সেগুলো সহজে তাড়ানো যায় কিন্তু যদি এমন হয় এডমিন নিজেই ড্যাশবোর্ড পরিস্কার করে রেখে দিলেন নতুন সদস্যের জন্য। তবে এই পরিস্কার এর কাজটা আমরা করবো সামান্য কিছু পিএইচপি কোডিং করে।

ধাপ একঃ প্রথমে আপনার থীমের functions.php ফাইলে এ ২টি ফাংশন লিখতে হবে। মনে রাখবেন প্লাগিন এর কোডগুলো চাইলে functions.php ফাইলেও লেখা যায়। তাহলে শুরু করা যাকঃ

    //Define the function which unsets the boxes
    function remove_dashboard_widgets() {
            global $wp_meta_boxes;
            myprint_r($wp_meta_boxes);
            /*
            //unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
            # Remove plugins feed
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_plugins']);
            # Remove "WordPress News"
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_primary']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_secondary']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
            # Remove incoming links feed
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_incoming_links']);

            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['events_dashboard_window']);
           */
    }
    // Now hook in to the action
    add_action('wp_dashboard_setup', 'remove_dashboard_widgets', 20, 0);

    //better print_r function taken from
    //http://stackoverflow.com/questions/1386331/php-print-r-nice-table
    function myprint_r($my_array) {
        if (is_array($my_array)) {
            echo "<table border=1 cellspacing=0 cellpadding=3 width=100%>";
            echo '<tr><td colspan=2 style="background-color:#333333;"><strong><font color=white>ARRAY</font></strong></td></tr>';
            foreach ($my_array as $k => $v) {
                    echo '<tr><td valign="top" style="width:40px;background-color:#F0F0F0;">';
                    echo '<strong>' . $k . "</strong></td><td>";
                    myprint_r($v);
                    echo "</td></tr>";
            }
            echo "</table>";
            return;
        }
        echo $my_array;
    }

Continue reading

Posted in Bangla Blogs, Tips and Tricks, wordpress, Wordpress Themes | Tagged | 8 Comments

Loading only component in joomla

I am not sure if my post title is perfect about what I want to express :P , let me clear. When we hit any link in joomla that must load any component with modules, header, footer … etc so many things. But what we need to do  if we want to load only the component part ? Ok if still you are not clear, then go to your template index.php file and check what you do with the following line

<jdoc:include type="component" />

Yes I am talking about how we can load only the component with any link that the above line does. let you are in a link in your site for com_content, for me now I am in that link in my local test site. http://localhost/jtest/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50

If I go to the link I see full site. Ok now if I modify the url by appending &tmpl=component at end

http://localhost/jtest/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&tmpl=component

I see only the component part. Please try yourself. This is how we can just show the component part. If you check your template folder there is a file named component.php which actually shows if component only link is opens. If that file is missing in your template then find in the system template folder. Also there are another two template files for error.php and offline.php which shows the error page and site offline mode page.

Now let me discuss when you may need to load the component only part. Let’s you want to show something via joomla native popup window, like you want to make popup login you can do this trick. Once I wrote a article about how to make modal (popup window) using joomla native modal javascript library.

Example: go to my joomla demo site  http://idea52.com/old/ click the feedback button, it will load the com_contact component in joomla native modal window.

Thank you.

Posted in Joomla, Tips and Tricks | Tagged , | 1 Comment

Vacation is already great :)

Just back from a long and great vacation :) May be thing last two years, I didn’t take such long break, around 14 days, yes it’s true :) Had lots of fun with Family mates. First time some one from my family came dhaka to meet me, My senior brother and sister came to my place in dhaka , I was so happy to see them.

Senior Brother(Sumon) and Sister in law(Vabi) -Sanchita

Continue reading

Posted in Personal | Tagged , , , | 4 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 , , | 5 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 , , | 7 Comments

Bangla keyboard plugin for joomla default contact form

Yes , I am back with my another joomla extension and this time , the baby is a plugin named “banglakeyboard”. I am happy to contribute another extenstion for bangla community about bangla. This plugin will help to write bangla in default joomla contact form. It will add java script based bangla keyboard phonetic, probhat and unijoy (all are from ekushey team :) ). As it’s the first release , it will do the basic things but soon i will update this with more features. Let me show you a screenshot first how it will look. Continue reading

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

Using wordpress native thickbox

To know about what is thickbox please check this link. WordPress use this a main popup window or modal view. Thickbox is a jquery plugin and it’s available with wordpress with jquery. So my tips is how to use that in front end , using the thickbox available with it, no need to use externally.

ThickBox is a webpage UI dialog widget written in JavaScript on top of the jQuery library. Its function is to show a single image, multiple images, inline content, iframed content, or content served through AJAX in a hybrid modal.

At first let me tell you where you can get it if u search wordpress directory manually. Just check in wp-includes\js where you will get all the js library and plugins used with wordpress or available for use with plugin and theme. And here is every thing you need for thickbox
wp-includes\js\thickbox
Continue reading

Posted in wordpress | Tagged , , | 14 Comments

Fix wordpress plugin “GT post approval”

Hello! 2010 is just knocking at door :D .Hope to write lots of blog with my day2day thinking, learning and the problems I face every day.

Let me clear about this blog post: I think, you know that in wordpress we can add new coasdl in posts listing area. Check the bellow image of my post edit panel/listing(http://(yoursitename)/wp-admin/edit.php)
Continue reading

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

Downloads

Welcome to my download page. Here I will share my works on different cms like joomla, wordpress, phpbb etc and their extensions, plugins, mods. Don’t forget to give me feedback about any bug or help. BTW, for any change request please wait until I get free time as all these are open source and free. If any one wants professional service can contact with me directly using my feedback/contact page.

Browse By Categories:


There are 29 files, weighing 12.2 MiB with 71,205 hits in total.

Displaying 1 to 10 of 29 files.

Joomla Extensions

  Bangla keyboard for joomla contact form 1.3
» 17.0 KiB - 1,221 hits - 28 March, 2010
This joomla plugin will add bangla keyboard supports in default joomla contact formKeyboard Layouts: 1. Unijoy 2. Probhat 3. Phonetic 4. EnglishLanguage File 1. English 2. Bangla

  Easyfaq2 contentelement for joomfish2
» 1.1 KiB - 1,195 hits - 18 November, 2009
Joomfish content element for easyfaq

  Joomla1.5 Bangladate 1.1.0
» 3.8 KiB - 3,109 hits - 11 November, 2009
Converts english date to bangla in joomla content display mode.

  mod_manchucomlist.zip
» 4.4 KiB - 2,571 hits - 23 August, 2008
This module displays the list of all intalled components in admin panel home page for quick access and list viewing.

  Simple joomla tab-slider Module
You do not have permission to download this file.
» 5.9 KiB - 21,027 hits - 2 December, 2009

  Stop Sopa Ribon plugin for Joomla1.5
» 10.4 KiB - 166 hits - 19 January, 2012

  Stop Sopa Ribon plugin for Joomla1.6 & 1.7
» 10.7 KiB - 142 hits - 19 January, 2012

  Tinybn JCE Editor
» 12.1 KiB - 4,837 hits - 8 August, 2009
Banglafkb(tinybn) is Bengali Fixed Keyboard. This is same tinybn(Unicode based bengali keyboard for tinymce 3.x) plugin for tinymce packed as jce plugin. No manual install. Install this through jce component's plugin installer.It's Supports the following javascript based bengali writing keyboards: a. Phonetic Intelligent b. Phonetic c. Probhat d. Unijoy e. InscriptTo use this plugin you need to install jce editor and select it for writing article. Please follow documentation url for usage and insallation guide.Please don't forget to give me feedback if that is usefull or if you have any suggestion. Thank you for using my extension.

  Tinybn-Banglafkb(tinymce3.x)
» 18.5 KiB - 1,222 hits - 25 December, 2009

  Webmastertool plugin for joomla
» 2.2 KiB - 3,408 hits - 8 September, 2010
Webmastertool is a joomla plugin to add google, yahoo, bing, alexa site verification meta tag from admin. More features are coming soon!

   

 Page 1 of 3  1  2  3  » 

Posted in | 5 Comments

Show bangla date in joomla1.5

Hello, this is my another work for bangla computing. I just made a small plugin to show english date in bengali in joomla1.5. Please don’t think that it will show bangla date everywhere in joomla. This plugin is just for the component com_content which shows the content/article. I gave name for this plugin is Bangla(bn-bd) date or Joomla Bangla date. This will show article create and modification date in our local language bengali. Here is screenshot for backend.

Idea52 LAB - Administration_1257927094816

To make this plugin flexible, I tried to give so many options to configure for your joomla site to show dates in bangla. You can use this plugin as multi lingual mode easily as it has some advanced features like detect language or force to show bangla date. Even you can filter or configure for home page(front page or com_frontpage), full article mode, category filtering etc. Please check my post in post in amaderprojukti forum for details in bengali.

Continue reading

Posted in Bangla Computing, Joomla, Joomla Extention | Tagged , , | 20 Comments