Menu a href Target Frame | Adobe Business Catalyst

In admin Console Choose Develop -> ModuleTemplates -> Menu -> Default -> childitem.html

Add this below tag to a href.

target="{tag_menuitemtargetframe}"

Compress image size | Adobe Business Catalyst


<img src="{tag_logo_value}?Action=thumbnail&Width=170&Height=70&algorithm=proportional" />

Custom Thank you page for all forms | Adobe Business Catalyst

First create a page for "Thank you page".

Default code:

<form name="catwebformform59434" method="post" enctype="multipart/form-data" action="/FormProcessv2.aspx?WebFormID=406050&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}">

Change to:

<form name="catwebformform59434" method="post" enctype="multipart/form-data" action="/FormProcessv2.aspx?WebFormID=406050&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}&PageID=/ccg-blog-subscription-confirmation">

Force Opt-in on Newsletter Subscription Forms

To ensure your customers are going to receive your newsletters when they subscribe, you need to add the force opt-in parameter to your form.
  1. Edit your newsletter forms and add &OPTIN=true to the end of the form action ( <form action="..." )
All new subscribers will then be opted-in as soon as they subscribe to a newsletter using this form.

Ex. 
So...for instance, you have a form element that has an action attribute like:

action="/FormProcessv2.aspx?WebFormID=111111&amp;OID={module_oid}&amp;OTYPE={module_otype} &amp;EID={module_eid}&amp;CID={module_cid}">

You make it:

action="/FormProcessv2.aspx?WebFormID=111111&amp;OID={module_oid}&amp;OTYPE={module_otype} &amp;EID={module_eid}&amp;CID={module_cid}&OPTIN=true">