Antoine Chkaiban

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
in reply to: Previous Versions of Add-ons #94798

Thank you.

in reply to: Previous Versions of Add-ons #94777

Would also like the base Download Manager Pro 4.7.2 please. Thank you.

in reply to: Lookup values for ACF select fields #93685

Awesome, please make sure the post type can include custom post types and not just “post” ๐Ÿ™‚

The filter would still be cool too!

in reply to: Lookup values for ACF select fields #93607

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:

Relationship

in reply to: Lookup values for ACF select fields #93565

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?

in reply to: WordPress PDF stamper flattens hyperlinks #92828

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

in reply to: WPDM PDF STAMPER #92058

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

in reply to: WPDM PDF STAMPER #78416

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?

in reply to: WPDM PDF STAMPER #75695

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.

in reply to: WPDM PDF STAMPER #75687

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

in reply to: WPDM PDF STAMPER #75657

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

in reply to: Mapping Custom Fields in advanced CSV Import #67382

figured it out manually editing import-post.php

in reply to: Mapping Custom Fields in advanced CSV Import #67380

Hello,
How does this work with checkboxes field? How should the multiple values be formatted in the CSV?

Thanks,
Antoine

in reply to: advanced custom fields bug #67241

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?

S3 AddOn issues

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

in reply to: advanced custom fields bug #67177

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

Viewing 15 posts - 1 through 15 (of 15 total)