Downloadic is the place that you can find newest software and sofware updates to download free, fast and safely. Today, Software is in almost in every sector. Softwares make people's life easier. And we make Downloadic for you to easily find Softwares. We hope you enjoy it. If you want to advertise with us, please click the "Advertise Here" image at left.
Categories
WP ImageTagger 2.5.1
WP ImageTagger 2.5.1
Author: phd The WP ImageTagger plugin provides the needed tools to categorize any image of your WordPress blog by associating these images to any defined tag or category. It includes a tagcloud widget that will make the process straightforward for everyone
Installation:
To install the WP ImageTagger plugin just follow this simple 10-step recipe : Download the plugin and expand it to an empty directory of your local disk drive. Copy the local wp-imagetagger folder created by the unzipper onto your server plugins folder (wp-content/plugins/). Make sure you end up with all the PHP files, readme.txt and screenshots in wp-content/plugins/wp-imagetagger directory. Login into the WordPress administration area and click on the Plugins left menu. Expand the Installed view. Locate the ImageTagger plugin and click on the Activate link. Make sure your blog already holds posts or pages with images. Make sure you already created a list of tags for your blog. Start associating your blog images with any tag of your blog. Two methods for this purpose : From your WordPress administration panel, go to Settings > ImageTagger and start associating the first image found to any tag in the Tag Editor Or, still from the ImageTagger administration area, switch to the Image Explorer mode, navigate to the file you want to tag and click on the file to select it back to the Tag Editor Or, assuming your site display captions below each image : from any post or page holding images, click on the image caption (being administrator) and make the association with any tag from the Tag Editor panel. Prepare a result page to present the search results : Create a new page (or use existing one if you want). Make sure you can run PHP code from your page text (using plugins like runPHP). From your WordPress editor, enter the single line code : <?php wpit_multisort_insert(); ?> Check the result on the page containing this call. Start playing with the options offered in the ImageTagger admin panel. By default your search page is the same as your result page. You can also choose to activate the ImageTagger widget to integrate an image search tagcloud in your sidebar, or to manage the search page at a different address for a specific use. Go ! If you are interested in seeing the plugin in action, you might wish to go and have a look here. More information on this plugin utilization can be found there. Finally, if you have any questions, please refer to the FAQ bottom page, section - section Damned, my question is not listed there. Thats all for today - Enjoy !
faq:
What are the prerequisites to run this plugin ? At least one image should be present in your blog. Otherwise the ImageTagger admin panel will inform you that you need to start working on your blog ! Same comment for the tags declared in your blog. How are defined the tags proposed for the image classification ? By default the plugin will use the WordPress tags. Anyhow you can decide to use WordPress categories instead, or to combine tags and categories. Can I create groups of tags ? The tags can be gathered by groups. This grouping does not affect the search, it has only an effect on the tags presentation in the classification panel and in the search form. Grouping the tags by themes provides a more consistent presentation, and makes the appropriate selection faster. Which image formats are supported ? JPEG, GIF and PNG are supported. Are the WordPress gallery themes supported ? Yes, the images managed within WordPress galleries will be available for tagging as any other standalone image. How do I tag the images of my blog ? Having installed the plugin according to the instructions provided on the installation page, two alternatives are offered to tag your images : From your WordPress administration panel, go to Manage > ImageTagger and start associating the first image found to any tag in the Tag Editor ; Or, switch to the Image Explorer mode, navigate to the file you want to tag and click on the file to select it back to the Tag Editor ; Or, assuming your site display captions below each image : from any post or page holding images, click on the image caption (being administrator) and make the association with any tag from the Tag Editor panel. How do I know if an image is tagged or not ? Go the the plugin admin panel and switch the view to Image Explorer mode. This gives you access to a page listing all your site images and the associated tags. You are able to get any image tagging status from this page. Additionally, in case your site theme displays image captions : a tooltip appears if you put your mouse pointer over the image caption in the page or post holding this image. This tooltip displays the tags associated to the image. How do I change the tags already associated to an image ? Go the the plugin admin panel and switch the view to Image Explorer mode. This gives you access to a page listing all your site images and the associated tags. You are able to get any image tagging status from this page. Additionally, in case your site theme displays image captions : click on the image caption (being administrator) and make the association with any tag from the Tag Editor panel. How do I know the total number of images my site holds, and that can be tagged ? This information is the X value displayed in light grey in the upper right part of the ImageTagger admin panel as X/Y/Z. How do I know the number of images I already tagged ? This information is the Y value displayed in light grey in the upper right part of the ImageTagger admin panel as X/Y/Z. How do I know the number of images remaining to be tagged ? This information is the Z value displayed in light grey in the upper right part of the ImageTagger admin panel as X/Y/Z. Consequently Y+Z=X. How do I insert the ImageTagger search form on a page or post ? Edit your page or post with the WordPress editor and insert <?php wpit_multisort_insert(); ?>. Then ensure this page is allowed to run PHP code (refer for instance to the runPHP plugin for this purpose). Can I tag images without having yet inserted the ImageTagger form on my site ? Yes, these are two separate processes. On one hand you build your database by tagging the images, on the other you run queries on this database through to the <?php wpit_multisort_insert(); ?> call. What are the different display modes available to manage the search page ? The search can be presented to the visitor under two different representations than can be mixed together into a third one : a tag cloud display : the tags available for search are presented WordPress fashion ; this representation is compact but suitable for single tag search only a form display : the tags are listed in a form ; the search is done by ticking one or more tags. This makes this representation more adapted for advanced, multi-criteria search, although requiring potentially much more room on your page in case of big tag collection. a combined display : ultimately the 2 display styles can be merged in one ; the tag cloud is displayed above the search form, to bring at the same time the lightness and efficiency of the tag cloud method while proposing the search form for more advanced filtering. Can the visitor switch between the three search display styles ? This possibility is offered by default in the option panel. You can anyhow preset a default search display style, not switchable by visitors.. What are the different display modes available to manage the result page ? This can be done using in three different ways : itemized image list : the results are presented as a vertical list of images displayed with a title and the post they refer to. This mode is suitable for getting the maximum information on the search result, but not adequate when the number of results found is too important. thumbnail gallery : the results are presented in a compact display consisting in a gallery of thumbnail images. More information can be obtained rolling the mouse over each image, although it is not the most adequate for having a direct reading of the image related information. image captions list : this display mode does not display the image and restrict itself to the text information. It will be preferred by visitors looking for specific text information rather than pictorial impression. These three modes are paginated. The number of result per page is an option accessible in the admin panel. Can the visitor switch between the three result display styles ? This possibility is offered by default in the option panel. You can anyhow preset a default result display style, not switchable by visitors. Has the search page to be at the same address as the result page address ? Although this possibility is offered, the search panel can redirect to a different page. See below for the implementation details. How do I manage the calls to wpit_multisort_insert() ? There are three possible implementations Single page implementation : Create a new page (or use existing one if you want). Make sure you can run PHP code from your page text (using plugins like runPHP). From your WordPress editor, enter the single line code : <?php wpit_multisort_insert(); ?> Check the result on the page containing this call. Play with the options offered in the ImageTagger admin panel to adjust the search and result format. Search page different from the result page : Manage the page embedding the search access : Create a new page, for instance http://www.mysite.com/imagelibrary_search, or use existing one if you want. Make sure you can run PHP code from your page text. From your WordPress editor, enter the single line code : <?php wpit_multisort_insert("http://www.mysite.com/imagelibrary_result"); ?>, assuming you want your visitor to be directed and have the results displayed on page http://www.mysite.com/imagelibrary_result. Set the proper options in the Admin Panel to control the Search Format as you want. Check the result on the page containing this call, without running any search yet. Manage the result page : Create a new page matching the argument passed to wpit_multisort_insert(), lets say http://www.mysite.com/imagelibrary_result (or use existing one if you want). Make sure you can run PHP code from your page text. From your WordPress editor, enter the single line code : <?php wpit_multisort_insert(); ?>. Check the result on the page containing this call Set the proper options in the Admin Panel to control the Result Format as you want. Launch a search from your page http://www.mysite.com/imagelibrary_search ; you will be directed to the result page http://www.mysite.com/imagelibrary_result Play with the options offered in the ImageTagger admin panel to adjust the search and result format. Sidebar tag cloud widget : In this case, the call to wpit_multisort_insert() is directly manage by the ImageTagger widget. Refer to the section below for the activation. How do I activate the tagcloud widget ? Before that you need to have defined your ImageTagger result page, as described just above. Then from your site admin page, go to Appearance > Widget and click on Add to add the widget to your sidebar. Configure then the widget in the right column clicking on the Edit link, followed by Done. Do not forget to Save Changes. Pay specific attention to the Result page address parameter. This parameter must be the address of a page of your site that you defined as your ImageTagger result page according to the section How do I manage the calls to wpit_multisort_insert() ? above. If you get the error 404 when clicking on the sidebar tag cloud, likely you misconfigured the Result page field. What is the syntax of the call to wpit_multisort_insert() ? The wpit_multisort_insert() function is a single scalable function, managing the search aspect as well as the result display under various shapes. It can be called with a variable number of arguments. The complete syntax is : <?php wpit_multisort_insert($result_page_url, $num_tags_displayed, $font_size_min, $font_size_max); // $result_page_url = URI of the result page, for instance http://www.mysite.com/imagelibrary_result. Can be absolute (preferred) or relative to the site root // $num_tags_displayed = number of displayed tags - If set to 0 (zero), the complete set of tags is displayed // $font_size_min = minimum font size for the tag cloud // $font_size_min = maximum font size for the tag cloud ?> This function works with default arguments. Therefore it can be called without explicitly passing the complete list of arguments. When an argument is omitted, the behaviour is the following : $result_page_url : when omitted, the result page is the same as the one containing the call to the function $num_tags_displayed : when ommitted, the number of tags displayed is the one defined in the options set in the plugin admin panel. $font_size_min : when ommitted, the minimum font size for the tag cloud is the one defined in the options set in the plugin admin panel $font_size_max : when ommitted, the maximum font size for the tag cloud is the one defined in the options set in the plugin admin panel Standard PHP function call syntax applies for passing the arguments. An argument can be omitted by ignoring it if it is after the last explicit argument, or by passing (empty single quotes) if it is before an explicit argument. Some examples : Basic call, no argument (in fact : omission of all four args) : <?php wpit_multisort_insert(); ?> Result : a search panel (form, tag cloudor combined) is displayed on the page holding this call. The search result is displayed on the same page. The number of tags and font sizes are the ones set in the admin panel. Omission of one argument before an explicit value passing, followed by the omission of the two last args : <?php wpit_multisort_insert(, 10); ?> Result : as well, the search panel and results are displayed on this same page. The number of tags is set to 10, and the font sizes are taken from the admin panel. Explicit passing of all four arguments : <?php wpit_multisort_insert(http://www.photos-dauphine.com/image_search_results, 10, 16, 35); ?> Result : the four parameters are forced to the values passed in, and the corresponding options set in the admin panel are ignored. This example is the one used to format the call for the ImageTagger widget, holding a tag cloud in the side bar. How is my WordPress database affected by this plugin ? ImageTagger does not affect any of the existing WP data tables to avoid any risk of corrupting your database. The association you create between tags and images are stored in a new table wp_term_relationships_img. ImageTagger options set in the admin panel as stored in the wp_options table, in accordance with WordPress plugin development guidelines. What should I do to ensure I backup the image tagging information when I am run backups of my WordPress database ? Make sure you include the wp_term_relationships_img table specifically created by this plugin to keep track of the image tagging information you patiently grew over time. This table should be selected for your backup as well as the standard WordPress database tables, such as wp_options, wp_terms, wp_posts, etc. What are the available languages ? English, French, ... and as much as you can contribute if you are fluent with a language not in this list. More details on the changelog page bottom, in project section. Damned, my question is not listed there !!? Did you make sure you read carefully enough the FAQ I took time and care to build as complete and explanatory as possible ? I do my best to maintain it with the latest questions I got and answers I made to their author. Although this is not my primary job, you might direct your questions to this page, I will do my best to timely answer. To help me answering faster, please provide me with the necessary data : copy paste the footnote line you see at the bottom of your plugin administration panel. Ex : WP ImageTagger 2.4.1 | PHP 5.2.6-1+lenny4 | MySQL 5.0.32-Debian_7etch8-log indicate the steps you follow to reach to issue describe as specifically as possible the issue you could observe (a screenshot is a plus), with any peripheral aspect information related to your site : specific server setup, redirections, number of images, any special setup ... Although I would if I could ... I would not be able to give a hand being only informed that it does not work. Thanks for your cooperation. Ideas or suggestions ... ... are truly welcomed given that it will make this plugin even more valuable to the users community. Spin your suggestions this way.
SubHeading 1.4.2
SubHeading 1.4.2
Author: 36Flavours This plugin uses a custom field to allow sub titles/headings to be added to both posts and pages
Installation:
Here we go: Upload the subheading folder to the /wp-content/plugins/ directory. Activate the plugin through the Plugins menu in WordPress. Place <?php if (function_exists(the_subheading)) { the_subheading(<p>, </p>); } ?> in your template files where you want it to appear, or enable the Automatically append before the content option on the settings page. Add the subheading content using the standard WordPress edit page. The settings for this plugin are found by navigating to the Plugins menu and selecting SubHeading. If you are not within the_loop, you can use get_the_subheading($postID); to fetch the value for a particular page or post.
faq:
How do I enable subheadings on posts? By default subheadings are disabled for posts, you can enable them on the settings page Plugins > SubHeading > Enable for posts as well as pages. What custom field name does it use? The field name used is _subheading, the underscore prefix prevents it from being displayed in the list of custom fields. How can I append the subheading to my RSS feed? Check the RSS option on the settings page Plugins > SubHeading > Append to RSS feeds. What if I want to include shortcodes in my subheading? Check the apply shortcode filters option on the settings page Plugins > SubHeading > Apply shortcode filters. This will apply any existing shortcode filters to the subheading value you have set. How can I prevent the subheading input moving to the top of the edit page? Some plugins will hide the element containing the post title, which is this element that the subheading input is appended to. You can prevent the repositioning of the input via the options page. What are the `Before` and `After` inputs used for? If you are using the Automatically append before the content option, you can include custom content before and after the subheading is displayed. For example, setting Before to <h3> and after to </h3> will wrap the subheading in a h3 tag.
Blog-in-Blog 0.9.5
Blog-in-Blog 0.9.5
Author: Tim Hodson Blog-in-Blog allows you to use the Wordpress platform more as a CMS system, but still have a blog page on your site. Posts in a specific category can be used to feed the special blog page, and can optionally be hidden from the home page. You can have more than one category hidden from the homepage, and subsequently more than one page full of posts
Installation:
How to install the plugin and get it working. Briefly: Upload the blog-in-blog directory to the /wp-content/plugins/ directory (or install via wordpress plugins admin menu) Activate the plugin through the Plugins menu in WordPress Add the shotcode such as [blog_in_blog category_id=1 num=5] to a new PAGE (not post) on your site. Look at the blog-in-blog admin page to find the category_id you need. Optionally, use the admin page to select which category(ies) to hide from the home page. Therefore, any posts with the chosen category are shown only on your page and not on the home page, so if you use Wordpress as a CMS, you now have a blog within a blog. How it works: Add the shortcode in the body of a new PAGE (not post) to select a number of posts within a specified category. This page with the shortcode becomes your blog in blog page (you can of course call it what you will). i.e [blog_in_blog category_id=1 num=10] Must specify the category_id (ids are visible from the blog-in-blog admin page). Optionally specify a number of posts, defaults to 10. You can hide the pagination of the posts. [blog_in_blog category_id=1 num=10 pagination=off] You can optionally hide specified categories from the normal home page and RSS feeds. (There is an admin page for you to do this) You can optionally specify a template to use for this instance of the blog-in-blog shortcode. [blog_in_blog category_id=1 num=5 template="myfile.tpl"] this template must exist in the wp-content/uploads directory. blog-in-blogib_post_template.tpl in the plugins directory is the default template for the posts. You can customize some of the look and feel elements of the post display, including your own css style for the pagination, on the blog-in-blog admin page. Tips The category list in the blog-in-blog admin page ONLY shows categories with posts. You need to create some content first! If you modify the bib_post_template.tpl, I would advise using a copy, as this file will be overwritten if you upgrade. You can specify the name of the template file in either the shortcode (applies to that shortcode only) or on the admin page (applies to all, unless shortcode overrides). We always look in wp-content/uplaods/ for your template file first before looking in wp-content/plugins/blog-in-blog
WPEC Bulk Tools 0.0.2
WPEC Bulk Tools 0.0.2
Author: Todd Halfpenny WPEC Bulk Tools provides bulk management tools for the WP e-Commerce plugin. This version of the tool supports; * The setting of products across a group to the same price
Installation:
Upload the directory wpec-bulk-tools and all its contents to the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress Install and activate the wp e-Commerce plugin The tools can be used via the Menu item that appears in the WP e-Commerce menu section
faq:
Do I need to have wp e-Commerce plugin to use this? Yes, of course.
Tweet Highlights 2.0.1.4
Tweet Highlights 2.0.1.4
Author: Rooh.It Team Anyone can make yellow highlights on any part of your web page and automatically tweet them. (Auto includes a Tiny URL to your page with the highlights.
Installation:
Upload the tweet-highlights folder to the /wp-content/plugins/ directory From the Plugins menu, Activate the Tweet-Highlights plugin (in your WordPress installation) Go to Appearance, then Widgets page (in your WordPress installation) Drag-and-Drop Tweet Highlights (from Available Widgets) to any sidebar box on the right of this page. ENJOY!
faq:
What is a MicroBookmark? Just like a bookmark takes you to a web-page, a MicroBookmark takes you directly to the highlighted part of a page! Why MicroShare? Because it saves time, and quickly & easily draws attention to the most important part of your web page while keeping the context and credibitlity intact. What do you mean MicroSave? When someone highlights a part of a page, it is automatically saved for the user. What platforms are supported other than WordPress? You can add a highlighter to any webpage: on your blog, on your website, in your forums postings, in your classifieds listings, on your Profile Page, in comments you make anywhere on the Internt... Learn more.
Virtual Bangla Keyboard 0.5
Virtual Bangla Keyboard 0.5
Author: Arif Nezami This plugin will add a Virtual Bangla Keyboard in your posts comment form. It will help comment writers to write comments in bangla. The Virtual Keyboard layout is developed by Sabuj Kundu of Amader Projukti. Some java script code is used from Hasin Hayders phonetic parser script to insert character at the cursors current position. And finally customized and gets WP plugins shape by Arif Nezami
Installation:
Upload Virtual Bangla Keyboard.zip to the /wp-content/plugins/ directory and extract the zipped file. Activate the plugin through the Plugins menu in WordPress.
Keyword Statistics 1.0.3
Keyword Statistics 1.0.3
Author: Alexander Müller With this plugin you can optimize your Wordpress blog for search engines. It can automatically generate meta informations (like keywords and description for example) needed for the search engine optimization (SEO) of your blog
Installation:
Just copy the keyword-statistics folder to the plugins directory of your blog. Enable the plugin in your admin panel. Use the options panel to choose the settings you want.
Nouri.sh Newsletter v1.0.8
Nouri.sh Newsletter v1.0.8
Author: Petar Dzhambazov Turn any rss feed to newslette
Installation:
Extract the download archive into a folder (e.g. /nourish) of the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress Activate the widget from wodgets section of admin menu
1 2 3 4 5 6 7 8 9 10 ... 380
Latest Files



2009 Downloadic (c) All rights reserved.
Privacy Policy - DMCA - Contact - Sitemap
Follow on Twitter Subscribe to RSS

By publishing newest softwares and updates on Downloadic, we respect to these and all Master Software Companies
Adobe - Microsoft - IBM - Sun