This is for a pdf generator, so I have to send a specific url that in turn loads in entries based off of that url. I used to load in entries off of a segment like:
site.com/template/entries/14|15|16
But since Google killed the pipe character in url addresses, I have to find a workaround. Now the same address from above would be:
site.com/template/entries/14|15|16
I can still pull the last segment and replace | with | in a preload variable, but I can’t find a way to use that preload variable to then get EE to pull the entries.
Here’s my preload:
{preload_replace:url_segment="{exp:low_replace find='|' replace='|'}{segment_3}{/exp:low_replace}”}
it generates 14|15|16
Here’s my channel call:
{exp:channel:entries channel="channel" entry_id="{url_segment}”}
{title}
{/exp:channel:entries}
If I just type in the entry string (14|15|16) in the preload, instead of using the url segment, it works.
Does anyone out there have a solution?