Joffrey Nicoloff
Forum Replies Created
-
Thank you David 🙂
No news from the author of the plugin and big lie on the pro site: don’t believe in “100% Satisfied or Refunded No Risk!”. The author is just ignoring you so they don’t have to pay back.
Hello,
Did you find my PRO account ?
I have no news from you since my last message.
Thank you.Customer ID : 2693271
I tried to contact you several times by email on [email protected] and once from your contact form on wpblockslider.com.
I didn’t find support ticket system on both : freemius.com and wpblockslider.com
Thanks
Have a look here : It’s your official file :
https://plugins.trac.ww.wp.xz.cn/browser/royal-elementor-addons/tags/1.3.77/assets/js/admin/templates-kit.jsLine 263
Hello Nick,
Thanks for your reply.
I always download plugins from official WordPress repository or author website for paid plugins. I found this code in your current plugin files from WordPress repository.
I reinstalled twice. Once from WP plugins dashboard, once other via FTP after downloading the plugin directly from here.
So you confirm, code provided in first post is form your side ?
Thank you.
Best regards.
JoffreyForum: Plugins
In reply to: [WooCommerce Blocks] Translate : Add a couponThank you Saif 🙂
Hope this will be fixed in one of next updates 😉
Best regards.
JoffreyForum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Double ordersHi,
thanks for information. When do you expect next release ?
Thank you.
Best regards.Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Create form from PHP (not with UI)Hello Konrad,
good to know for registering forms from PHP in the future 😉
I’m running the import only on my plugin activation using register_activation_hook().
Have a nice day too.
Best regards.
JoffreyForum: Plugins
In reply to: [Advanced Custom Fields: Extended] Create form from PHP (not with UI)Hi,
I finally found a way.
I exported all forms in json from the dev site and put the file in the plugin.
I’m using the acfe functionacfe_import_form($args)to import forms on my plugin activation.I’m running something like that (inside my plugin class) :
$acfe_forms_file = self::get_plugin_dir() . "acfe_forms_settings.json"; if ( file_exists( $acfe_forms_file ) && function_exists( 'acfe_import_form' ) ) { acfe_import_form( file_get_contents( $acfe_forms_file ) ); }- This reply was modified 3 years, 7 months ago by Joffrey Nicoloff.
- This reply was modified 3 years, 7 months ago by Joffrey Nicoloff.
Thank you Konrad 🙂
Have a nice day too.
Best regards.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACF Form loaded from ajax doesn’t worksThank you @hwk-fr .
acf.do_action('append', $('#popup-id'));is what I missed in the ACF doc 😉Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACFE Form – Repeater HTML RenderThank you @hwk-fr.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Problem with ACFE GalleryHello,
I found a solution, the “issue” is coming because this field has to load the WordPress media Library to user SO user role must have capability to
upload_files.Check permissions here : https://ww.wp.xz.cn/support/article/roles-and-capabilities/
In my case, I just changed my custom role caps from
subscribertoauthor:
add_role( 'my_role', 'Role Name', get_role( 'subscriber' )->capabilities );You have to add some code to prevent users seing media from other users.
You can try something like that :add_filter( 'ajax_query_attachments_args', 'show_current_user_attachments', 10, 1 ); function show_current_user_attachments( $query = array() ) { $user_id = get_current_user_id(); if( $user_id ) { $query['author'] = $user_id; } return $query; }Ref : https://developer.ww.wp.xz.cn/reference/hooks/ajax_query_attachments_args/
Hope this helps.
- This reply was modified 3 years, 9 months ago by Joffrey Nicoloff. Reason: Add code for show only user attachments
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Post Type – Search Engine ExcludeHi,
you can’t with ACF Extended settings.
As you said, you can use a SEO plugin (I’m using SEOPress that can do this kind of job).
Or add this kind of snippet :
add_action( 'wp_head', function() { $post_type = get_post_type(); if ( in_array( $post_type, [ 'cpt_1', 'cpt_2' ] ) { echo '<meta name="robots" content="noindex">'; } }, 10 );Google suggests to add robots.txt rules : https://developers.google.com/search/docs/advanced/crawling/block-indexing