Richard Webster
Forum Replies Created
-
No worries matey.
That’s nothing to do with this plugin mate.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Button shown to anonymous usersAfternoon fella. Very strange but it seems like maybe the download form is being cached. Does your site use caching plugins or features?
Does the download action still work for guests when you tick the option to require login?
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Old versionsHi mate, if you’re looking for a version that supports PHP versions 7.0, 7.1, 7.2, and 7.3, here’s a link:
https://drive.google.com/file/d/1s3Mg-tLXnLK5D2M9XHdkYWQon_i0p9ey/view?usp=sharing
Forum: Plugins
In reply to: [Frontend Reset Password] Is this plugin abandoned?Hi mate, not abandoned but I haven’t had time to work on any updates for a while. However, it still works with the latest version of WordPress.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] show download button for paid customersHi there, you can enable the Owned Products setting to allow repeat download of purchased products on shop and product pages. Purchased products can already be downloaded from the customer account page.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] PHP VersionHere’s a link to download version 3.3.32 mate.
https://drive.google.com/file/d/1s3Mg-tLXnLK5D2M9XHdkYWQon_i0p9ey/view?usp=sharing
Forum: Plugins
In reply to: [Free Downloads WooCommerce] free download in product tableThat might be the best solution mate.
In future you should really use my forums for Pro Edition support, like you did the other day ??
https://squareonemedia.co.uk/community/forums/forum/premium-support/free-downloads-woocommerce/
Forum: Plugins
In reply to: [Free Downloads WooCommerce] free downloadable productsHi mate. You want to add just the single line I posted above. I edited it after posting.
Use the plugin called Code Snippets, create a new snippet and paste that line in there, then activate the snippet.
This will allow paid products to be included. Bear in mind that other restrictions still apply, such as if you’ve set the options to restrict specific categories or individual products for free download.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] free downloadable productsHi mate, here’s a custom snippet that makes paid items downloadable.
add_filter('somdn_is_free', '__return_true', 99);
- This reply was modified 2 years, 5 months ago by Richard Webster.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] SpamHi mate, there’s a custom snippet you can add to your site which adds a basic honeypot spam protection method. You could give that a try.
add_action('somdn_before_form_inputs_simple', 'custom_somdn_output_honey_pot_antispam'); add_action('somdn_before_form_inputs_variation', 'custom_somdn_output_honey_pot_antispam'); function custom_somdn_output_honey_pot_antispam($product_id) { echo '<div class="custom-somdn-download-form-website">'; echo '<input type="text" name="website" id="website" autocomplete="off" tabindex="-1">'; echo '</div>'; } add_action('wp_footer', 'custom_somdn_hide_honey_pot_antispam'); function custom_somdn_hide_honey_pot_antispam() { echo '<style>.custom-somdn-download-form-website {display: none!important;}</style>'; } add_filter('somdn_is_download_valid', 'custom_somdn_is_download_valid_honey_pot', 20, 2); function custom_somdn_is_download_valid_honey_pot($valid, $product_id) { $honey_pot = sanitize_text_field($_REQUEST['website']); if (!empty($honey_pot)) { return false; } return $valid; }
Forum: Reviews
In reply to: [Free Downloads WooCommerce] Slow supportYea I read it and thought “That sounds doable, I’ll look into that one” but I should have at least replied with that on the forum ??
Forum: Reviews
In reply to: [Free Downloads WooCommerce] Slow supportHi mate, I tend not to respond to new feature requests until I look at feasibility ??
Bug reports and support for existing features are investigated as a priority.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Log of user downloadsMorning mate. The Pro Edition has an option to enable download tracking which shows a log for each download including which user and the product/download details.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Can I use the plugin with virtual products?Hi mate, this plugin is for free downloads only.