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 

WP ImageTagger 2.4.1
WP ImageTagger 2.4.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
Installation:
To install the WP ImageTagger plugin just follow these simple steps: 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 go to the Plugins page. 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 Manage > ImageTagger and start associating the first image found to any tag ; Alternatively and assuming your site display captions below each image : from any post or page holding images, click on image captions (being administrator) and make the association with any tag. Display a search form to allow searching by tags in your image database : 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. 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, you can direct your questions to this page, I will do my best to timely answer. 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 ; Alternatively and assuming your site displays captions below each image : from any post or page holding images, click on image captions (being administrator) and make the association with any tag. How do I know if an image is tagged or not ? 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. In case your site theme does not use captions, you can go the the admin panel and switch the view to "Image List" 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. How do I change the tags already associated to an image ? Go to the post or page containing this image. Being logged as administrator, click on the caption to be directed to the ImageTagger tagging panel. In case your site theme does not use captions, you can go the the admin panel and switch the view to "Image List" mode. This gives you access to a page listing all your site images and the associated tags. You are able to edit any image tagging from this page. 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 : (> V2.x) Under development. 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.
WP ImageTagger 2.4
WP ImageTagger 2.4
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
Installation:
To install the WP ImageTagger plugin just follow these simple steps: 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 go to the Plugins page. 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 Manage > ImageTagger and start associating the first image found to any tag ; Alternatively and assuming your site display captions below each image : from any post or page holding images, click on image captions (being administrator) and make the association with any tag. Display a search form to allow searching by tags in your image database : 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. 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, you can direct your questions to this page, I will do my best to timely answer. 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 ; Alternatively and assuming your site displays captions below each image : from any post or page holding images, click on image captions (being administrator) and make the association with any tag. How do I know if an image is tagged or not ? 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. In case your site theme does not use captions, you can go the the admin panel and switch the view to "Image List" 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. How do I change the tags already associated to an image ? Go to the post or page containing this image. Being logged as administrator, click on the caption to be directed to the ImageTagger tagging panel. In case your site theme does not use captions, you can go the the admin panel and switch the view to "Image List" mode. This gives you access to a page listing all your site images and the associated tags. You are able to edit any image tagging from this page. 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 : (> V2.x) Under development. 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 try to regularly update it with the latest sounded 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.
WP-Weather 0.3.7
WP-Weather 0.3.7
Author: Matt Brotherson Weather.com widget - shows forecast information for a city. Displays image related to current conditions. Weather can also be inserted into a post or page via the shortcode [weather_display]
Installation:
Upgrading From A Previous Version To upgrade from a previous version of this plugin, delete the entire folder and files from the previous version of the plugin and then follow the installation instructions below. Uploading The Plugin Extract all files from the ZIP file, making sure to keep the file/folder structure intact, and then upload it to /wp-content/plugins/. See Also: "Installing Plugins" article on the WP Codex Plugin Activation Go to the admin area of your WordPress install and click on the "Plugins" menu. Click on "Activate" for the "WP-Weather" plugin. Plugin Usage Use as a widget or the shortcode [weather_display] on a page or post. You can utilize a location id parameter via the shortcode: [weather_display location_id="75034"]
faq:
Where did my widget go? Due to vast changes in the plugin architecture within Wordpress, a complete re-write of WP-Weather was necessary. Care was utilized to have this as seamless as possible but the old widget method used in WP-Weather was obsolete. You must now re-add the widget to your sidebar via the admin page for widgets.
WP-PhotoNav 0.4
WP-PhotoNav 0.4
Author: Fabian Moser This plugin is a rewrite of a JavaScript snippet called PhotoNav. It provides for easy integration of panaorama pictures in a Wordpress page throught using shortcode. The user can "rotate" the view of the panorama by moving the mouse over the image area
Installation:
Upload the wp-photonav directory to the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress Upload a panorama picture and note the dimensions Include PhotoNav in your post by entering [photonav id=panorama url=/wp-content/uploads/2009/07/panorama.jpg container_width=400 photo_width=3000 height=200]. Remember to use unique id strings and note that the image will be cropped (not scaled) to the given sizes.
faq:
What are possible ids? You can use any valid html id. Every panorama has to have a unique id.
WP-ImageFlow2 1.0.1
WP-ImageFlow2 1.0.1
Author: Bev Stofko With WP-ImageFlow2 you can display nice looking ImageFlow galleries within posts and pages
Installation:
Unzip to the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress Configure the gallery in Settings -> WP-ImageFlow2. For a built-in Wordpress gallery: Use the shortcode [gallery] anywhere in a post or page If you want the image to link to an external url, enter the url in the description field of the image and enable the checkbox in the options. If the description field is left blank the link will go to the full size image. For galleries based on a subfolder: Create a folder for your galleries within your WordPress installation, wherever you want (has to be accessible from the internet). Set the "Path to galleries from homepage root path" in the configuration options Upload your image galleries to a subfolder of this folder Insert a gallery on a page by specifying [wp-imageflow2=FOLDERNAME].
faq:
How do I make a built-in gallery display as ImageFlow? Use the Wordpress gallery shortcode [gallery]. These gallery options may be used: id order (default is ASC) orderby (default is menu_order ID) include exclude size (applies to RSS feed only, medium is always used for the gallery) These gallery options will be ignored: columns itemtag icontag captiontag link Upload your images to your post or page gallery. Enter a title to display, and optionally enter a description that may be used as an external link. How do I make a gallery without using the built-in gallery? Create a directory on your server to contain the galleries Configure the url to the galleries in the settings Create a sub-directory below the galleries directory Upload your images to that directory Insert the shortcode [wp-imageflow2=sub-directory] in a post or page If you have entered the gallery path correctly you will see a list of the sub-directories on the settings page of the administration panel. This gallery style will display the image names as the captions, and will link to the full size image. If you installed Wordpress at the root level, your galleries path might be wp-content/galleries/ If you installed Wordpress under blog, your galleries path might be blog/wp-content/galleries/ Why cant I see any text or slider bar? If you have configured a light colored background for your gallery you should choose black for the slider bar color and a dark color for the text. How many galleries may I place on one page? At this time only one WP_ImageFlow2 gallery may be placed on a page or post.
WP-ImageFlow2 1.0
WP-ImageFlow2 1.0
Author: Bev Stofko With WP-ImageFlow2 you can display nice looking ImageFlow galleries within posts and pages
Installation:
Unzip to the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress Configure the gallery in Settings -> WP-ImageFlow2. For a built-in Wordpress gallery: 1. Use the shortcode [gallery] anywhere in a post or page 2. If you want the image to link to an external url, enter the url in the description field of the image and enable the checkbox in the options. If the description field is left blank the link will go to the full size image. For galleries based on a subfolder: 1. Create a folder for your galleries within your WordPress installation, wherever you want (has to be accessible from the internet). 2. Set the "Path to galleries from homepage root path" in the configuration options 3. Upload your image galleries to a subfolder of this folder 4. Insert a gallery on a page by specifying [wp-imageflow2=FOLDERNAME].
faq:
How do I make a built-in gallery display as ImageFlow? Use the Wordpress gallery shortcode [gallery]. These gallery options may be used: * id * order (default is ASC) * orderby (default is menu_order ID) * include * exclude * size (applies to RSS feed only, medium is always used for the gallery) These gallery options will be ignored: * columns * itemtag * icontag * captiontag * link Upload your images to your post or page gallery. Enter a title to display, and optionally enter a description that may be used as an external link. How do I make a gallery without using the built-in gallery? Create a directory on your server to contain the galleries Configure the url to the galleries in the settings Create a sub-directory below the galleries directory Upload your images to that directory Insert the shortcode [wp-imageflow2=sub-directory] in a post or page If you have entered the gallery path correctly you will see a list of the sub-directories on the settings page of the administration panel. This gallery style will display the image names as the captions, and will link to the full size image. If you installed Wordpress at the root level, your galleries path might be wp-content/galleries/ If you installed Wordpress under blog, your galleries path might be blog/wp-content/galleries/ Why cant I see any text or slider bar? If you have configured a light colored background for your gallery you should choose black for the slider bar color and a dark color for the text. How many galleries may I place on one page? At this time only one WP_ImageFlow2 gallery may be placed on a page or post.
WP-LatestPhotos 1.0.1
WP-LatestPhotos 1.0.1
Author: Andrew Mihaylov WP-LatestPhotos is a WordPress plugin which extends your media library and gives the ability to highlight some of your latest photos. Selected images can be shown in your sidebarâ??or wherever you need them to beâ??through the shortcode or inline PHP code
Installation:
WP-LatestPhotos requires WordPress 2.8 or higher. Download and extract the plugin files onto your hard drive Copy the extracted folder into your WP plugin directory (usually wp-content/plugins) Activate the plugin
faq:
n/a
WP Search Extracts 0.1
WP Search Extracts 0.1
Author: James Stewart When displaying results from a search many people prefer to display the section of the resulting post/page that includes the match, rather than the full post or standard excerpt. This plugin adds a filter to process search results and only display the content either side of the first result for the given search
Installation:
Upload wp-search-extracts to the /wp-content/plugins/ directory Activate the plugin through the Plugins menu in WordPress
1 2 3 4 5 6 7 8 9 10 ... 39
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

sextubesi
moo moo 38
moo moo 38
moo moo 38
keez moviescom
gtabatman
gtabatman
uploadedto link
devian ckip
physxloaderdll dragon age
freesexpk
indianprono
how does pingfm work
gta4downloadcom
w3battle 124