ioannup
Forum Replies Created
-
Forum: Plugins
In reply to: [Edit WooCommerce Templates] Also edit WooCommerce extensions?Hey there! I added Integration with the WooCommerce Product Bundles plugin to 1.1 version. Please, check it.
Also, added
woo-edit-template-all_templatesandwoo-edit-template-full_template_pathfilters dor integration with other similar plugins.Forum: Plugins
In reply to: [Edit WooCommerce Templates] Compatibility with WooCommerce 3.8?@bljh I’ve just tested the plugin with WooCommerce 3.8.1. It works fine. I’ll update this info in the next version. In general, the plugin has very few dependencies from WooCommerce – so, don’t worry about it.
Happy New Year!
Best regards,
Ivan.Forum: Plugins
In reply to: [Advanced Access Manager – Access Governance for WordPress] Wrong capabilityThat’s what an official source says
While checking against a role in place of a capability is supported in part, this practice is discouraged as it may produce unreliable results.
https://developer.wordpress.org/reference/classes/wp_user/has_cap/
Forum: Plugins
In reply to: [Advanced Access Manager – Access Governance for WordPress] Wrong capabilityForum: Plugins
In reply to: [Advanced Access Manager – Access Governance for WordPress] Wrong capabilityCould you send me a link to official source about it?
Forum: Plugins
In reply to: [Useful Admin Menu] Changelog?Thank you!
Forum: Plugins
In reply to: [Useful Admin Menu] Changelog?Hey there! Sorry, my bad.
It was small fixes.
Will add details about updating start from the next version.
Thanks for the heads up!3) Not shown in the screenshots.interesting why? Why you don’t let it for yourself in screenshots, but allow it for demo?IMO you can’t leave demo for pro version in the description of the free version. it’s a lie.
- This reply was modified 6 years, 7 months ago by ioannup.
Forum: Plugins
In reply to: [Edit WooCommerce Templates] Modify My Downloads template@dechtman It seems you should edit
order/order-downloads.phptemplate https://i.imgur.com/Jh6iSmg.pngHello @autostrada!
It happens because Hustle stores some data ( ip, request uri, time, etc. ) for each showing or submitting forms when tracking is enabled. If you are interesting only to have information about conversation rate and total count of showing and remove additional data ( ip, request uri, time, etc. ) – you could try adding the following snippet in a MU plugin ( more info about MU plugins is here )<?php function wpmu_hustle_brief_tracking_data( $data ) { return null; } add_filter('hustle_tracking_data', 'wpmu_hustle_brief_tracking_data');The
hustle_tracking_datafilter will be added in 3.0.7 vesrion of the plugin. Until it’s not there you could add it toinc/hustle-model.phpfile via FTP to_logfunction
$data = apply_filters( 'hustle_tracking_data', $data );
before this line
return $this->add_meta( $type, $data );Also, if you want to delete already existing tracking data – you could temporary add this snippet to the MU plugin
function wpmu_hustle_remove_old_tracking_data() { global $wpdb; $wpdb->update( $wpdb->prefix . 'hustle_modules_meta', array( 'meta_value' => null ), array( 'meta_key' => 'popup_view' ) ); $wpdb->update( $wpdb->prefix . 'hustle_modules_meta', array( 'meta_value' => null ), array( 'meta_key' => 'popup_conversion' ) ); } add_action('init', 'wpmu_hustle_remove_old_tracking_data');Then refresh any page on your site and remove this part of the MU plugin. Then you should export and import hustle_modules_meta table (it will decrease your 54Mb table to 11Mb).
Best regards,
Ivan.Forum: Reviews
In reply to: [Edit WooCommerce Templates] Does Not Show UpSorry for the delay! It seems DISALLOW_FILE_EDIT or DISALLOW_FILE_MODS is enabled ( probably in wp-config.php file ). You should disable it before using the plugin. If it won’t help, please, let me know.
Best regards,
Ivan.Forum: Reviews
In reply to: [Edit WooCommerce Templates] Does Not Show Up@shivancouver I wasn’t impressed to see that you have only one and two-star reviews from you for FREE plugins. Hundreds of people use this plugin as well as [All-in-One WP Migration] plugin and they work for them but for you … So, go ahead! You mentioned
will change my rating, not sure how– maybe it’s better to use Support Threads for this stuff?Forum: Plugins
In reply to: [Edit WooCommerce Templates] Plugin Not Showing UpHi!
Thank you @maladings for the help!@vkohar and @maladings,
Probably you had set the DISALLOW_FILE_EDIT constant to true in your wp-config.php file. We should remove this constant or set it to false. But, yeah, it’s not clear for understanding it – we’ll add an admin notice for similar cases and probably, we’ll add a new constant for cases if you want to enable editing only WooCommerce templates but to disable editing other files via the admin area.Best regards,
Ivan.Forum: Plugins
In reply to: [Edit WooCommerce Templates] theme file is copied to parent theme of childHi @dilusionz!
Thank you for mentioning it!
I have fixed it now in the 1.0.3.1 version.
Let me know how it goes for you.All the best,
Ivan.Forum: Plugins
In reply to: [Edit WooCommerce Templates] Bulk ActionHi @dartagnune!
This feature was added today. Please, check it.
Thank you!
Best regards,
Ivan.