Forum Replies Created
-
AuthorPosts
-
Igor Gouvêa
ParticipantHi Long
I understood. And is it possible to diEr what file types are allowed? I say this because it enables the camera but doesn't attach the video produced by the iPhone
Igor Gouvêa
ParticipantThe reason I want to remove the option to open the camera is because I placed the site inside an iphone app (using Webview). And when I open the camera on the iphone in the Video option the application closes.
Igor Gouvêa
ParticipantSee the custom field images:
See the options (in Portuguese - Brazil) of the field on the iPhone:
Igor Gouvêa
ParticipantHi Long
Thanks for the guidance.
The problem was with a plugin called Admin 2020 (which deals with the look of the WP administration)
Inside it had a css configuration.
Blacked out and it worked.
#pageparentdiv { display: none!important; }Igor Gouvêa
ParticipantHi
I had already tried that.
I did it again as shown in the images below.
Did not work.
Igor Gouvêa
ParticipantHi
I'm getting to the goal. Just one more detail:
My meta-key is a group. See the image:
In my code I put the group name in meta_key but meta_value is a json.
How do I specify that the meta_value is "equipamento"?
function equipamentos() { $args = array( 'post_type' => 'diario-de-obra', 'meta_key' => 'grupo-equipamentos', 'meta_value' => get_queried_object_id(), 'meta_compare' => '=', ); $query = new WP_Query( $args ); while ( $query->have_posts() ) { $query->the_post(); echo get_the_title() . '<br>'; } }Igor Gouvêa
ParticipantThanks Long
I tried to run this php like this and print. I got it.
Do you have an example of how to run a php inside the view and print the variable?
<div class="row"> <div class="col-md-12" style="page-break-inside:avoid"> <script> $args = array( 'post_type' => 'diario-de-obra', 'meta_key' => 'equipamento', 'meta_value' => get_queried_object_id(), 'meta_compare' => '=', ); $query = new WP_Query( $args ); </script> {{ $query }} </div> </div>Igor Gouvêa
ParticipantThanks!
Igor Gouvêa
ParticipantWhat can i use from the metabox fields to delete the image using my cell phone?
Thanks!
Igor Gouvêa
ParticipantI achieved. It worked out.
Thanks
Igor Gouvêa
ParticipantOr what part of the CSS deals with this break in the layout so that I can apply it in the conflicting plugin?
Igor Gouvêa
ParticipantThat's right. There is a conflicting plugin.
Do you have any tips on how I can resolve this conflict?
How to make select2 use the Metabox css?
Thanks
Igor Gouvêa
ParticipantNo. This plugin:
https://www.welaunch.io/en/product/wordpress-posts-pdf/.
It only supports ACF. How to show as images:
https://bityli.com/cZaNk
https://bityli.com/rWN04In addition, the plugin's Author said in response that his plugin does not support Meta Box AIO. That is, it does not print our customized posts.
If there's anything that can light my way, tell me. How do I print my post?
Igor Gouvêa
ParticipantHello Long,
I bought the plugin two days ago. Today, After several interactions, the author of the plugins has assumed that the plugin does not work with yours.
Look:
“ Our plugin does not seem to work with your Meta Box AIO custom post types. Sorry, but please make a refund request yourself via codecanyon ”
Do you see another way to print the view? Please give me hope, all that is needed to close the project.
Apparently his plugin works only with ACF (like others I found). Did the community ever need to print a view? do you remember any case?
Have you considered developing this extension? it would be a very important extension for the future, think about it
Thank you
Igor Gouvêa
ParticipantThank you!
-
AuthorPosts