Hello. Thank you for contacting the Toolset support.
Well - I do not able to see any form as it says permission denied. Looks like I need access details to see your form.
=> hidden link
Additionally - where I can see the portfolio images on your staging site? I need o check first if its possible to add such content.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I would additionally need your permission to de- and re-activate Plugins and the Theme, and to change configurations on the site. This is also a reason the backup is really important. If you agree to this, please use the form fields I have enabled below to provide temporary access details (wp-admin and FTP).
I have set the next reply to private which means only you and I have access to it.
I logged in to your system and as I understand you want to upload the images using Tooslet forms which is displayed on front-end under section "Portfolio gallery"
=> hidden link
If this is correct - "Portfolio gallery" is a repeating field group (RFG) so you can not add RFG to your Form as of now as its not supported or not possible as RFG internally used as child post. And when you add new entry its not possible to have ID of post you are creating - its only possible once your post is created so it needs a separate CRED form.
I re-created a form with the option to publish the information using the repeating fields which I had go to another page where I used the auto-create option to insert the fields that were not included in the original form for submission as they were not available.
When the form was auto-created it showed the [types field='portfolio-image' title="[types field='portfolio-image-caption'][/types] in the form. When I went to the form on the page it only showed one field to upload an image but with only one set of fields. After checking the post on the front-end after submission, I saw no other images in the gallery that I had uploaded in the repeating fields Cred Form, so added extra fields to the form and uploaded extra images. None of the gallery images are currently showing (which I would now expect them to). I'd like some help in understanding why that is not happening in the single post view please...
I am using:
Portfolio gallery - a list with a zoom-in effect
member-portfolio-images-form
And you can see the effect on the David Smith single post here: hidden link
Whereas the members view is here: hidden link
I would be grateful for some help. However, I have noticed in the past that you tend to just post urls to existing documents, and so I would request that you would provide a solution with the required code or a description as to how I would solve this please.
I've adjusted the filter added to view as well as uncheck the checkbox as highlighted with the following image:
=> hidden link
I see it's displaying correct images from Repeating Field Group.
=> hidden link
=> hidden link
So, the display part is OK now.
Now, I've added following code at Toolset => Settings => Custom Code tab:
add_filter('cred_success_redirect', 'func_redirect_to_image_form',10,3);
function func_redirect_to_image_form($url, $post_id, $form_data)
{
if ($form_data['id']==1264){
$url = '/member-portfolio-images-form/?parent_id='.$post_id;
}
return $url;
}
Regarding uploading the images for Repeating Field Group "Portfolio gallery", I see you have created a new form for that. I've updated that form and added the parent field so whatever new entry you create it will be linked to the parent (Member Portfolio).
<div class="form-group">
<label>Member Portfolio (Parent):</label>
[cred_field field="@portfolio-gallery.parent" value="[wpv-search-term param='parent_id']" class="form-control" output="bootstrap" select_text="--- not set ---"]
</div>
I also changed the form setting to "Keep Displaying the Form" as you should NOT add multiple fields as you can create one entry at a time. So if you want to upload 10 images to "Portfolio gallery", you need to upload it one by one.