Skip Navigation

[Resolved] Trying to create a link to a modal using Views

This support ticket is created 4 years, 7 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+01:00)

This topic contains 7 replies, has 2 voices.

Last updated by chrisC-25 4 years, 6 months ago.

Assisted by: Nigel.

Author
Posts
#1351893

I have built a view that pulls from a repeatable group custom field. I want the "Artist Name" field to link to a modal that contains the "Playlist URL" from the repeatable group, which is a embeded Spotify playlist. I have it setup and the modal seems to open but no content is shown.

Here is example post:
hidden link

#1352045

I am able to see the modal now, however the iframe embed does not show and I also need help on relating the playlist embed to the selected artist in the grouped field.

Here is code I have so far:

<a href="#myModal" data-toggle="modal" data-target="#myModal" rel="noopener noreferrer">[types field="artist-name"][/types]</a>


<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">

      </div>
      <div class="modal-body">
        <p>Playlist</p>
        <div><iframe src="[types field='playlist-url' output='raw'][/types]" width="300" height="380" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe></div>

      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div>
  </div>
</div>

The [types field='playlist-url' output='raw'][/types] should relate to the artist name clicked in the view [types field="artist-name"][/types].

#1352215

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Screenshot 2019-10-01 at 07.31.05.png

Hi Chris

Reading your question I'm not quite sure what the fields belong to that you are having problems outputting.

The page you linked to is for a single label post.

So the repeatable field group for artists belongs to the label post?

And the fields artist-name and playlist-url belong to repeatable field group?

The markup you shared above, it's from the output of the View to display repeatable field groups? The types shortcodes in that sample are both at the same level, i.e. they both refer to the same post, or in this case, the same group of repeatable fields being iterated over by the View, i.e. the artist name and the playlist-url match.

When I visit your link I see the modal open when clicking the artist name, but scrolling down observe that the content is blocked because of your content security policy, maybe that is the problem you are having?

hidden link

#1352965

Hi Nigel,

That is strange about the CSP. I do not have any additional rules setup, seems it was coming from Chrome. However now it appears to work? Not sure what is happening there.

Anyway now it does open, but as you can see the Spotify playlist is not matching the artist that is clicked. They both show the last added playlist by CCR. How do I associate the artist specific playlist with the artist name?

To answer your questions:
So the repeatable field group for artists belongs to the label post? YES

And the fields artist-name and playlist-url belong to repeatable field group? YES

Thanks
Chris

#1353693

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Hi Chris

id attributes must be unique, but you are adding multiple elements with id="myModal".

You need to update your markup so that the id's (and links to them) are dynamic, e.g. by appending the post id, such as id="myModal-[wpv-post-id]".

#1354147

Oh yes! Thanks that worked, however now the modal will not open on mobile. Any ideas?

#1354865

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Hi Chris

I can see the problem when I visit the page on my mobile, but I can't see what the cause is.

I copied and pasted the actual generated HTML from your page into codepen.io and checked, and there it works okay both on desktop and on mobile (hidden link).

So there doesn't seem to be a problem with the markup itself.

You may need to try disabling other plugins and switching theme to see if you can isolate something that is interfering, or connect your phone up to your desktop and use a tool that lets you debug remotely using the normal browser dev tools. Look out for JS errors or problems relating to the CSS.

#1355025

Thanks, I will try some more troubleshooting.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.