Buy me a coffee

Click Text – Show Spotify (v2)

Demo: https://tuanphan-demo01.squarespace.com/click-text-show-spotify-v2?noredirect

Pass: abc

Suppose you have 2 Texts.

You want: when users click on each Text >> Show Spotify.

#1. First, you add a Text Block with some text/url.

Make sure the option “Open link in new tab” is disabled

  • #spotify01
  • #spotify02

Click Text Show Spotify 01 Min (1)

Click Text Show Spotify 02 Min (1)

and 2 Spotify Playlists below.

Click Text Show Spotify 07 Min

#2. Install Squarespace ID Finder to find the ID of Text and Spotify.

In my example, we will have:

  • Text Block: #block-e44711b1a5a2e0328329
  • Spotify 01: #block-555b4d71e2039fa56043
  • Spotify 02: #block-75d13bfa00d3dbf70380

Click Text Show Spotify 01 Min

#3. Use code to Code Injection – Footer (or Page Header Code Injection)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
  // Spotify 01 
  $("#block-555b4d71e2039fa56043").closest('.fe-block').addClass('spotify01 show');
  // For Seller
$("#block-75d13bfa00d3dbf70380").closest('.fe-block').addClass('spotify02');
  
  // Spotify 01 
  $('a[href="#spotify01"]').click(function(){
    $(".spotify01").addClass("show");
    $('.fe-block:not(.spotify01)').removeClass('show');
    }
  );
// Spotify02
 $('a[href="#spotify02"]').click(function(){
   $(".spotify02").addClass("show");
    $('.fe-block:not(.spotify02)').removeClass('show');
    }
  );
});
</script>
<style>
.spotify01 .code-block, .spotify02 .code-block {
    display: none;
}
  .show .code-block {
      display: block !important;
  }
  .show {
      z-index: 999999 !important;
  }
</style>

Click Text Show Spotify 04 Min

#4. Explain code

Click Text Show Spotify 05 Min