Last modified: August 22, 2025
The following is a list of HubL supported tags that are deprecated. While these tags still operate as intended, newer tags have been created to replace them that are more streamlined and optimized. These new tags are indicated below. This page is for historical reference.

Custom Widgets

This tag has been replaced by custom module tag.

Follow Me

Follow me modules render icons that link to your various social media profiles. The icons that display are based upon your Social Settings.
This tag is replaced by the newer Follow Me default module.
{% follow_me "follow_me" %}
{% follow_me "follow_us" title='Follow Us', module_title_tag="h2" %}

Global Widget

A global widget is one which can be shared across template
The tag has been replaced with the custom module tag.
{% global_widget "facebook_fan_box" overrideable=False, label='Facebook Fan Box' %}"
The Google Search Tag and modules are no longer available. This has been replaced by HubSpot’s own native search.

Image slider

Generates a HubSpot image slider module. This slider module is based on FlexSlider. While you can create a slider module with standard module HubL syntax, If you want to predefine default slides using HubL, you must use block syntax. Both methods are shown below.
This tag has been deprecated in favor of the Gallery tag.
{% image_slider "image_slider" %}

<-- Block syntax -->
{% widget_block image_slider "crm_slider" sizing='static', only_thumbnails=False, transition='slide', caption_position='below', with_thumbnail_nav=False, lightbox=False, auto_advance=True, overrideable=True, description_text='', show_pagination=True, label='Image Slider', loop_slides=True, num_seconds=5  %}
{% widget_attribute "slides" is_json=True %}[{"caption": "CRM Contacts App", "show_caption": true, "link_url": "http://www.hubspot.com/crm", "alt_text": "Screenshot of CRM Contacts", "img_src": "http://go.hubspot.com/hubfs/Contacts-View-1.png?t=1430860504240", "open_in_new_tab": true}, {"caption": "HubSpot CRM Contact Profile", "show_caption": true, "link_url": "http://www.hubspot.com/", "alt_text": "HubSpot CRM Contact Profile", "img_src": "http://cdn2.hubspot.net/hubfs/53/Contact-Profile.png?t=1430860504240", "open_in_new_tab": true}]{% end_widget_attribute %}
{% end_widget_block %}
ParameterTypeDescriptionDefault
sizingEnumerationDetermines whether the slider changes sizes, based on the height of the slides. Possible values include: “static” or “resize”"static"
only_thumbnailsBooleanDisplay images as thumbnails instead of a slider.False
transitionEnumerationSets the type of slide transition. Possible values include: “fade” or “slide”"slide"
caption_positionEnumerationAffects positioning of caption on or below the slide. Possible values include “below” or “superimpose”"below"
with_thumbnail_navBooleanInclude thumbnails below slider for navigation (only_thumbnails must be False for this to be True)False
lightboxBooleanDisplays thumbnail image in lightbox, when clicked (with_thumbnail_nav must be True for this to be True)False
auto_advanceBooleanAutomatically advance slides after the time set in num_secondsFalse
show_paginationBooleanProvide buttons below slider to randomly navigate among slidesTrue
labelStringA label for this module, visible in the editor only"Image Slider"
loop_slidesBooleanWhen True, continuously loop through slidesTrue
num_secondsNumberTime in seconds to pause between slides5
slidesJSONA JSON list of the default caption, the link url, the alt text, the image src, and whether to open in a new tab. See block syntax above.