NEED TO INTERGRATE LINKED IN WITH MY SHOP

www.loftrobeshop.com

Hi,

I believe the most effective way to do this is to create a LINKEDIN share button via Linded in Developer Paltform.

So, you add your URL to linked , add linkedin share buttons to shopify then you can share shopify updates on Linked In.

Can someone send clear instructions on how to do this please.

Thanks

Steph

1 Like

Hi @LOFTROBE ,

To add a LinkedIn share button to your Shopify store, please follow these steps:

  1. Create a LinkedIn Share Button: Go to the LinkedIn Developer Platform. Create the share button code. Specify the URL of the page you want to share.
  2. Get the Code: Once you configure the share button, you will get the Share button code.
  3. Add the Code to Your Shopify Store: Log in to your Shopify admin panel. Go to the Online Store > Themes. Click on Actions > Edit Code for the theme you are using. Find the appropriate template file where you want to add the LinkedIn share button (e.g., product.liquid, collection.liquid, or blog.liquid). Paste the LinkedIn share button code to the place you need. Save your changes.
  4. Verify the Button: Visit your Shopify store to ensure the LinkedIn share button works correctly. This will allow you to share your Shopify updates on LinkedIn directly.

I hope this helps! If it does, please like it and mark it as a solution!

If you need further assistance, feel free to reach out!

Regards,
Sweans

Hey there!

If you’re looking to integrate LinkedIn with your Shopify store, there are a couple of solid paths depending on how deep you want the integration to go:

  • If you just want a simple “Follow” or “Connect” button (as someone described above) linking to your LinkedIn profile, that’s pretty straightforward. Many small apps or snippet‑codes can handle it - very light setup.

  • If you’re looking to go further - like embedding posts or a full feed from your LinkedIn profile or company page - that’s still possible on Shopify. You’d need a more advanced LinkedIn Feed app. These apps can pull in your posts, offer layout control, and embed the content into your store’s pages easily.

If you let me know exactly what you’d like (just a button vs a full feed vs something in‑between), I can pull up features you should check and help you pick what fits your store.

Cheers!

Elfsight Team

Hi @LOFTROBE

Simple LinkedIn Share Button (No App Needed)

Step 1:

Go to your Shopify admin → Online Store → Themes → Edit code.

Open the file where you want the button (for example, product-template.liquid, article.liquid, or footer.liquid).

Step 2:

Paste this code where you want the LinkedIn Share button to appear:

<!-- LinkedIn Share Button -->
<a 
  href="https://www.linkedin.com/sharing/share-offsite/?url={{ shop.url }}" 
  target="_blank" 
  rel="noopener" 
  style="display:inline-flex; align-items:center; gap:6px; text-decoration:none; color:#0077B5; font-weight:600;"
>
  <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="#0077B5" viewBox="0 0 24 24">
    <path d="M19 0h-14c-2.761 0-5 2.238-5 5v14c0 
    2.762 2.239 5 5 5h14c2.762 0 5-2.238 
    5-5v-14c0-2.762-2.238-5-5-5zm-11 
    19h-3v-10h3v10zm-1.5-11.268c-.966 
    0-1.75-.785-1.75-1.75s.784-1.75 
    1.75-1.75 1.75.785 
    1.75 1.75-.784 1.75-1.75 1.75zm13.5 
    11.268h-3v-5.604c0-1.337-.025-3.063-1.867-3.063-1.868 
    0-2.154 1.46-2.154 2.967v5.7h-3v-10h2.881v1.367h.041c.401-.757 
    1.379-1.557 2.838-1.557 3.035 0 3.6 
    2.001 3.6 4.604v5.586z"/>
  </svg>
  Share on LinkedIn
</a>

Replace {{ shop.url }} with a dynamic page link if you’re on a product or blog page:

  • Product: {{ shop.url }}{{ product.url }}
  • Blog: {{ shop.url }}{{ article.url }}

Best regards,
Devcoder :laptop: