### Example HTML Link with Specific Message ID Source: https://www.icegram.com/documentation/how-to-trigger-messages-on-button-or-link-clickusing-behavior-triggers An example demonstrating how to trigger a specific Icegram message (ID 6344) using an HTML link. Ensure the correct message ID is used. ```html Show me a Popup! ``` -------------------------------- ### Example Cron Command for Plesk Source: https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk This is an example of the command you would enter into the 'Command' text box in Plesk to schedule a cron job for Icegram Express. Remember to replace the URL with your actual cron URL. ```bash /usr/bin/wget -O – -q http://www.yourwebsite.com/?es=cron&guid=evnloh-eqotdy-fmswkp-oqwlgp-gbuzak ``` -------------------------------- ### Schedule Cron Email with Wget (Option 2) Source: https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel An alternative wget command for scheduling cron emails. Remember to substitute the example URL with your Icegram Express Cron URL. The --quiet flag suppresses output. ```bash wget --quiet "http://www.yourwebsite.com/?es=cron&guid=evnloh-eqotdy-fmswkp-oqwlgp-gbuzak" ``` -------------------------------- ### Add Unsubscribe Link (Icegram Express < 3.4.0) Source: https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails Use this shortcode in the welcome email content if your Icegram Express version is lower than 3.4.0. Ensure you have version 3.1.2+ installed. ```html Please click here to unsubscribe. ``` -------------------------------- ### Add Unsubscribe Link (Icegram Express >= 3.4.0) Source: https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails Use this shortcode in the welcome email content if your Icegram Express version is 3.4.0 or higher. Ensure you have version 3.1.2+ installed. ```html Please click here to unsubscribe. ``` -------------------------------- ### Schedule Cron Email with Wget (Option 1) Source: https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel This command uses wget to schedule cron emails. Replace the placeholder URL with your specific Cron URL. The -O /dev/null option redirects output. ```bash /bin/wget -O /dev/null "/bin/wget -O /dev/null “http://www.yourwebsite.com/?es=cron&guid=evnloh-eqotdy-fmswkp-oqwlgp-gbuzak”" ``` -------------------------------- ### Embed Subscription Form Using Shortcode (v < 4.0) Source: https://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website Use this shortcode in any post or page to display a subscription form. Configure name field visibility, description text, and subscriber group. ```shortcode [[email-subscribers namefield="YES" desc="" group="Public"]] ``` -------------------------------- ### Embed Subscription Form Using PHP Snippet Source: https://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website Integrate a subscription form directly into your theme's PHP files. Customize name field visibility, description text, and the subscriber group. ```php ``` -------------------------------- ### Add Border to Subscribe Form in Widget Source: https://www.icegram.com/documentation/es-css-help Apply custom CSS to the .site-footer .widget class to add a border and set background and text colors for the subscribe form when it's in a widget. ```css .site-footer .widget { border: 2px solid #DC0825; background-color: #FFFFFF; color: #000000; } .site-footer .widget-title { color:#000000; } ``` -------------------------------- ### Add wpautop Filter with Higher Priority Source: https://www.icegram.com/documentation/es-faq If you still need the wpautop filter but want to control its behavior, add it with a later priority. This can help manage line breaks and styling in emails. ```php add_filter('the_content', 'removeEmptyParagraphs', 99999); ``` -------------------------------- ### HTML Link to Trigger Message Source: https://www.icegram.com/documentation/how-to-trigger-messages-on-button-or-link-clickusing-behavior-triggers Use this HTML code to create a link that, when clicked, triggers an Icegram message. The `return false;` prevents default link behavior. ```html Show me a Popup! ``` -------------------------------- ### HTML Button to Trigger Message Source: https://www.icegram.com/documentation/how-to-trigger-messages-on-button-or-link-clickusing-behavior-triggers Use this HTML code to create a button that, when clicked, triggers an Icegram message. The `return false;` prevents default link behavior. ```html ``` -------------------------------- ### Copy JavaScript Code for Remote Site Integration Source: https://www.icegram.com/documentation/how-to-show-icegram-message-on-remote-sites This JavaScript code snippet needs to be copied and pasted onto the remote websites where you want the Icegram Engage campaign to be displayed. Ensure you have configured the 'Specific URL's from other sites' in the display rules on your host WordPress site. ```javascript ``` -------------------------------- ### Schedule Cron Email with cURL Source: https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel Use this command with cURL to schedule cron emails. Ensure you replace the placeholder URL with your actual Icegram Express Cron URL. This command is recommended for its efficiency. ```bash curl --silent "http://www.yourwebsite.com/?es=cron&guid=evnloh-eqotdy-fmswkp-oqwlgp-gbuzak" > /dev/null 2>&1 ``` -------------------------------- ### Wrap Labels in `