Thanks for the reply, Jason! Our site is kalamazoocandle.com
I can update The Knot’s logo to get a consistent look with the rest of the social icons, so that’s no problem. I took a look at the social-icons.liquid html. I am only semi familiar/comfortable with html so I am not 100% sure where I need to add in our custom image file and link. If you or anyone else knows what/where I need to paste my image url and link, that would be so helpful!
Thank you!!
{% comment %}
** Social feeds (Instagram and Twitter) - homepage partial **
- Draggable section
- Uses blocks
{% endcomment %}
{% for block in section.blocks %}
{% assign blockLength = forloop.length %}
{% if block.type == 'instagram' %}
{% if block.settings.instagram_title != blank %}
{% endif %}
{% if block.settings.instagram_client_id != blank %}
{% else %}
{% for i in (1..block.settings.instagram_count) %}
{% endfor %}
{% endif %}
{% endif %}
{% if block.type == ‘twitter’ %}
{% if block.settings.twitter_title != blank %}
{% endif %}
<a id=“twitter-timeline” class=“twitter-timeline” data-theme=“{{ block.settings.twitter_theme }}” href=“https://twitter.com/{{ block.settings.twitter_username | replace: [email removed] “” | strip }}” data-widget-id=“319998048782647298” data-tweet-limit=“{{ block.settings.tweet_count }}” data-screen-name=“{{ block.settings.twitter_username | replace: [email removed] “” | strip }}” data-chrome=“noheader nofooter noborders transparent” data-link-color=“{{ settings.link_color }}” data-heading-style=“color:{{ settings.link_color }};font-size:{{ settings.regular_font_size }}px;font-family: {{ settings.regular_font | replace: ‘Google_’, ‘’ | replace: ‘+’, ’ ’ | replace: '”', ‘’ }}">
{% endif %}
{% endfor %}
{% schema %}
{
“name”: “Social feeds”,
“class”: “social-feeds-section”,
“max_blocks”: 2,
“blocks”: [
{
“type”: “twitter”,
“name”: “Twitter feed”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “twitter_username”,
“label”: “Twitter username”
},
{
“type”: “text”,
“id”: “twitter_title”,
“label”: “Heading”,
“default”: “Tweets”
},
{
“type”: “radio”,
“id”: “twitter_theme”,
“label”: “Twitter feed theme”,
“default”: “light”,
“options”: [
{
“value”: “light”,
“label”: “Light”
},
{
“value”: “dark”,
“label”: “Dark”
}
]
},
{
“type”: “range”,
“id”: “tweet_count”,
“label”: “Number of tweets”,
“min”: 1,
“max”: 10,
“step”: 1,
“default”: 2
}
]
},
{
“type”: “instagram”,
“name”: “Instagram feed”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “instagram_client_id”,
“label”: “Instagram Access Token (?)”
},
{
“type”: “text”,
“id”: “instagram_title”,
“label”: “Heading”,
“default”: “Instagram”
},
{
“type”: “range”,
“id”: “instagram_count”,
“label”: “Number of images”,
“min”: 2,
“max”: 12,
“step”: 2,
“default”: 6
}
]
}
],
“presets”: [{
“name”: “Social feeds”,
“category”: “Social”,
“blocks”: [
{
“type”: “twitter”,
“settings”: {
“twitter_title”: “Tweets”
}
},
{
“type”: “instagram”,
“settings”: {
“instagram_title”: “Instagram”
}
}]
}]
}
{% endschema %}