HubSpot Ideas

YiRui_Chua

Ability to edit blog tag meta description

Hi team, it would be nice if we allow the flexibility to edit blog tag meta description easily for SEO purposes. Thank you!

1 Reply
creativecliff
Member

This would be great. I wrote code to add tags based on the content.absolute_url, but the problem is that you can't turn off the title and description in Blog Settings > General tab. So the below code works, but it then renders two sets of title and description tags. When I view the tag page it's using the ones from Blog Settings > General tab instead of my new ones, example below. 

 

{% if content.absolute_url== 'https://www.dudafresh.com/recipes/tag/appetizers' %}

<title>Appetizers and Snacks</title>
<meta name="description" content="Begin your culinary adventure with mouthwatering starters like Whipped Cottage Cheese Celery Sticks or Grilled Shrimp and Corn Salad. For an innovative twist, try Celery Apple Slaw, blending crisp celery with tangy apples and blue cheese. If you crave bold flavors, Buffalo Chicken Caesar & Celery Wrap offers a savory, handheld snack perfect for gatherings.">

{% endif %}