Compute
Forum Replies Created
-
Forum: Plugins
In reply to: [PCo Image Widget Field] How to use pcoiwf_preview_sizeIf you have widget in the administration, larger than default
pcoiwf_preview_size
can be changed. You just hook into it and return your own image size:function my_pcoiwf_preview_size() { return 'large'; } add_filter( 'pcoiwf_preview_size', 'my_pcoiwf_preview_size' );
Forum: Plugins
In reply to: [SendGrid] Keep old versionsAwesome! Thank you ??
Forum: Plugins
In reply to: [PCo Image Widget Field] Id instead of PictureAwesome. You’re very welcome ??
Be sure to remember to vote for “works” and maybe a review ??
Forum: Plugins
In reply to: [PCo Image Widget Field] Id instead of PictureHi! Glad you like it and thanks for your question!
Outputting the image inside your widget function could look something like:
public function widget( $args, $instance ) { echo wp_get_attachment_image( $instance['myID'], 'thumbnail' ); }
For more, check these functions out:
https://developer.www.ads-software.com/reference/functions/wp_get_attachment_image/
https://developer.www.ads-software.com/reference/functions/wp_get_attachment_image_src/Forum: Plugins
In reply to: [SendGrid] Keep old versionsAwesome, thanks!
Forum: Plugins
In reply to: [Proxy Cache Purge] Use this plugin to programmatically purgeOkay, thanks ??
Forum: Plugins
In reply to: [Proxy Cache Purge] Use this plugin to programmatically purgeThis is only an example. But lets say you have an author custom post type and it have a connection to posts.
In the bottom of every post a description of all connected authors will show. If one of the authors description is getting updated (from the author post type) then the post connection will not get purged.
If you could either purge those posts yourself after an author update or include a filter inside the plugins which includes ‘extra’ purge pages this could solve the problem.
Forum: Plugins
In reply to: [Proxy Cache Purge] Use this plugin to programmatically purgeYes custom post types. But connection via. posts 2 posts so when one connection updates, the other one should get updated too.
Forum: Plugins
In reply to: [Widget Image Field] Multiple images implementationYou should check out pco image widget field. It works for 3.5+ and does accept multiple fields:
https://www.ads-software.com/plugins/pco-image-widget-field/Forum: Plugins
In reply to: [SendGrid] Do you accept pull requests?Thats awesome! Looks like It’ll not far from the WP-sendgrid plugin. I might make the switch soon then ??
Forum: Plugins
In reply to: [EWWW Image Optimizer] Use server tools instead of pluginBut awesome! Thank you very much!
Forum: Plugins
In reply to: [EWWW Image Optimizer] NoticeAh, saw you’ve fixed it in the dev version.
Could you maybe update to a 2.1.1?
Forum: Plugins
In reply to: [SendGrid] Config via globals constantsI’ve added a pull request for that. Hopefully SendGrid will answer on Github soon ??
Forum: Reviews
In reply to: [PCo Image Widget Field] Does what it says on the tin!Glad to hear! Thanks for your feedback! ??
Forum: Plugins
In reply to: [PCo Image Widget Field] not workAwesome it worked out for you. ??