Posts

Showing posts from January, 2014

Product Social for Virtuemart

Image
Product Social is a Virtuemart plugin that implements the Facebook Like, Facebook send, Facebook comment, Twitter and Google +1, LinkedIn, Pinterest buttons inside the Virtuemart products. Screenshot Demo: CLick here Backend configuration Enable buttons separately Plugin adds Facebook opengraph tags (linter validated) to the head of the page Optionally load Google and Twitter javascript codes Select Facebook / Google +1 button language Configure buttons size Add css styling Choose Font type, Theme type or Language Product Share supports multiple languages: Support total of 78 different languages. Compatible with both of Joomla 1.5, Joomla 2.5, Joomla 3.0 and Virtuemart 2.x

disable RewriteRule for one sub Folder

You have a .htaccess in the root of website. When you type: yourdomain.com/guests You need to somehow disable this rule for guests subfolder, but how do you do this? The code bellow will help you. Let add it in your .htaccess file: RewriteEngine On RewriteCond %{REQUEST_URI} ^guests RewriteRule ^ - [L,QSA] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^ - [L,QSA]   Let try and enjoy!