CMS Development

DavidFJones
Member | Platinum Partner
Member | Platinum Partner

Accessing Image Files in CMS Theme Development

SOLVE

Hello,

How does one access image files while making a custom CMS theme?

I am able to upload the images using the local development tools, but can't seem to find how to get these files onto the page.

I have tried using 

get_asset_url('')

but understand now that this is only used for js, html and css files.

Thank you

0 Upvotes
1 Accepted solution
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Accessing Image Files in CMS Theme Development

SOLVE

@DavidFJones when using the get_asset_url inside a HubSpot theme, you can use a relative path to the image file. Let's say your theme is structured like so:

  • /images
    • example.jpg
  • /templates
    • home.html

if you wanted to reference the example.jpg inside the home.html you would use the function like so:

{{ get_asset_url('../images/example.jpg') }}
Stefen Phelps, Community Champion, Kelp Web Developer

View solution in original post

3 Replies 3
daveroma
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

Accessing Image Files in CMS Theme Development

SOLVE

Hey @DavidFJones 

 

get_asset_url() is the move - you may just need to back up a directory or 2...

 

Here's some real-world HTML + HubL code I used to render an image in my HubSpot Theme

<img src="{{ get_asset_url('../../images/img-meeting-default.png') }}" alt="meeting-calendar">

Let me know if this helps!

 


Dave Roma,
HubSpot CMS Developer

Build a revenue generating website on HubSpot without a developer using The Generator Theme

0 Upvotes
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Accessing Image Files in CMS Theme Development

SOLVE

@DavidFJones when using the get_asset_url inside a HubSpot theme, you can use a relative path to the image file. Let's say your theme is structured like so:

  • /images
    • example.jpg
  • /templates
    • home.html

if you wanted to reference the example.jpg inside the home.html you would use the function like so:

{{ get_asset_url('../images/example.jpg') }}
Stefen Phelps, Community Champion, Kelp Web Developer
TRooInbound
Key Advisor

Accessing Image Files in CMS Theme Development

SOLVE

Hi @DavidFJones 

 

You can use direct file manager path here, no need to use this type of path as an image is editable from page edit mode. so issues to adding static file manager path here. 

See this screenshot - https://prnt.sc/t39fu8

 

FYI - need to add image path in single quote.

 

We hope it works for you.

Did our post help answer your query? Help the community by marking it as a solution.

 

Thanks,

Team TRooInbound