Skip to main content

About - Call to Action

Merchant Developer

A simple call-to-action banner with a heading and a single button, typically used at the bottom of an About page.

The About - Call to Action section renders a centered heading followed by a single button that links wherever you choose. It is designed to prompt visitors to take the next step, such as shopping a collection, after reading your About content.

storefront previewResult
About - Call to Action
About - Call to Action
storefront previewSettings
Call to Action section settings - heading, button label and button link
Call to Action section settings - heading, button label and button link

How to use it​

For merchants

In the Shopify theme editor, add or open this section, then:

  1. In the theme editor, open the page and click Add section, then choose Call to action.
  2. Enter your Heading text (for example, Ready to Get Started?).
  3. Set the Button label (for example, Shop Now).
  4. Pick a Button link destination, such as a collection or page.
  5. Choose a Color scheme and confirm Show section is enabled, then save.
tip

If you leave Heading or Button label empty, that element is hidden automatically - set both for a complete call to action.

tip

Button colors and shape come from your global theme settings (button primary background, text, hover, and shape), not from this section, so it stays consistent with the rest of the store.

tip

Uncheck Show section to temporarily hide the whole banner without deleting it.

Settings reference​

SettingTypeDefaultWhat it does
Color schemecolor_schemescheme-1Sets the background and text colors used for the section.
Show sectioncheckboxtrueToggles the entire section on or off; when unchecked, nothing renders.
HeadingtextReady to Get Started?Headline shown above the button. Hidden if left blank.
Button labeltextShop NowText on the call-to-action button. The button is hidden if left blank.
Button linkurl-Destination the button links to, such as a collection, product, or page.

Developer notes​

Developer note

Loads about-main.css and renders section-color-scheme; the wrapper uses the .about-main / .about-cta classes with an #AboutCta-{{ section.id }} id.

  • Button styling is injected via an inline {% style %} block driven by global settings.button_primary_bg, settings.button_primary_text, and settings.button_primary_hover; the shape class is btn-shape-{{ settings.button_shape }}.
  • No repeatable blocks and no section-level JavaScript; output is purely conditional Liquid based on enable_section, heading, and label.
{% if section.settings.label != blank %}
<a href="{{ section.settings.url }}" class="about-cta__btn btn-shape-{{ settings.button_shape }}">
{{ section.settings.label }}
</a>
{% endif %}