Get category_id from section page | Community
Skip to main content

Get category_id from section page

  • June 28, 2017
  • 2 replies
  • 0 views

In a section page, I'm trying to get the section's category_id, but I got invalid reference warning.

I can get other attributes lik {{ section.url }} and {{ section.name }}, but it does not work if I try {{ section.category_id }}

This topic has been closed for replies.

2 replies

Vladan
  • June 28, 2017

Hi Rian! I think that the only way to achieve that is using of JS.

<script>
var catId = $(".breadcrumbs li:nth-child(2) a").attr("href").match(/[0-9]+/);
</script>

Hope this helps!


David47
  • November 22, 2019

Vladan, very helpful code for my project. Thanks!