Virtuemart is a popular open source e-commerce extension for the Joomla! content management system. We have a number of extensions written explicitly for Virtuemart that will enhance your store:-
You can view examples of these extensions in our Virtuemart Extensions Demo Store.
Below: A screenshot of our HTML5 slideshow for Virtuemart
Add a comment
Google offers a variety of online facilities in addition to its general search functions. If you are selling products online, one facility that you should definitely be be aware of is the Google Merchant Center. This is a tool which allows you to upload your product listings to be used in Google Product Search, Google Product Ads, and Google Commerce Search. So what are these, and why might you want to use them?
Google Product Search is a service designed to helper users locate products online, currently available for the following countries: USA, UK, France, Germany and Japan. Listing is free to merchants, you just need to upload the product information to Google. Shoppers can access by clicking on the 'Shopping' link on Google's front page, it is the e-commerce equivalent of Google's website search results. Since the only cost is the time it takes to submit your products, there is little downside to using this service, and a strong reason to do so, since it provide an additional way for potential customers to find your products.
Add a comment
Our featured items range of modules are designed to give you the flexibility that you need in displaying Joomla articles.
They allow you to display selected Joomla articles in a variety of formats, including tab panes, accordions, carousels and slideshows. The modules are designed to allow you the greatest possible flexibility in the way you select your Joomla articles, either selecting from one or more categories or sections, or displaying your chosen list of articles. These articles can be displayed in a variety of orderings, and you can choose the exact amount of text to display, ranging from a short extract to the entire article text. You also control whether or not to display a thumbnail, and the thumbnail size.
The modules also have a number of other useful features, including the ability to dynamically resize and cache images, and to trigger content plugins. As well as displaying content from the Joomla Core Content component, the modules can display articles from Mighty Extensions Resources, and we plan to support additional CCKs in the future.
As a special offer you can buy the complete suite in a single pack for a bargain price of £35.00. For this you get: mod featured items, mod featured items pro, mod featured items carousel, mod featured items slideshow and mod newstab. Plus as a bonus you get two of our other Joomla extensions, com jigsaw (a Flash puzzle game for Joomla) and mod random mp3 (an mp3 player module).
Add a comment
It is often the case that as web developers we need to add some extra coding that will deal with the quirks of particular web browsers . Using Joomla we can take advantage of Joomla's built in browser detection.
Browser detection is handled through the JBrowser class. The is located in Joomla's class library, in the environment subpackage. In order to use it you will first need to import it:-
jimport('joomla.environment.browser');
Then you need to get an instance of the browser object
$browser = &JBrowser::getInstance();
You can then find information about the web browser being used through examing the properties of this object, which are accessed through the appropriate 'get' method. The methods include:-
To give an example, a very common application is that you wish to load a separate stylesheet for users of Internet Explorer 6, to deal with its annoying quirks.
Example
jimport('joomla.environment.browser');
$doc =& JFactory::getDocument();
$browser = &JBrowser::getInstance();
$browserType = $browser->getBrowser();
$browserVersion = $browser->getMajor();
if(($browserType == 'msie') && ($browserVersion < 7))
{
$doc->addStyleSheet( 'css/ie6.css' );
}
If there is a particular quirk that you wish to deal with, such as lack of support for alpha transparency in png images (a common complaint with IE6), you can use the getQuirks() method:-
If($browser->getQuirks('png_transparency')) { $doc->addScript( 'js/pngfix.js' ); }
Other useful methods are:-
The browser object uses the reported user agent to detect this information, this information is under the control of the client so there is no guarantee that it is true. In particular you need to be careful using the hasFeature() method. For example the reported value for hasFeature('javascript') does not take account of the fact that users can choose to disable scripting on a browser that will support javascript.
Add a commentYou can change the PHP configuration on your site by creating a text file called 'php.ini', which goes in the root folder of your site. You use this to set the options when PHP is run on your site: there are a huge number of these.
Some useful ones are:-
You can find further information on this in the official PHP documentation, available from PHP.net.
Add a comment