How to display new products on home page in Magento

Go to “CMS – Manage Pages” and select “Home Page” from the list of pages.

Use this code snippet into your design page layout on your front page:

<reference name=”content”>
<block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_new” template=”catalog/product/new.phtml” after=”cms_page”>
<action method=”addPriceBlockType”><type>bundle</type><block>bundle/catalog_product_price</block>
<template>bundle/catalog/product/price.phtml</template></action></block>
</reference>

Note : You must have some new products in your catalogue for anything to show when you do this. In this context new doesn’t mean that you’ve recently added them; only products explicitly marked as new using ‘Set Product as New from Date’ and ‘Set Product as New to Date’ options in the ‘General’ product information page in the admin tool will be shown.

Create Admin Roles in Magento

Follow these steps to create admin roles in magneto :

1- From the Admin Panel, select System > Permissions > Roles.
2- Click the [Add New Role] button.
3- Provide a Role Name [i.e. SEO]
4- Select the Role Resources option in the Role Information panel on the left.
5- Select the features you would like to give this user access to.
6- Click the [Save Role] button to save your changes.

WordPress Classifieds Plugins

Here I am posting usefull classified plugins.

1- Another WordPress Classifieds Plugin (AWPCP)
This plugin is Great for increasing retention to your site, adding revenue for your business, and creating customer interaction and this plugin includes much more options, it is highly configurable and customizable according to the needs of your website. You can can found the full feature list on plugin official WordPress website section. You can check AWPCP website for more information.

2- WP Classified
This plugin allows you to add a simple information & advertising blackboard or classified page in to your wordpress blog. The functionality is basic and very easy to use. Note that this plugin will greatly help you adding classifieds section as a feature for your website. It is not designed to make classified ads the primary resource of your WordPress based website. You can check WP Classified website for more information.

3- Your Classified Ads
Your Classified Ads is a plugin that adds classified ads to your WordPress blog.
Key features
Uses custom post types and custom taxonomies.
Multi-taxonomies searches
Powered by One Quick Post; which means : frontend posting, guest posting, geo-search ads, file upload, author’s notifications,…
BuddyPress compatible. (Soon : specific BuddyPress features)

For information check the plugin official page

Add sidebar to post view in Twenty Eleven theme

By default Twenty Eleven doesn’t display a sidebar on the post view page, but this can be added fairly easy. We have two options for it :

1- Doing it manual changes on the code.

For this open single.php and add near the bottom

<?php get_sidebar(); ?>

before

<?php get_footer(); ?>

and add the below code on the functions.php file for your theme

<?php
add_filter(‘body_class’, ‘blacklist_body_class’, 20, 2);
function blacklist_body_class($wp_classes, $extra_classes) {
if( is_single() || is_page() ) :
// List of the classes to remove from the WP generated classes
$blacklist = array(‘singular’);
// Filter the body classes
foreach( $blacklist as $val ) {
if (!in_array($val, $wp_classes)) : continue;
else:
foreach($wp_classes as $key => $value) {
if ($value == $val) unset($wp_classes[$key]);
}
endif;
}
endif; // Add the extra classes back untouched
return array_merge($wp_classes, (array) $extra_classes);
}

2- Option is to use simply Twenty Eleven Theme Extensions plugin
This plugin is Easy to use customizations for the default theme Twenty Eleven
add sidebars back into your blog pages, and quickly change individual color settings.

Plugin link is here : http://wordpress.org/extend/plugins/twenty-eleven-theme-extensions/

Google Custom Search WordPress Plugin

With wordpress Google custom search plugin, wordpress user can boost the search functionality for his websites/blogs.
WordPress has a relatively good search functionality but doesn’t match keywords that well. WordPress search functionality display results ordered by date and not by its relevance to the keywords.

Here is a very good Google custom search plugin I found on the Internet and used on this site.

Click for Google Custom Search plugin

This plugin is very flexible and you can configure the both the search box and the search results.
Google Custom Search widget’s search box can be displayed as either a widget or placed anywhere in the code.

The search results can be displayed in one of three formats.

As a pop-up resizable dialog.
Within the widget, under the search box.
Displayed anywhere in the code.