Thứ Tư, 12 tháng 9, 2012

Let Prestashop make your web more professional!




With the objective towards internet shops, the purchasers use some sort of web-based while browse for a web site which these people buy some sort of provided goods. Involving only fact definitely encouragement alone regarding the web based purchasing internet sites of plan an individuals websites in such a way that the purchasers will probably achieve some sort of web site while begin applying the shopping together with the items. Together with the different features to become coming away from the specialists wearing web site designers, some sort of web templates while designs has functioned miracles regarding the online stores.

Through Prestashop designs, the public would be able to operate own web sites in order to get a fantastic while eye-catching design and style in order that some sort of buyers would be able to get one of the best purchasing experience. Furthermore, these supplements are typically exhibited wearing photo slides while cascading kinds, may be zoomed these types of themes are typically established lack of browser. Entry law firm while in return law firm functions have become really very easy of know in these themes.

Due to the fact the best themes currently created applying the open source web templates, stink bugs have the ease of gets while install, pretty organizations have become trying out the best sorts towards themes in their web pages making sure that some sort of consumers incredibly super buying be subjected to.
You are going to numerous sites while permalinks to become accommodated in these online stores because of the best designs, whom tends to make the actual simple for some sort of ecommerce websites to contain the majority of00 elements. Regarding the consumers, the best kinds towards goods tend to be rather eye-catching since they consider large alternatives to have an individuals available alternatives. You are going to prestashop designs which has been applied of fit a great amount of products. Each of some sort of designs are typically downloaded while lower adjustments are typically included of allow some sort of web owners of include unique characteristics.

E-commerce software features, check gateways towards numerous differences, Photoshop, plus more are typically in observed in these sites but. Furthermore, the best businesses permit some sort of buyers of select goods promptly after viewing all involved such as alternate ways. Acquiring smarter search regarding elements, some sort of goods experience of the shoppers is very much largely increased because of which go back many times to our purchasing websites, a lot of raising an individuals revenue in so doing some sort of attractiveness regarding varieties towards themes.

Thứ Ba, 10 tháng 4, 2012

What is Store Manager?

Harness the power of store management and identify your business needs together in a single, easy-to-use Store Manager for PrestaShop. You save your time, sweat and money by simply allowing the Store Manager to operate your business.

It is ultimately responsible for keeping all your store data at one place for easy and quick access. Consequently, you don’t need to reinvent the wheel, since all the necessary resources are already at your disposal right here and right now.

Keeping track of all your product information can give you a hard time.

Store Manager for PrestaShop is initially designed to administer all the data storage, automate all the daily store routines and trace your customer activity.

With the easy-to-use interface you can ensure proper display of inventory and handle all the basic operations:

Easily edit category position and arrangementEdit, delete or clone any productDownload several pictures at once in few secondsDrag and drop photosImport and export large amount of items to/from Excel and HTMLChange the price of several products at once (e.g. cut all prices by 5 or 10%)Manage psychological pricing (e.g. reducing the price from $10 to $9.99 will attract more customers)Connect to several databases to run several shops from the same back-officeManage attribute and group setsEasily restore your databaseManage your products offlineAnd much more...

Get additional features for Store Manager using powerful PrestaShop Addons:

See the benefits of using Store Manager for Prestashop in our Product Sheet

If you want to get the most out of your business and have more free time on your hands, then Store Manager for PrestaShop will work quite well for you.

Watch the introductory video to get more information on the additional features for your online store.

Put the power of Store Manager for PrestaShop work for you today!


View the original article here

WordPress Lazy Load Plugins: Easy Way to Improve Your Site’s Performance

A lazy load image sounds bad, doesn’t it? But it’s a good thing that will make your site run faster. That’s not new for you that images do hurt the page load time more than anything else. Probably you already looked for a decision, maybe you even tried to use smaller images or even reduced their quality, still none of these things is needed.

Think about, your site has pages with huge length, it means that your users have to scroll down a while so they do not see the whole page immediately after they come there. Wouldn’t it be nice to load only those pictures that come within the visible part of a screen? After they have read the text or have enjoyed all pics, right in that moment they starts scrolling and other pictures start loading.

This technology is called lazy loading and it’s opposite to preloading images. We preload images for a lot of reasons. The classic example is in that old school JavaScript (and even CSS) rollovers, where we preload the rollover image so that there’s no delay when they’re needed. Here’s a round-up of 10 awesome WordPress Lazy Load plugins that would fasten your site and save the bandwidth. Happy optimizing!

***


The plugin helps improve page load time and server bandwidth. Images are loaded only when they become visible to the user.

12345678910111213(function($) {$( 'img[data-lazy-src]' ).bind( 'scrollin', { distance: 200 }, function() {var img = this,$img = jQuery(img),src = $img.attr( 'data-lazy-src' );$img.unbind( 'scrollin' ) // remove event binding.hide().removeAttr( 'data-lazy-src' ).attr( 'data-lazy-loaded', 'true' );;img.src = src;$img.fadeIn();});})(jQuery);

***

jQuery Image Lazy Load WP adds jQuery lazy loading to images.

(function($){$.fn.lazyload=function(options){var settings={threshold:0,failurelimit:0,event:"scroll",effect:"show",container:window};if(options){$.extend(settings,options);}var elements=this;if("scroll"==settings.event){$(settings.container).bind("scroll",function(event){var counter=0;elements.each(function(){if($.abovethetop(this,settings)||$.leftofbegin(this,settings)){}else if(!$.belowthefold(this,settings)&&!$.rightoffold(this,settings)){$(this).trigger("appear");}else{if(counter++>settings.failurelimit){return false;}}});var temp=$.grep(elements,function(element){return!element.loaded;});elements=$(temp);});}this.each(function(){var self=this;if(undefined==$(self).attr("original")){$(self).attr("original",$(self).attr("src"));}if("scroll"!=settings.event||undefined==$(self).attr("src")||settings.placeholder==$(self).attr("src")||($.abovethetop(self,settings)||$.leftofbegin(self,settings)||$.belowthefold(self,settings)||$.rightoffold(self,settings))){if(settings.placeholder){$(self).attr("src",settings.placeholder);}else{$(self).removeAttr("src");}self.loaded=false;}else{self.loaded=true;}

***

The plugin makes your site work faster and saves bandwidth. Uses jQuery and degrades gracefully for non-JS users.

123456789101112131415161718192021222324252627282930313233343536_placeholder_url = plugins_url( '/img/placeholder.gif', __FILE__ ); if (get_option( 'bjll_include_css', 1 )) {add_action( 'wp_print_styles', array($this, 'enqueue_styles' ) );} if (get_option( 'bjll_include_js', 1 )) {add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );} $theme_caller = get_option( 'bjll_theme_caller' );if ( $theme_caller == 'wp_head' ) {add_action( 'wp_print_scripts', array( $this, 'output_js_options' ) );} else {add_action( 'wp_print_footer_scripts', array( $this, 'output_js_options' ) );} add_action( 'wp_ajax_BJLL_get_images', array( $this, 'get_images_json' ) );add_action( 'wp_ajax_nopriv_BJLL_get_images', array( $this, 'get_images_json') ); add_filter( 'the_content', array( $this, 'filter_post_images' ), 200 ); if ( intval( get_option( 'bjll_filter_post_thumbnails', 1 ) ) ) {add_filter( 'post_thumbnail_html', array( $this, 'filter_post_thumbnail_html' ), 10 );}}

***

The plugin provides lazy loading for widgets to improve page loading. Use on slow widgets with content from Facebook, Twitter, AdSense.

'; // #lwl-widget-contents } } add_action( 'wp_print_styles', 'LWL_wp_print_styles' ); /** * Enqueues styles for non-admin pages. */ function LWL_wp_print_styles() { global $LWL_version; $settings = LWL_get_settings(); if ( !isset($settings['load_widget_css'] ) ) { _LWL_update_settings( $settings ); $settings = LWL_get_settings(); } if ( !is_admin() ) { wp_enqueue_style( 'lazy-widget-loader', LWL_PLUGIN_URL . 'css/lwl.css', array(), $LWL_version ); if ( $settings['load_widget_css'] ) { wp_enqueue_style( 'lazy-widget-loader-css', LWL_PLUGIN_URL . 'css/lwl-widget.css', array(), $LWL_version ); } else if ( $settings['generate_widget_css'] ) { wp_enqueue_style( 'lazy-widget-loader-css', LWL_PLUGIN_URL . 'css/lwl-widget-css.php', array(), $LWL_version ); } } } add_action( 'admin_print_styles', 'LWL_admin_print_styles' ); /** * Enqueues scripts for admin pages. */ function LWL_admin_print_styles() { global $LWL_version; if ( is_admin() ) { wp_enqueue_style( 'lazy-widget-loader-admin', LWL_PLUGIN_URL . 'css/lwl-admin.css', array(), $LWL_version ); } } //add_action( 'admin_print_scripts-settings_page_plugin-admin-page', 'LWL_admin_print_scripts' ); add_action( 'admin_print_scripts', 'LWL_admin_print_scripts' ); function LWL_admin_print_scripts() { global $LWL_version; wp_enqueue_script( 'lazy-widget-loader-admin', LWL_PLUGIN_URL . 'js/lazy-widget-loader-admin.js', array( 'jquery' ), $LWL_version ); } add_action( 'wp_head', 'LWL_widget_alter', 100 ); /** * Widget customization callback. * Alters widgets to add our customized options. */ function LWL_widget_alter() { global $wp_registered_widgets; foreach ( $wp_registered_widgets as $id => $widget ) { if ( ! isset( $wp_registered_widgets[$id]['LWL_original_callback'] ) ) { array_push( $wp_registered_widgets[$id]['params'], $id ); $wp_registered_widgets[$id]['LWL_original_callback'] = $wp_registered_widgets[$id]['callback']; $wp_registered_widgets[$id]['callback'] = 'LWL_widget_alter_callback'; } } } /** * Widget customization callback. * Wraps itself around the original callback. */ function LWL_widget_alter_callback() { global $wp_registered_widgets; $params = func_get_args(); $id = array_pop( $params ); $original_callback = $wp_registered_widgets[$id]['LWL_original_callback']; ob_start(); call_user_func_array( $original_callback, $params ); $widget_content = ob_get_contents(); ob_end_clean(); $settings = LWL_get_settings(); if ( isset( $settings[$id]['use'] ) && $settings[$id]['use'] ) { if ( !function_exists( "IX_LL_lazyload" ) || ( isset( $settings[$id]['use-itthinx-lazyloader'] ) && ( $settings[$id]['use-itthinx-lazyloader'] === false ) ) ) { _LWL_set_widget( $id, $widget_content ); $widget_content = '

***

Ai Loader – jQuery Lazy Load plugin enables images really lazy loading. The plugin delays the loading of images in long web pages by not loading immediately the images that are outside of the viewport (visible part of the web page).

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 jQuery(document).ready(function($){  if (navigator.platform == "iPad") return;  jQuery("img.wp-post-image").lazyload({  effect:"fadeIn",  placeholder: "$placeholdergif"  }); });  EOF; }'

***

This plugin is inspired by jQuery lazyload, however this one focus to make sure that all browsers to lazy load all image src attribute. Which means using YS images lazyload plugin, your images will be loaded lazily in all browsers. That would be a great thing to save your bandwidth.

(function(a){var b={init:function(d){return this.each(function(){a(this);var c=a.data(this,"YSlazyload");c?c._init.call(this,d):(a.data(this,"YSlazyload",b),b._init.call(this,d))})},_init:function(d){var c=this,f=a.extend({},a.fn.YSlazyload.settings,d);b.reposition.call(c,f);a(window).bind("scroll.YSlazyload resize.YSlazyload",function(){b.reposition.call(c,f)}).triggerHandler("scroll.YSlazyload");return this},getHolder:function(){var d=a.extend({},a.fn.YSlazyload.settings);return a(this).filter("["+d.srcHolder+"]")},reposition:function(d){var c=b.getHolder.call(this),f=a(window).height(),g=a(document).scrollTop();a(document).height();var h=d.holderTop;c.each(function(){var e=a(this),b=e.offset();0===e.height()&&(e.width(2),e.height(2));if(0***

This plugin allows you to lazy load your video’s by inserting “Lite YouTube Embeds”. This looks and feels like an embedded YouTube but only call the actual “fat” Flash or HTML5-player when clicked on.

var bU='".$lyteSettings['path']."';style = document.createElement('style');style.type = 'text/css';rules = document.createTextNode('.lyte img {border:0px !important;padding:0px;spacing:0px;margin:0px;display:inline;background-color:transparent;} .lL {margin:0px 0px 10px 0px;} .lyte {margin:5px 0px;} .lP {background-color:#fff;} .pL {cursor:pointer;text-align:center;overflow:hidden;position:relative;margin:0px;} .tC {left:0;top:0;position:absolute;width:100%;background-color:rgba(0,0,0,0.6);} .tT {padding:5px 10px;font-size:16px;color:#ffffff;font-family:sans-serif;text-align:left;} .ctrl {position:absolute;left:0px;bottom:0px;}');if(style.styleSheet) { style.styleSheet.cssText = rules.nodeValue;} else {style.appendChild(rules);}document.getElementsByTagName('head')[0].appendChild(style);";echo "";}

***

WP Image Preloader is a plugin for WordPress made to help you speed up your blog. It pre-loads images using the Javascript technique.

1234567891011(function(jQuery) { var cache = []; jQuery.preLoadImages = function(){ var args_len = arguments.length; for (var i = args_len; i--;) { var cacheImage = document.createElement('img'); cacheImage.src = arguments[i]; cache.push(cacheImage); } }})(jQuery);

***

With this plugin your images will be loaded after your visitors scroll down the page. That means your users’ browsers don’t have to load images they don’t wish to view.

123456789101112131415var LazyLoad = new Class({  Implements: [Options,Events],  /* additional options */ options: { range: 200, image: 'blank.gif', resetDimensions: true, elements: 'img', container: window },  /* initialize */ initialize: function(options) {

***

Basic use of this plugin is lazy loading of content and performing cross-blog actions. It also includes an example of lazy loading widgets plugin, though it is aimed on the developers who would like to built on top of this functionality.

set( 'api_key', SECRET_KEY );

***

When you're just starting out as a freelancer, it's easy to fall into the habit of taking any assignment that comes right away, and one of those brought Alex to TemplateMonster. Now he joins the ranks of the blog columnists who are eager to write more and more.

This entry was posted on Friday, April 6th, 2012 at 2:00 am and is filed under Usability tips, WordPress Themes. You can follow any responses to this entry through the RSS 2.0 feed.Responses are currently closed, but you can trackback from your own site.


View the original article here

PrestaShop is off to take a bite out of the Big Apple: sign up for free on the Barcamp website!

Sign up for Barcamp 5 for free and have a great day out in the world of e-commerce! Get the best advice from renowned experts, check out PrestaShop’s latest innovations with the whole community (mobile app, version 1.5 etc.) and chat to software developers on the PrestaShop team. The golden ticket for your online shop!

C:\Program

go to Get your free tickets now


View the original article here

5 Best-Selling PrestaShop Themes of Winter 2012

TemplateMonster’s team always puts customer’s interests first: we should know all your tastes and preferences to meet your requirements to their fullest. That’s why we have made a deep monitoring and detected 5 PrestaShop Themes that turned out to be bestsellers this winter. We hope it will be interesting for you to know what other customers purchase and what kind of designs are the most popular. We’re ready to reveal the secret of success. These templates are very diverse, still have some common characteristic features: they possess one-of-a-kind, highly functional design and magnetic force that attracts the buyers, promoting your business. Now you may use one of them to create a prosperous eCommerce store or discover an absolutely new PrestaShop design which may appear in our next top rating.

* * *

Computers Store Prestashop Theme

Here goes the first item in our rating. The template was developed as a computer store, and there’s no wonder that it takes the leading position among our customers as the design looks very clean, smart and accurate. The template has enough white space which brings all attention to the offered products. All buttons and design elements are restrained in the same high-tech computer style. The navigation is easy and user-friendly. Top sellers are presented in a multi-column structure, featured products are shown in a slider gallery turning users’ attention and warming up their interest.

5 Best Selling PrestaShop Themes of Winter 2012

* * *

Furniture Store Prestashop Theme

The second item of our bestsellers’ list was developed for furniture store owners and the fact that they appreciated it is really flattering. Let’s try to solve the riddle of its popularity. The main secret is that this template corresponds to the latest design trends. Developed on a black background, it looks very contemporary and professional. A fly-out menu supplied with furniture images is really worth mentioning. Due to such thought-out execution, navigation becomes even more comforting. All design elements along with the featured slider blend into the general style and create a holistic effect.

5 Best Selling PrestaShop Themes of Winter 2012

* * *

Spare Parts Prestashop Theme

Just have a look at this bright, bold and a little bit aggressive design. A car owner browsing the web for spare parts will never miss such kind of store. Most of the drivers are crazy about speed, luxury autos, and tuning. This design conveys the same spirit of speed-racing and freedom. Despite the loud color solution, all design elements look quite appropriate and harmonious. Featured products are presented in separate cells of irregular form. Links to ‘specials’ are provided in a widgetized sidebar. A slider under the navigation panel shows the images of new expensive breathtaking autos.

5 Best Selling PrestaShop Themes of Winter 2012

* * *

Drug Store Prestashop Theme

The next template, contrasting with the previous one is dedicated to healthy lifestyle and products for health. It astonishes with fresh green hues, making the viewer feel comfort and tranquility. Such eco design effects the users’ subconsciousness, the customer tunes to the positive changes and believes that the medicine, bought from this online drug store will make them healthy and good-looking. The template looks very natural – large images of the products come with brief descriptions. Widgetized sidebars are wrapping the layout from both sides of the content area. Banners displayed in the slider are wittingly supplied with motivating slogans.

5 Best Selling PrestaShop Themes of Winter 2012

* * *

Health Life Prestashop Theme

The last, but not the least template of our top 5, continues the idea of healthy lifestyle and products for health. The item enjoys a deserved popularity not by chance. It is a result of well coordinated professional work of TemplateMonster’s team. What singles out this online store among hundreds of others? The template possesses textured background with gentle curves, finding their prolongation in the header. The usage of exquisite fonts unobtrusively creates the impression of elegance. Plus, the images of gorgeous smiling women in the slider fill the user with optimism and positive emotions.

5 Best Selling PrestaShop Themes of Winter 2012

* * *

Helga Moreno jumped on TemplateMonster's board in 2012. She believes that great posts born in the creative mind and filling the blank pages should be read without effort from the side of a reader.

This entry was posted on Thursday, April 5th, 2012 at 1:30 am and is filed under Prestashop. You can follow any responses to this entry through the RSS 2.0 feed.Responses are currently closed, but you can trackback from your own site.


View the original article here

Common Fate Principle in TemplateMonster’s Templates [Die Gestalt im Design]

Recently we initiated a series of posts covering the theme of theoretical application of Gestalt psychology in web design. We’ve already described three principles: Symmetry, Similarity and Proximity. This article is dedicated to the law of Common fate in web design, the forth principle of Gestalt classification.

The common fate law is vital to our perception of how things around us are or aren’t related to one another. We use this principle in every aspect of our lives, not even noticing it. Without our perception and reliance on this principle, we could lose our lives at any moment (here sounds dramatic music).

The common fate is one of six visual perception laws that are theorized by the Gestalt psychology. Paul Martin Lester, the author of Visual Communication, gave the following definition to this law:

The fourth law of Gestalt psychology is the law of common fate. A viewer mentally groups five arrows or five raised hands pointing to the sky because they all point in the same direction. An arrow or a hand pointed in opposite direction will create tension, because the viewer will not see it as part of the upwardly directed whole.

Outlining this definition we can say that people are able to group objects with the same moving direction as a collective unit. In web design moving objects are created with the help of Flash, JS and HTML5 technologies. Due to our nature we are able to perceive dynamic objects better than static ones, because moving objects are very conspicuous, that’s why they are better noted.

The examples given below visualize the essence of this principle:

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common fate principle presumes that as soon as the movement is noted, the relations between objects start to develop. A good example is a drop-down menu that can be seen almost on every website. The way how sub-menu items move into visibility shows us that the grouped links are related (within each group).

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Tooltips are the next thing that forms important relationship. Tooltips always contain secondary information that gives a clue to the user about any functions of the website. It won’t take long for a site user to put together (subconsciously) the relationship between moving/hovering the cursor and bringing up new information results in the following statement – pointer plus information all moving together is a useful association.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

In general, the common fate principle is a pretty simple concept; it usually refers to the directional lines in the design of the layout. On this template, for example, the group of people is “high-fiving” and this creates the directional line of common fate; together they are having a common fate or destiny.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Other examples of groups of similar shapes that are aimed in the same direction. On this template you can see the man with a gun and on the background there is some kind of a monster whose shape resembles the man on the foreground.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Let’s have a look at some more examples. Have you ever noticed how cars and other vehicles are being pictured? If a car is driving to the right, the law of common fate says that the directional line is pointing to the right. And again, if a pictured car is aimed towards the left, on the image that is a part of a design, the directional line is being aimed to the left. On the example below, the car is headed to the right, so the image of the car should be placed towards the left side of the layout because we read from left to right. This pattern is applicable to anything else.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

You may be wondering why common fate can be important for the designer. This is pretty simple: if two objects are pointed in the same direction, the directional lines become dominant in the layout, so if an object is moving or is aimed at the same direction, the designer puts needed message at the point of the destination. This method is successively used in Facebook’s Reveal Tabs. As you know the function of the fan-gate is to generate Likes by attracting/guiding the user directly to the like button, on the following examples you can see how this function is fulfilled.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

This template has a similar function as a fan-gate, here we can see a woman who is pointing her finger at the text with a button “Read more”.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

As every rule has an exception there are sometimes created designer decisions where the common fate principle is used not exactly as it is supposed to, and this leads to visual collisions and user frustration. This might be caused by the intense layout.

Common Fate Principle in TemplateMonsters Templates [Die Gestalt im Design]

***

Humans tend to perceive elements moving in the same direction as being more related than elements that are stationary or that move in different directions.

For sure design is a result of creativity. When you start “creating” you can get inspiration from the recognized visual rules that have been studied by the expert psychologists and that would be helpful when building your own methodology. The basic principles of Gestalt psychology and design are very similar – the ideal design decision should contain balance, visual proportion and color dominance. These three will make a difference in the final result of your design.

In the end we would like to say that the law of common fate is very important and needs to be used in all kinds of mass-media including television and advertising. When used right, the common fate law will make the user read and understand information correctly and the designer or writer or any other creator will benefit from it.

And one more, as well as other Gestalt principles we use the common fate automatically not even noticing its functions. Try to quantify this principle in your life and find out how it affects you. The more you understand how this principle works the better you’ll be able to use it in your work.

When you're just starting out as a freelancer, it's easy to fall into the habit of taking any assignment that comes right away, and one of those brought Alex to TemplateMonster. Now he joins the ranks of the blog columnists who are eager to write more and more.

This entry was posted on Wednesday, April 4th, 2012 at 3:24 am and is filed under DesignFloat, Usability tips. You can follow any responses to this entry through the RSS 2.0 feed.Responses are currently closed, but you can trackback from your own site.


View the original article here

Social Networking Plugins for Ecommerce Sites

Published on 8 March 2012 by Cat M.

If you’re not already using social media to promote your online store, then now is the time to start!  To help you integrate social networking into your ecommerce site, I’ve rounded up some of my favourite social media plugins, modules, and extensions for PrestaShop, OpenCart, and Magento.

All of these tools are either free to use or offer free trials for a limited time, so you can try them out at no cost.  I’ve found some amazing plugins designed to help you promote your business using social media, including tools to help you sell your products on Facebook, offer special discounts to customers who share their latest purchases with their friends, enable users to comment on your online store using their existing Facebook accounts, and so much more!

This free PrestaShop plugin enables you to integrate your online store with social media, so people can purchase your products directly through Facebook.  With Beetailer, you don’t need to import your product data to Facebook–this plugin uses your existing catalog and stock information, and all of your data is automatically synchronized.  Plus, Beetailer provides tons of feedback you can use to determine the effectiveness of your campaigns, so you’ll know what works and what doesn’t.

This really is an amazing social media plugin–you should definitely check out the full list of features to learn more about everything Beetailer can do for your PrestaShop site.

This PrestaShop plugin is the stripped down version of Beetailer:  Your Online Store on Facebook.  With the Beetailer Widget, people can share your store’s items on Twitter, Facebook and Google+.  This plugin is perfect for PrestaShop users who want to get involved with social media without selling their products directly through Facebook.  Plus, it’s free!

This free OpenCart module, powered by addthis.com, allows users to easily share your ecommerce site on social networks, including Twitter, Facebook, Delicious, Digg, and many more.  If you want to raise your store’s online profile, then you should definitely install this free social media module for OpenCart.

This free OpenCart module enables users to comment on your site via their Facebook accounts, and it allows you to place the comment box anywhere on your online store.  Your customers will love using Facebook Comments on your site, because they can provide feedback via their existing Facebook accounts.  You’ll love this module, because it will give you the valulable information you need to make informed decisions about your online store.

Want to raise your company’s online profile?  Then check out the Refer-A-Friend Tool, an OpenCart module from Curebit.  With this module, you can create incentives for your customers when they tell their friends and followers about your shop on Facebook and Twitter.  The Refer-A-Friend Tool also provides you with analytics, fraud detection, conversion optimisation, and lots of other cool features to help you ensure your campaigns run efficiently.

This OpenCart module has a one month free trial, so it’s definitely worth giving a shot!

Do you want to increase your brand recognition?  Social Promotion Widgets, a plugin for Magento by Finz.it, is designed to encourage your shoppers to share their latest purchases via social networking sites like Twitter and Facebook.  With this plugin, your customers will be offered a special discount code if they share their order via Facebook or Twitter.  After they tell their friends and followers about their purchases, they will be redirected back to your store and the discount code will be applied automatically.

This plugin comes with a free 15 day trial, and I think it’s definitely worth giving a try.

This simple Magento extension is perfect for shop owners who want to start using social media to promote their products and brands online.  This extension will add a Facebook like button to your product descriptions–whenever a visitor clicks this button, their Facebook friends will see this action and a link to your site’s page.  This extension is completely free, and it’s a great starting point for store owners who are new to social media.

With this Magento plugin, you can create different types of promotions, including group sales and daily deals, and then publicise them using Twitter, Facebook, and Google+.  Zizio Social Deals offers tons of awesome customisation options, and it provides the analytics you need to determine how well a particular promotion is performing.

You can try this plugin for free for a limited time, so it’s worth testing out.

So, what do you think?  Will you be using any of these social networking plugins for your online store?

Are you looking for UK ecommerce hosting?  Then check out our UK ecommerce hosting plans!

Tags: ecommerce hosting, ecommerce hosting uk, free social media magento extension, free social media opencart module, free social media prestashop plugin, free social networking magento extension, free social networking opencart module, free social networking prestashop plugin, social media magento extension, social media opencart module, social media prestashop plugin, social networking magento extension, social networking opencart module, social networking prestashop plugin, uk ecommerce hosting

pixelstats trackingpixel

View the original article here

Easter Giveaway–Your Chance to Win £30 in Account Credit, an Easter Egg, & an Evo Mug!

Want a chance to win an Evo Easter egg, £30 in account credit, and an Evo mug filled with sweets?  Then you have to complete our online Easter Egg Hunt!

We’ve hidden five Easter eggs on various pages of our main website (www.evohosting.co.uk) — find them all, and then use this form to tell us the URLs of the five pages containing Easter eggs.

We’ll choose 3 winners from everyone who provides us with the 5 correct URLs, and each winner will receive a custom Evo Easter egg, £30 in account credit to use towards new or existing invoices for our products and services, and an Evo mug filled with sweets.

You have from now until 04/04/2012 at 23:00 BST to find the eggs and submit your answers.  We will use a random number generator to choose 3 winners from everyone who provides us with the correct URLs, and the winners will be announced on 05/04/2012 by 11:00 BST on this post.  Winners will be notified using the email addresses provided in the form.  You must provide all 5 of the correct URLs for a chance to win a prize, and you can only enter once.

Good luck, and happy hunting!

UPDATE 05/04/2012 @ 10:00 BST

This competition is now closed.  We’ve used a random number generator to select 3 winners from everyone who provided us with the correct URLs, and the winners are:

D. Harris
P. Lawrence
R. Neal

The winners will also be notified via email.  Thank you to everyone who participated in our Easter Egg Hunt — we hope you have a great Easter!

pixelstats trackingpixel

View the original article here

Thứ Hai, 9 tháng 4, 2012

Free WordPress, Joomla & Drupal Plugins for A/B Testing

Published on 10 February 2012 by Cat M.

In a recent blog post, I gave a brief overview of A/B testing, as well as how to use Google Website Optimizer to conduct experiments on your site.  As promised, I’m back with free plugins for WordPress, Joomla and Drupal that you can use to perform A/B testing on your site. 

I’ve found free plugins for creating traditional experiments using original, variation, and conversion pages, but I’ve also found some plugins that are specifically designed for testing the effectiveness of different webforms, headlines, and templates.

This free WordPress plugin allows you to conduct an unlimited number of experiments, and you can have as many as 3 variation pages for each test.  Plus, your conversion page can be on another website or domain name, and MaxA/B will still be able to track the results.  However, this plugin can only be used for A/B tests on WordPress pages, but a future release will offer support for posts.

If you’re thinking a new theme might help make your WordPress blog more successful, then you should definitely try this plugin.  With SES Theme Split Test, your content will stay the same; however, some visitors will see your site with one theme, while other users will see it with another.  This free plugin works with Google Analytics, so you’ll be able to see how each theme performs, allowing you to make an informed decision about which template to use on your blog.

This free WordPress plugin allows you to randomly alternate two headlines for each blog post, so you can see which one gets you the most views.  When one of the headlines reaches a particular number of views, the popular version is used as the post’s headline permanently.  While Headline Split Tester isn’t a full-fledged A/B testing plugin, it’s easy to use, and it’s a great starting point for bloggers who want to experiment with their sites.

This free extension for Joomla enables you to conduct A/B testing on multiple pages quickly and easily using  Optimizely’s graphical interface.  If you don’t have a lot of coding experience, or simply don’t want to manually edit your HTML, then this is the perfect extension for you.

While you need to be able to edit HTML and CSS to use this Joomla extension, Press9 A/B Testing’s Test Designer will generate the Javascript you need to conduct experiments.  This free Joomla extension provides test results in real time, so you’ll always have up-to-date feedback on your experiments.

With this Drupal module, you set up the original, variation, and success pages for each study.  When a user visits the original page, a mutation is selected:  this mutation will either redirect the visitor to the variation page or keep them on the original page.  Multivariate tracks the number of users who visit the success page, as well as whether these users were shown the original or variation, in order to produce data which can be used to determine which page is likely to provide the desired results.

If you’re thinking of changing a form on your Drupal website with hopes of getting more users to complete and submit the form, then you should try this free A/B testing module.  With Webform A/B Testing, your site’s visitors will be randomly shown different versions of a particular form, and it will track which variation is completed the most.  While this free Drupal module is not a complete A/B testing tool, it is a great plugin for people who want to experiment with their contact forms.

So, what do you think of these free A/B testing plugins, modules and extensions?  Do you think you’ll try any of them on your website?

Are you looking for UK Joomla hosting?  Then check out our web hosting plans!

Tags: a/b testing drupal module, a/b testing drupal plugin, a/b testing joomla extension, a/b testing joomla plugin, a/b testing plugin, a/b testing wordpress plugin, free a/b testing plugin, free a/b testing tool, joomla hosting, uk joomla hosting

pixelstats trackingpixel

View the original article here