Skip to main content

Posts

Developer’s Note: Condensing Forms Displayed During VirtueMart Checkout

By default, the VirtueMart checkout process will ask for more information from your customer than is actually needed by your store.  To help reduce the form-field overload  that you customer may face when trying to purchase a product from your online store, it can help to actually remove fields that are not necessary to your business.   Do you really need to know the “company", "title", or "fax number” of a customer?  If not, then this tutorial will show you how to remove those fields. Changing the following file will impact the Billing Information and the Shipping Information (Shipping Address) forms that appear during the VirtueMart checkout process. The file you will need to edit can be found here: /administrator/components/com_virtuemart/classes/ps_userfield.php Search for the function getSkipFields() By default, the skipped fields are the username, password, password check, and the check for the terms of service agreement. function getSkipField...

Developer Note: PayPal Only Checkout - Changing the Confirm Order Button

If your store will only be using  PayPal  as a payment handler, the customer experience can be improved by replacing the "Confirm Order" button at the end of the checkout process with an actual PayPal button. The old button doesn't convey to your customer that they will be taken to PayPal  to complete their order. All we're going to do with this post, is show how to change that "Confirm Order" button into this a Paypal button The file you want to edit is found here: \components\com_virtuemart\themes\default\templates\checkout\get_final_confirmation.tpl.php Within this file, search near the bottom for the following code: <div align="center"> <input type="submit" onclick="return( submit_order( this.form ) );" class="button" name="formSubmit" value="<?php echo $VM_LANG->_('PHPSHOP_ORDER_CONFIRM_MNU') ?>" /> </div> The button has a class called input.butto...

Developer Note: Virtuemart - Moneris / ESelectPlus Integration - API Token Mismatch

One quick solution to a common problem.  When running Virtuemart and using Moneris as your payment processor, you may occassionally run into the following error: A message from the processor:  API Token Mismatch: (N/A) ERROR:  FAILURE IN PROCESSING THE PAYMENT (ps_moneris) The quick and easy way to fix this is to log into http://www.eselectplus.ca with your credentials and make sure that, under “My Account -> Account Settings”, the default transaction ECI is set to SSL .  It normally defaults to another transaction type (non-electronic commerce transaction), so you need to change it to represent the type of transaction you prefer.  Whether that is an SSL transaction or not is dependent on you site.

Developer Note: Virtuemart - Editing the Add to Cart MooTool Popup

To edit the “Add To Cart” popup that appears when you add an item to a cart in Virtuemart, there are few files that you need to know about. These are the files to know \components\com_virtuemart\themes\default\theme.js \components\com_virtuemart\js\mootools\   - contains the files for editing the appearance of the popup. To edit the appearance of the box, edit \components\com_virtuemart\js\mootools\mooPrompt.css to change the styles as well as editing the 2 images in the directory to edit how they appear as well (close box and header-background)

Installing Virtuemart for Joomla

VirtueMart is a free piece of Shopping Cart Software made for Joomla .  It works right out of the box with a few minor tweaks, but it also allows for some major customization. There is a lot to learn about VirtueMart to get it fully customized for your needs, but if you want a free e-commerce shopping cart component for Joomla, VirtueMart is the leading candidate. To install VirtueMart is easy.  Download the latest complete package from the VirtueMart website .  Log into your Joomla adminstrative interface and upload the package that you just installed (see Joomla - Installing Components and Plugins ).  You need to unpack the file you just download because you are only going to need to initially upload the file called com_virtuemart_1.1.5.j15.zip (corresponding to the version you downloaded).

Official Facebook Like Button

I would like to follow up the post made about the Tweet button with a post about the Facebook Like button and the benefits of adding the button to your web site. Below is an image of what the button looks like.  If you would like to see a real world example, you will find one at The Vintage Revival  near the bottom. The Facebook Like button allows visitors to share the content of your site with people on Facebook. When a visitor clicks on the Like button, a story appears in that visitor’s friends’ News Feed with a link back to your website. As you can guess, this quickly and easily helps promote your site on one of the most popular social networks on the Internet today. By embedding code in your website (called Open Graph tags ), your page will become the equivalent of a Facebook page with a connection made on Facebook between the visitor and your web site. Your site will appear in the "Likes and Interests" section of the visitor's profile and you will have t...

Official Tweet Button Released by Twitter

Twitter has now released a new Tweet button for there service. This function was previously offered by TweetMeme's Retweet button . Similar to Facebook's Like button , the new Tweet button from Twitter allows a visitor to send a Twitter message from your site. Tweet Twitter offers a page to help you construct your Tweet Button: http://twitter.com/goodies/tweetbutton On this page, you have the option of how your button will appear: The text that people will include from this Tweet can be customized The URL that you want linked to this Tweet The default language You can also recommend up to 2 people to follow for this Tweet button to recommend to the visitor When you have completed the customization, it's easy to insert the code into your site because Twitter will generate it for you.  Cutting and pasting the code into your site will complete the process and then you are up and running. That's it.  It's a very similar process to the Facebook Like...