sketchuparchive
Forum Replies Created
-
Forum: Plugins
In reply to: [User Email Verification for WooCommerce] Exclude emails from social loginTry to contact “Woocommerce Social Login” support and they may help you in this issue.
I have edited upload.php file for this plugin, and deleted this line :
if ($filedata[“ext”] == “”) {
echo __(“File type does not meet security guidelines. Try another.”, ‘enable-media-replace’);
exit;
}Now it’s working fine for me
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi,
Thanks, It is now works great, sorry I didn’t notice the dot at the end of the code.
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi,
I sent to you the functions.php for my child theme on your email, Thanks
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi Harish.
Thanks for Your advice, but when I added the code above on functions.php, my website crashed, any thoughts?
Regards,
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi,
That mean it’s still not working. check this link :
https://www.sketchuparchive.com/download/4528/Could you send me your email so I can send to you an admin access ?
I will activate My coming soon page again in the next hour.Regards,
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi,
Should this plugin prevent hotlinking when the download is not set to members only ?
Forum: Plugins
In reply to: [Download Monitor] Prevent hotlinking is not workingHi Harish,
I just tested it in a private window, it work now, maybe I was logged in !
Thanks a lot for this plugin ??
Hello,
Firstly Great plugin,I have the same problem, I found that problem come from the theme, I am using flatsome theme, I hope you can help me,Thanks in advance,
Forum: Plugins
In reply to: [Custom Post Type UI] Add capabilities to taxonomiesThanks Micheal, it works like a charm, you are genius ??
Forum: Plugins
In reply to: [Custom Post Type UI] Add capabilities to taxonomiesHi Micheal,
Thanks a lot it is working right now, the general code turn off the capabilities for all users even admin, I am using “User Role editor” to Add the capabilities an turn it on, I have a lot of taxonomies and I want to add the capabilities to three of them, I tried to repeat the code above , but it didn’t work.Sorry for asking a lot of questions.
Forum: Plugins
In reply to: [Custom Post Type UI] Add capabilities to taxonomiesHi,
Thanks for that explanation,I do that, From where I can add capabilities for Taxonomies which have “Attach to Post Type: products” ?Forum: Plugins
In reply to: [Custom Post Type UI] Add capabilities to taxonomiesSorry for my Silly question, I am an Architect this is the first time I do these things, I put it like this :
function gaseous_taxonomy_caps( $args, $taxonomy ) { $args['capabilities'] = array( 'edit_terms' => 'edit_' . $taxonomy['name'], 'delete_terms' => 'delete_' . $taxonomy['name'], 'assign_terms' => 'assign_' . $taxonomy['name'], ); return $args; } add_filter( 'cptui_pre_register_taxonomy', 'gaseous_taxonomy_caps', 10, 2 ); $args = apply_filters( 'cptui_pre_register_taxonomy', $args, $taxonomy['name'], $taxonomy ); return register_taxonomy( $taxonomy['name'], $object_type, $args );
I now that is wrong,
Forum: Plugins
In reply to: [Custom Post Type UI] Add capabilities to taxonomiesHi Michael,
Thanks for the quick reply, I’m new to coding, I saw this post :
Here,
I will be thankful if you tell me how exactly the code should look like after adding capabilities, because every time I added it my website is crashed.regards,