Thank you.
Would also like the base Download Manager Pro 4.7.2 please. Thank you.
Awesome, please make sure the post type can include custom post types and not just “post” ๐
The filter would still be cool too!
Yes, what we’d like to do is create a custom post type like “Companies” so in that post type we can create custom fields like Company Name, Company Description, etc.
When uploading a new package, we want the drop-down select values of an option field to be pulled in from the Company Name, but in the db, what is stored is actually the post_id of that Company.
This way, in the future, if we change the Company Name or some other meta value, we do not have to re-associate all past packages with the new Company Name, etc.
For reference, this is a standard component of the ACF plug-in by Elliot Condon in which it is called a “relationship” field:
That’s really disappointing because it makes it almost impossible to maintain data integrity for fields. If you have to correct a spelling in a drop-down select value, for instance, it all of a sudden is no longer mapped to the same value used elsewhere.
We would definitely vote very strongly for the ability to add ACF relationship fields, or at the very least a filter that would allow users to add their own logic to how select field values are populated. The latter should seem to be a fairly easy addition no?
I have created an admin access to our website in case you want to see what’s wrong. Please keep us posted when you deploy the update. Thanks a lot!
Antoine
Hello, it says at the top that “WordPress PDF stamper plugin supports all PDF versions and formats. It will work with complex PDF files with mixed contents that contain links, forms, images, tables etc.” We really need to have both the links working and the pdf stamper… Can you please help? Thanks
Hello, that fixed my issue, thanks. However now I realised that any hyperlinks in the pdfs get removed with the watermarking. Could you please take a look?
I just commented out lines 112 and 114 and it seems to work now… Hope those lines were only logging stuff but not doing anything important. Also, replaced $pdf->Output($filename,’D’); by $pdf->Output(); to have the pdf open in browser rather that as downloaded file.
Fatal error: Class ‘WPDM\libs\DownloadStats’ not found in /var/www/html/wp-content/plugins/wpdm-pdf-stamper/wpdm-pdf-stampers.php on line 112
Hello,
I am already using the latest version… Bought and downloaded it today.
Is there maybe conflicts with wpdm-advanced-custom-fields plugin? Or custom themes? Can we maybe do a quick screen share this week so I can show you?
Thanks,
Antoine
figured it out manually editing import-post.php
Hello,
How does this work with checkboxes field? How should the multiple values be formatted in the CSV?
Thanks,
Antoine
The php code was not crashing, it’s just that the select input was not preselecting (selected=selected was never added to the tag because the condition $value == $value_meta was never true because of that extra \r character in one and not the other. exploding by “\r\n” instead of “\n” fixed the issue for me.
Can you please answer my question on the Amazon S3 plugin?
If it’s not possible to setup a way for the uploads to go straight to S3 I don’t really need the plugin anymore…
Thanks
No one is answering here so I figured it out by myself looking at the code.
I changed
$field_choices_array = explode(“\n”, $field_choices);
to
$field_choices_array = explode(“\r\n”, $field_choices);
line 292 in file wpdm-advanced-custom-fields.php which was causing the issue of saving the value in a string that wasn’t equal to one of the possible values.
The code to retrieve a custom field in a group is:
$meta_name = ‘__wpdm_acf_’ . $FIELD_GROUP . ‘_’ . $FIELD_NAME;
$meta_value = get_post_meta(get_the_ID(), $meta_name, true);
And displaying values only for one custom field value has to be done manually.
I was expecting better support spending ~$150$ for plugins and add-ons.
Please answer my question on the S3 plugin