adminbart
Forum Replies Created
-
It would change a page builder to a dynamic page builder.
Hello Adreas, that could work if I only need to display a text field. No other type of fields. But I want to be able to do everything I could do in a template file: loop custom post queries and, for example, display an image gallery.
First I thought this would be possible with an php widget. Then I tried by creating my own shortcode. Both methods don’t work.
Perhaps creating a widget is a solution? I haven’t created a widget before but I’m gone give that a try.
Hello Boaz,
Glad you’r asking. I did not manage to solve this issue yet. I bought to pro version. Perhaps that helps ??
Realy strange that a simple “get field” won’t work, only in a template file (eg. single.php). I’ve been trying so many diferent approaches but nothing seems to work.
The combination of your page builder and ACF would be a killer combination … And I’m getting no help from Eliot so far, the author of ACF ??
Kind regards, Bart
Forum: Plugins
In reply to: [Contact Form 7] Please ensure the message is RFC 5322 compliant.Hello,
I’ve got the same problem (RFC 5322 compliant error). This only is the case when the form is being send to a Hotmail email adres. The form is perfectly send to a gmail adres.
Perhaps, you’ve solved this problem?
Goodmorning respectyoda, thats wright, I would like to show the image.
If it possible ??Have a nice day!
BartGreat! You’re a genius! Thanks!!!
But because I’m using a texfield I see a field with the URL in it, but not an image. Perhaps there’s a way to show the image?
Hello Respectyoda,
I can’t seem to get it right ??
But as I mentioned: I’m not a developer.How can I set a field to readonly?
How can I retrieve the fields ID?Is it the main functions.php-file of the theme where I add this?
<?php // instead of the URL I want an image $url = '<img src="'. $_GET["foto"] . '">'; function my_filter_function( $data, $field_id ){ if( $field_id == 3 ){$data['default_value'] = $url;} return $data; } add_filter( 'ninja_forms_field', 'my_filter_function', 10, 2 );
Should the code look like this?
I hope I’m not asking too much of your time ??
Kind regards,
BartThanks for the fast answer. I will check your link over an hour from now.
I want to use the image url, because there are more than one item on a page.
Thank you for your reply!
Perhaps I don’t undestrand your answer, but I don’t need it to be in a field, it just needs to be shown somewhere in the form and in the emails (admin and user).
But perhaps I need to modify a field as you say, can you help me on how to do that?
I’m a designer, not a developer, so this may sound a stupid question ??Kind regards, Bart
Forum: Plugins
In reply to: [Edge Suite] Insert animation thrue 'PHP Code Widget'Hi ti2m,
Thank you for your reply. I tried this but does’nt do the trick ??
<?php if(function_exists('edge_suite_comp_view_inline')){ echo edge_suite_comp_view_inline(1); echo 'ok'; } ?>
It echoes ‘ok’ so the function exists. I did show multiple compositions using iframes. Pretty ugly solution, certainly when the design needs to be responsive.