Categories
Friends
Links
Category Archives: Business Catalyst / GoodBarry
How to Make Billing Information Same as Shipping – Business Catalyst / GoodBarry
HTML: <input type="checkbox" onclick="SetBilling(this.checked);"/> Same as Shipping JavaScript: <script type="text/javascript"> function SetBilling(checked) { if (checked) { document.getElementById(‘BillingAddress’).value = document.getElementById(‘ShippingAddress’).value; document.getElementById(‘BillingCity’).value = document.getElementById(‘ShippingCity’).value; document.getElementById(‘BillingState’).value = [...]
Also posted in JavaScript | Tagged Business Catalyst, copy details, copy form value, GoodBarry | Leave a comment
How to Log into different secure zones according to ID – Business Catalyst / GoodBarry
HTML: <select id="selectZone"> <option value="154">Customer</option> <option value="150">Retailer</option> <option value="152">Distributor</option> <option value="168">Contributor</option> <option value="347">Member</option> </select> JavaScript: <script language="javascript"> function checkWholeForm43650(theForm){ var why = ""; if (theForm.Username) why += isEmpty(theForm.Username.value, "Username"); if (theForm.Password) why += isEmpty(theForm.Password.value, [...]
Posted in Business Catalyst / GoodBarry | Tagged Business Catalyst, GoodBarry, ID, log in, secure zones | Leave a comment
How to Change “This product is unavailable or out of stock” message – Business Catalyst / GoodBarry