2. Did you have any thoughts on automatically assigning the title to the post during creation by CRED form?
(from above:) It is not reading more than two sets of quotes as nested within each other.
This code returns the value I want:
[wpv-post-title id="[wpv-search-term param='shipwreck_id']" output="sanitize"]
But I cannot nest that inside the cred_field, because it reads this:
[cred_field field='post_title' class='form-control' output='bootstrap' value='[wpv-post-title id="[wpv-search-term param='shipwreck_id']" output="sanitize"]']
And returns what is shown in Screenshot 1. It seems to be splitting the code at the innermost quote, so that it's reading these two as separate lines.
'[wpv-post-title id="[wpv-search-term param='
shipwreck_id']" output="sanitize"]'
Is it possible to define a term somewhere in the form and use it to set the id? If so, where do I put the definition of the attribute?
Something like: $shipwreckid=[wpv-search-term param='shipwreck_id']
So that I can use it in the cred field like:
[cred_field field='post_title' class='form-control' output='bootstrap' value='[wpv-post-title id="$shipwreckid" output="sanitize"]']
3. (a) Yes, it works correctly when inserted into a page not controlled by Elementor. The View is being displayed by the Toolset-created "element" (Elementor equivalent of a block) for adding Views to Elementor pages. Adding a Toolset button block like this actually breaks the styling for the rest of the page.
Edited to add: Wow, I over complicated this. All I needed to do was add class=button inside my link
<a class="button" href='edit-shipwreck-pg6/?shipwreck_id=[wpv-post-id]'>Create Hull Analysis</a>
(b) The $fromfilter was inserted by the wizard when I added the form to the view (see Screenshot 2). The $current filter successfully sets the test, so that solves this problem for me.