WP Star Rating WordPress Plugin

WP Star Rating WordPress Plugin

Free WordPress Plugins, Plugins
WP Star Rating WordPress Plugin allows you to set up rating and review system for posts, pages and products in your blog. You can set many options for displaying the rating stars displaying top ratings and other statistics generated by the plugin. Plugin includes advanced settings panels that will allow you to control many aspects of rating. Plugin supports use of cache plugins and dynamic loading of data using ajax. WP Star Rating WordPress Plugin have these features. Features: 3 shapes are available in 5 colors to fit most variety of themes Allows to adjust rating between 3-10 Turn on/off display of amount of votes Display before or after content Allows to select for what types of content rating will be displayed Allows to disable rating for specific entry Choose alignment…
Read More
Woocommerce Social Buttons Plugin

Woocommerce Social Buttons Plugin

Free WordPress Plugins, Plugins
Woocommerce Social Buttons Plugin is a simple plugin to add most popular social like+share buttons to your Woo-commerce store products. You can also customize setting for following features: You can hide /show social share button on posts/product detail page. You can set social share button vertical and horizontal. You can add social share button facebook,google plus, linkedin share button, twitter share button. You can also use shortcode for page, post, events, product. Example : for editor use this shortcode [woocommerce_social_buttons]. Place <?php echo do_shortcode( '[woocommerce_social_buttons]' ); ?> in your templates Download Plugin
Read More

WordPress 4.1.2 Security Release & Severe Security issue with WordPress Plugins

News, Plugins, WordPress
There is a critical security issue has been detected recently with WordPress and WordPress team have released a new version. WordPress 4.1.2 is now available, so please update all your blogs immediately. All previous versions including 4.1.1 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by Cedric Van Bockhaven and fixed by Gary Pendergast, Mike Adams, and Andrew Nacin of the WordPress security team. We appreciated the responsible disclosure of these issues directly to WordPress security team. For more information, see the release notes or consult the list of changes. Download WordPress 4.1.2 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to…
Read More
WP EasyScroll Posts

WP EasyScroll Posts

Free WordPress Plugins, Plugins
Easy and fast load plugin to append next page of posts to your current page when a user scrolls to the bottom. "WP EasyScroll Posts" plugin has ability to load content via AJAX within the current page or content area as you scroll down. The new content can be loaded automatically each time you scroll to the end of the existing content. It works by reading the next (and previous) links of your existing server-side pagination and load these pages via AJAX when the users scrolls to the end of the page. Translations * English(US) (en_Us) * French (fr_FR) If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to Us so that We can bundle it into…
Read More
Top 10 Social Media Plugin for WordPress

Top 10 Social Media Plugin for WordPress

WordPress
Social Media has become the next big thing and it’s very important for bloggers or website owners to integrate social sharing buttons on their blog or website.Using social bookmarking & sharing buttons you will let your readers quickly share your blog post on their favorite social networking sites.WordPress Social Plugins are very important for the extensibility of your WordPress blog or store. Many WordPress Plugins exist that allow you to add different Social Networks.This will help you to drive more traffic from social media sites and helps in search engine ranking. So while using WordPress you probably want your content to be easily shared on those social networks, and constantly expand your presence and social impact by making it easy for visitors to join your network of social presence.There are…
Read More
Adding New FileTypes To WordPress Media Library

Adding New FileTypes To WordPress Media Library

WordPress
WordPress CMS has a set of pre-defined file types that allow you to upload in the media library. This is due to a great security feature of WordPress CMS. But there may be many times where you’d like to add new file types that are not in the list of allowed by WordPress, or some time you need to only allow a fewer extensions to be uploaded. This can be done by using a small hook of WordPress. If you’d like to add a specific file type that can be uploaded to WordPress via the media library, you can insert this PHP code in your theme functions.php file: function tar_mime_types($mime_types){ $mime_types['tar'] = 'application/x-tar'; //Adding tar extension return $mime_types; } add_filter('upload_mimes', 'tar_mime_types', 1, 1); But if you want to remove any…
Read More

How to show Products collection in Magento?

Magento
You can use below code to get all Products collection in Magento on any of Magento page: $_productCollection = Mage::getModel('catalog/product')->getCollection(); $_productCollection->addAttributeToFilter('status', 1); //enabled or not $_productCollection->addAttributeToFilter('visibility', 4); //catalog, search enabled or not foreach ($_productCollection as $_product) { $model = Mage::getModel('catalog/product'); $product_id = $_product->getId(); $_product = $model->load($product_id); $_image=Mage::getModel('catalog/product')->load($product_id); <div class="feature-product-price"><?php echo $_product->getPrice(); ?></div> <div class="feature-product-name"><?php echo $_product->getName(); ?></div> <div class="feature-product-image"><a href="<?php echo $_product->getProductUrl() ?>"><img src="<?php echo Mage::helper('catalog/image')->init($_image, 'image')->resize(200,200); ?>"></a></div> </div> <?php } [sam_zone id="1" codes="true"] If you want Product Collection with specific ids then use below code ; resize(200,200); >"
Read More
VI Random Posts Widgets Plugin

VI Random Posts Widgets Plugin

Free WordPress Plugins, Plugins
Vi Random Posts Widget plugin allows us to create a custom random or category posts list as a widget. It gives you a list of random posts via shortcode or widget with thumbnail, excerpt and post date, also you can display it from your custom post type or from a post category. Features WordPress 4.1 Support. Allow you to add a URL in widget title Display thumbnails and customizable size. Display excerpt of customizable length. Display from all, specific or multiple category. Display your post date with customomizable format. Display your post author. Display post comment counts Display your custom Post types. User can add a custom css class in widget. Add custom html or text before and/or after posts lists. [sam id="5" codes="true"] Rate Us / Feedback Please take…
Read More

How to Configuring phpMyAdmin on Windows Azure?

News, PHP Scripts
phpMyAdmin is a web based tool for administering MySql databases. It can be used to create, edit,delete tables, export/import/backup data and many other tasks. phpMyAdmin is a adequate tool for all MySql db administration needs in Windows Azure. This post describes how to install and configure phpMyAdmin on Windows Azure Web Sites. 1. Create an empty site First you’ll need to create a new site in Windows Azure. Create an empty site using “Quick Create” option in Windows Azure Portal: 2. Link the site with a MySql database If you already have a MySql database or need to create one then use the Linked Resources page to link that database with your site. Once the database is linked get the connection string by using the “View conneciton strings” link on the site’s dashboard page: You will need the information…
Read More

Localize Your WordPress themes and plugins with GetText

WordPress
Localize Your WordPress themes and plugins using GetText with some easy steps. If you want your blog to be in a number of languages, the your theme and texts in plugins should be localized, as well as the post contents. We’ll show you how you can achieve this with the GetText package. Localizing your plugins allows you to reach the widest audience possible.It only takes a little effort to make your plugins & themes translation ready and is easier to do. GetText and WordPress GetText is a a text translation utility. It’s free and comes built on any web server. WordPress makes comprehensive use of it and all WordPress localization is based on GetText. There are a few steps to localization with GetText: Wrap each text in a GetText call…
Read More