DTECHNZ
Forum Replies Created
-
Forum: Plugins
In reply to: [Range Slider Addon for Gravity Forms] It cannot save 0 valueThanks, keep me in the loop.
BTW, very nice and simple plugin though. Works really well.
Forum: Plugins
In reply to: [Range Slider Addon for Gravity Forms] It cannot save 0 valueI made a workaround, but ideally, I hope you can update from the plugin end. Current issue is GF treat 0 as empty.
add_filter('gform_field_validation', function ($result, $value, $form, $field) {
// Only apply to form ID xx
if ((int)$form['id'] !== xx) {
return $result;
}
$range_slider_field_ids = [1, 2, 3, 4, 5, 6];
if (in_array((int)$field->id, $range_slider_field_ids, true)) {
if ($value === '0' || $value === 0) {
$result['is_valid'] = true;
$result['message'] = '';
}
}
return $result;
}, 10, 4);Forum: Plugins
In reply to: [WooCommerce] WC-BLOCKS-DATA.JS Error Loading checkout or page carI had similar issue before, check if you have your /woocommerce folder in your child theme, if so, that may cause the issue.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] Offload images to CF@sipher1975 His beta version can offload previous uploaded images from local server to CF images then remove from local storage, to free up space.
Try the link from github above.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] Offload images to CF@sipher1975 I don’t use Avada Lazyload as WP or even without that can manage the images well. I will have a try and let you know.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] Offload images to CFThanks mate, I will test it out and let you know.
Cheers
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] Offload images to CFThanks mate. Look forward to your project.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] Offload images to CFCheers mate.
I do have schedule backup for my website, I assume I can delete from local folders and only use CF images if offload successfully?
If I delete all the images from upload folders, will I be able to see them in media library as thumbnails from CF or broken images?
Forum: Plugins
In reply to: [WP Crontrol] Have some issues when move website to PleskYes I did tried everything, also the hoster, but no one can tell what is happening… 🙁
Forum: Plugins
In reply to: [WP Crontrol] Have some issues when move website to PleskI believe it is relate with Plesk server, because I moved website to other testing server, works fine, moved to plesk, not working.
Plesk server’s cron was off, so nothing to override wp control. When I click run now, wp control shows error, but server side no error from the log files.
I tried fresh WP with no plugins, but only wp control, no luck, now I can only confirm it must be something wrong with the server setting so they don’t computable with each other , but cannot find where.
Forum: Plugins
In reply to: [WP Crontrol] Have some issues when move website to PleskYea, very strange, so I cannot tell if it is the plugin’s issue as it works fine on other server, I just don’t know how to make it work with Plesk.
When I click run now button for customised cron jobs I created, I got 404 link is https://github.com/johnbillion/wp-crontrol/wiki/Problems-with-spawning-a-call-to-the-WP-Cron-system#unexpected-http-response-code-404
For wordpress plugin cron jobs, it shown action value none and next try is 57 years later.
- This reply was modified 3 years, 2 months ago by DTECHNZ.
Forum: Plugins
In reply to: [Integration for WooCommerce and Salesforce] Duplicate order@crmperks can you please take a look?
Forum: Plugins
In reply to: [Integration for WooCommerce and Salesforce] Duplicate orderSame issue here.
Forum: Plugins
In reply to: [Gravity PDF] Uploaded Image Files Display in PDFThanks for this, I will have a try later.
CheersForum: Plugins
In reply to: [Gravity PDF] Uploaded Image Files Display in PDFWell my solution is not a good example, but works for me for urgent practise.
I modified /src/helper/fields/field_fileupload.php From line 100.
Usedinstead.
However, beware if you have multi image files uploaded as this will cause the pdf size increased significantly.
This is not a perfect solution, as I have to stop updating. I am still looking for hooks to override from functions.php.