The Pods Framework is a Content Development Framework for WordPress - It lets you create and extend content types that can be used for any project. Add fields of various types we've built in, or add your own with custom inputs, you have total control.
I'm using the following template and page to show a paginated view of all pods of type "records". The problem is that the relationship magic tags render perfectly on the first page. When I go to any subsequent pages, they render blank. This issue started to present itself in a recent update.
I upgraded to 2.3.5 RC 1 to fix the php warning message for blank foreach fields.
Any help would be greatly appreciated. Thanks!
Template
<div id="jquery_jplayer_{@id}" class="cp-jplayer"></div>
<div class="record clearfix">
<div class="record-cover">
<img src="{@album_cover_url}" alt="Album Cover" />
<div id="cp_container_{@id}" class="cp-container">
<div class="cp-buffer-holder"> <!-- .cp-gt50 only needed when buffer is > than 50% -->
<div class="cp-buffer-1"></div>
<div class="cp-buffer-2"></div>
</div>
<div class="cp-progress-holder"> <!-- .cp-gt50 only needed when progress is > than 50% -->
<div class="cp-progress-1"></div>
<div class="cp-progress-2"></div>
</div>
<div class="cp-circle-control"></div>
<ul class="cp-controls">
<li><a href="#" class="cp-play" tabindex="1">play</a></li>
<li><a href="#" class="cp-pause" style="display:none;" tabindex="1">pause</a></li> <!-- Needs the inline style here, or jQuery.show() uses display:inline instead of display:block -->
</ul>
</div>
</div>
<div class="record-info">
<span class="record-name">{@name}</span>
<span class="record-meta">{@rt_association.name} - {@genre_association.name}</span>
<span class="record-artist"><a href="{@artist_association.artist_url}" target="_blank">{@artist_association}</a></span>
<span class="record-label"><a href="{@label_association.label_url}" target="_blank">{@label_association.name}</a></span>
<span class="record-download button"><a href="{@download_file_url}" target="_blank" onClick="javascript: _gaq.push(['_trackPageview', '{@name}']);">Download</a></span>
</div>
</div>
I'm using the following template and page to show a paginated view of all pods of type "records". The problem is that the relationship magic tags render perfectly on the first page. When I go to any subsequent pages, they render blank. This issue started to present itself in a recent update.
I upgraded to 2.3.5 RC 1 to fix the php warning message for blank foreach fields.
Any help would be greatly appreciated. Thanks!
Template
Page