Dilip Bheda
Forum Replies Created
-
Forum: Plugins
In reply to: [FAQ Block For Gutenberg] PHP Warning:Hello @solarian-ian,
Thank you for the report, I have fixed the error and released a new version.Thanks
Forum: Reviews
In reply to: [Post Type Transfer] Very good!@achimhahn Thank you
Forum: Plugins
In reply to: [Post Type Transfer] Post type “media” changes by forceHello @achimhahn,
I have fixed the above mentioned issue, Please check with the latest plugin.
ThanksForum: Plugins
In reply to: [Post Type Transfer] Post type “media” changes by forceHello, @achimhahn
Thank you for addressing this issue, sorry to say that our plugin does not work to move
Media
it works with other post types only.
We will remove the post select dropdown from themedia
screen and release the new version asap.Thank you
Forum: Plugins
In reply to: [ACF Field For Contact Form 7] Critical WordPress Error@dgroves90 okay great, I’m going to mark this issue as resolved.
ThanksForum: Plugins
In reply to: [MASS Users Password Reset] Reset Passwords without EmailHey @ohninhoj,
There is no filter or setting available in the free version. but you can disable email notifications using the below filter provided by WordPress.
function mupt_skip_email_notification( $args ) { if ( ! empty( $args['to'] ) && ! empty( $args['subject'] ) ) { if ( false !== strpos( $args['subject'], 'Reset Password of' ) ) { return array(); } } return $args; } add_filter( 'wp_mail', 'mupt_skip_email_notification', 10, 1 );
Thanks
Hello @alejosky,
This issue is not related to our plugin, because of the form action generate from
contact-form-7
.
But you can modify the cf7 form action using the below contact-form-7 filter.add_filter( ‘wpcf7_form_action_url’, function( $url ) {
$url = MODIFY_URL_HERE;
return $url;
} );Thanks
Forum: Plugins
In reply to: [ACF Field For Contact Form 7] can’t get form id and use in template?@bharti9107 The plugin is simply providing a field for the admin to select the contact form. Your query is related to a feature you wish to build not a support request/issue with the plugin.
Thank you
Forum: Reviews
In reply to: [ACF Field For Contact Form 7] NeatHi @eagerbob ,
We’re glad you like
ACF Field For Contact Form 7
, thanks for your review!Have a nice day!
Forum: Reviews
In reply to: [ACF Field For Contact Form 7] Quick and easy solutionThank You @rtpharry
Forum: Plugins
In reply to: [ACF Field For Contact Form 7] can’t get form id and use in template?@rtpharry Please provide the rating to the plugin.
Have a nice day!Thanks
Forum: Plugins
In reply to: [ACF Field For Contact Form 7] can’t get form id and use in template?Hello, @rtpharry
Add the below code in your current theme functions.php file.function get_acf_cf7_object() { return true; } add_filter( 'acf_cf7_object', 'get_acf_cf7_object' );
Now you can access contact form 7 object like this
$cf7_form = get_field( 'field_name' ); if ( $cf7_form ) { echo $cf7_form->id; echo [contact-form-7 id="$cf7_form->ID" title="Contact form 1"] }
Thanks
Forum: Plugins
In reply to: [FAQ Block For Gutenberg] Unable to enter answerForum: Plugins
In reply to: [FAQ Block For Gutenberg] Please prepare the plugin for glotpress translationHello @alexodiy
I have added javascript i18n support now you can see all translatable string on translate.www.ads-software.com.
Thank you