Prafulla Kumar Sahu
Forum Replies Created
-
@steve Stern, thank you for your suggestion, I have asked there and also in stackoverflow but getting no reply from any where.
Forum: Plugins
In reply to: [WooCommerce] Default variation not selected by defaultHere is the url :- https://grontkontor.dk/produkt/stilolinea-ingeo-kuglepen-i-bioplast-med-tryk/ may be this can give better idea about the issue.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] How to add taxonomy field tag to a page?I tried something like
`’label’ => _x(‘Tags’, ‘ Options’, ‘mytheme’),
‘key’ => ‘image_tags’,
‘name’ => ‘image_tags’,
‘taxonomy’ => ‘image_tag’,
‘field_type’ => ‘text’,
‘allow_null’ => 1,
‘load_save_terms’ => 1,
‘return_format’ => ‘id’,
‘add_term’ => 1`Did not get any success.
Forum: Plugins
In reply to: [Flamingo] Exclude IPadd_filter( 'flamingo_add_inbound', function($args){ unset($args['meta']['remote_ip']) });
may solve your problem.
Forum: Plugins
In reply to: [Flamingo] Issue regarding new flamingo_htmlize filterProblem with new filter is We can not change the display of field as the filter is out side “ul”, Can I think about adding another filter inside “li”, that will give user a huge power to bring modification according to their wish.
Forum: Plugins
In reply to: [Flamingo] SuggestionCan I hope this is coming in some update ?
Forum: Plugins
In reply to: [Contact Form 7] How to add support for new fieldif ( $submission = WPCF7_Submission::get_instance() ) { $attachment = wp_upload_dir()['basedir'] . '/wpcf7_uploads/' . $file['name']; $submission->add_uploaded_file( $name, $attachment ); }
makes it work, but only last file is going in mail and not the all .
Forum: Plugins
In reply to: [Flamingo] How to add support for new fieldgot the idea
wpcf7_validate_multifile
filter will do the job, I will try to make it work, if there is any example or snippet please let me know, that will be great.Forum: Plugins
In reply to: [Contact Form 7] How to add support for new fieldgot the idea
wpcf7_validate_multifile
filter will do the job, I will try to make it work, if there is any example or snippet please let me know, that will be great.- This reply was modified 7 years, 7 months ago by Prafulla Kumar Sahu.
Forum: Plugins
In reply to: [Flamingo] How to add support for new fieldok, by adding replaceFileInput: false now I can see in network section, my multi-field is sending files when form is submitted, but still flamingo not saving these files, neither it is saving default contactform7 file, but it is saving name, that is enough, I would like to see names of my files there. may be need some configuration in contact form edit > additional settings .
Forum: Plugins
In reply to: [Contact Form 7] How to add support for new fieldok, by adding replaceFileInput: false now I can see in network section, my multi-field is sending files when form is submitted, but still unable to get those in email, please give me some idea, when ever you are here.
Forum: Plugins
In reply to: [Flamingo] Only want to save emailHint: conatact form edit section additional section. google it and you will get it.
Forum: Plugins
In reply to: [Flamingo] php 7.1 compatibility?Yes, It is compatible to 7.0 as well as 7.1 . I have used it.
Forum: Plugins
In reply to: [Flamingo] 2 question for the plugin.I can provide you ideas and also able to make things work to some extend,as I have not done, I can say, I may able to achieve this. but I will only provide some idea here as can not code too much here.
You need to add message id/ some identifier and a status field(boolean 0 = no and 1 = yes is enough ) in a separate table so that the table will be independent of flamingo and wordpress. now can trigger some action to update that status .
for problem two.
If you are already sharing the database, it is easily possible . if not there are some way. may be updating other database with this using a web-hook or something .
Forum: Plugins
In reply to: [Flamingo] Does Flamingo save form file attachments anywhere?I will suggest keeping the file urls, it is very much possible. when you are uploading the files, keep the urls as hidden field that will be saved by flamingo. I have tested while solving my other problem.