10-10-2011
To customize the "Shopping cart is empty" message on the { module_shoppingcartsummary} you will need to add the following script to all your templates.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
var msg = $('td.cartSummaryItem').html();
if(msg == "Shopping cart is empty." ) {
..
Read more
06-10-2011
Open Graph tags are tags that you add to the of your website to describe the entity your page represents, whether it is a band, restaurant, blog, or something else.
This allows Facebook to present a specific image, category, and other information that you can choose about your site when Likes of your content appear in user profiles and news feed.
To customize this information just add meta tags to the head of your site:
<meta property="og:tag name" content="tag value" /> ..
Read more
21-9-2011
To change the size of product cell on Invoice’s table so they can fit 2 lines of text, just add the below code inside the INVOICE TEMPLATE on "Customize System Emails"
<style type="text/css">
.productitemcell{
height:60px;
}
</style> ..
Read more
21-9-2011
Just add &SAR=False to the form code:
<form name="catwebformform47565" method="post" onsubmit="return checkWholeForm47565(this)" enctype="multipart/form-data" action="/FormProcessv2.aspx?WebFormID=12374&OID=4739&OTYPE=55&EID=0&CID=0&SAR=False"> ..
Read more
21-9-2011
just add: &Optin=True at the form action, see example below:
<form action="/FormProcessv2.aspx?WebFormID=10090&OID=4739&OTYPE=55&EID=0&CID=0&Optin=True" enctype="multipart/form-data" onsubmit="return checkWholeForm13472(this)" method="post" name="catwebformform13472"></form> ..
Read more