Add a button for each column in Multicolumn section - Dawn 2.0

Topic summary

Goal: add a per‑column button in Dawn 2.0’s Multicolumn section by editing multicolumn.liquid.

Initial solution: replace the section’s code with a linked GitHub version; buttons appear but several reports say they are not clickable.

Key fix (most recent, confirmed): change references from section.settings to block.settings so each column (block) has its own link. Example: use href=“{{ block.settings.col_button_link }}” when not blank; otherwise set aria-disabled=“true” role=“link”. This makes buttons active/clickable per column.

Context: multicolumn.liquid is the Shopify theme section file; “block” refers to individual columns within the section, while “section” refers to the whole component. Incorrectly using section.settings prevented per‑column links from working.

Outstanding requests/issues: add a “Read more” option; center the button over the image; align buttons to the same height across columns; after applying edits, one user sees a 2×2 layout instead of 4 columns and cannot change the number of columns.

Status: the inactive button problem is resolved via the block.settings change. Design/layout enhancements and column count issues remain open. Screenshots and the GitHub code link are central to implementation.

Summarized with AI on January 13. AI used: gpt-5.

Awesome @Savior thank you so much!