On Main Blog Page, Make Blog Title a Link to Main Blog Page (Dawn 10.0 Theme)

bet
Shopify Partner
83 4 19

blog title link.png

 

On the main blog page only, I would like to make the main blog page Title which is "Personal Finance Blog" a link to the main blog page which is: https://www.buyexceltemplates.com/blogs/personal-finance

 

Below is the code I found in the "main-blog.liquid" file that I would like to adjust (I do not want the link to be underlined or have any special effects such as when clicked, I just want the link to look the same size, font and black color as it is now):

----------------------------------------------------------------------------------------------------------

<h1 class="title--primary{% if settings.animations_reveal_on_scroll %} scroll-trigger animate--fade-in{% endif %}">
{{ blog.title | escape }}
</h1>

----------------------------------------------------------------------------------------------------------

 

What css / html code changes are required to do this on the Shopify Dawn 10.0 theme at my website:

 

Personal Finance Blog


Thank you.

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

Replies 7 (7)
suyash1
Shopify Partner
8653 1061 1405

@bet - you can wrap it in a <a href=""></a> tag, but the issue is, if you add link around this text then all the posts in all the blogs will link to the very same blog, that is why to avoid that, replace above code with this and check

 

<h1 class="title--primary{% if settings.animations_reveal_on_scroll %} scroll-trigger animate--fade-in{% endif %}">
{% if blog.url contains 'personal-finance' %}
<a href="https://www.buyexceltemplates.com/blogs/personal-finance">{{ blog.title | escape }}</a>
{% elsif %}
{{ blog.title | escape }}
{% endif %}
</h1>

  

You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
bet
Shopify Partner
83 4 19

blog error.png

 

Hi @suyash1 Thank you for your reply. I added the code but was not able to save the theme file. See error in attached image.  Are you able to adjust your code? 

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

suyash1
Shopify Partner
8653 1061 1405

@bet - try by changing the single quote to double quotes on line 25

You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
bet
Shopify Partner
83 4 19

blog fix.png

 

 

Hi @suyash1 thanks for trying to find a solution but got same issue. I really like the idea that this would be able to work with multiple blogs.

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

suyash1
Shopify Partner
8653 1061 1405
Yes it will, i will at my place in 2 hours, if you want then I can send you
collaboration request and work on it
You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
bet
Shopify Partner
83 4 19

@suyash1 @  I figured out the issue after searching online for if / then type code.  The one I found used if else, so I tried that and the code worked great. Thanks again.

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

suyash1
Shopify Partner
8653 1061 1405
Amazing, congratulations.
You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂