Blog

Codes, snippets, tips and tricks for web designers using Adobe Business Catalyst, jQuery, CSS3, HTML5 and Respsonsive Design.

10-10-2011

How to change the message "Shopping cart is empty" across the entire website on Business Catalyst using jQuery

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

How to Customize Open Graph Tags to Maximize the Value of Your Facebook Like Buttons

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

How to change the height of Invoice’s cell to fit longer product names - Business Catalyst

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

How to disable the Autoresponder for Web Forms – Adobe Business Catalyst

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&amp;OID=4739&amp;OTYPE=55&amp;EID=0&amp;CID=0&amp;SAR=False"> ..

Read more

21-9-2011

How to Force Opt-In automatically instead of having to go into each contacts details – Business Catalyst

just add: &Optin=True at the form action, see example below: <form action="/FormProcessv2.aspx?WebFormID=10090&amp;OID=4739&amp;OTYPE=55&amp;EID=0&amp;CID=0&amp;Optin=True" enctype="multipart/form-data" onsubmit="return checkWholeForm13472(this)" method="post" name="catwebformform13472"></form> ..

Read more