Why are you using the slug as a query parameter, and not just in the URL path?
Assuming your Post page is set up with the correct content-type, navigating to a page, and sending the data, should automatically add the slug into the URL path, so you shouldn’t need to do anything to achieve what you’re trying to do - it’s the standard built in Bubble behaviour.
And even if your Post page doesn’t have a defined content type, you can still get the data from the URL path.
Maybe I’m missing something here, or misunderstanding your question - but you shouldn’t need to do anything…
So maybe clarify what the actual problem is here - i.e. why it’s not working as expected? - What have you tried? etc. (maybe you haven’t set your Post page up with the correct content-type?)
The post webpage then uses the slug to display the correct data. This all works fine.
From what you suggested I tried just deleting the ‘send more parameters to the page’ option but it doesn’t then look like the post title is in the url any more.
Firstly, I’m not sure why you need to do a search for the data to send - surely you can just send the current cell’s data (just to keep it simple)?.
Secondly, if your destination page has the content type Article then there’s no need to send any URL parameters to the page (the slug will automatically be set int he URL path and the destination page will automatically read it from there).
From what you’ve described it sounds as though your Post page isn’t set up to receive data (or at least not Article data) - if it was then it should work - but without knowing more about your data structure or you page settings it’s impossible to identify the problem.
Feel free to share more info and screenshots about how your destination page is set up to receive data.
Thank you my friend - you have steered me to the right path.
My ‘data to send’ search was a dummy search returning null (deliberately) and I was using the slug as the parameter to send to be able to display the correct data within the post webpage.
I had previously read somewhere that using the slug was good for SEO.
I have now amended the data to send to the current article and have realigned all of the data fields within the post page to grab the correct article from the current article rather than using the slug parameter within the url.
As you say this then enables the url to be as I wanted.