Posts by Gabriel Carneiro • 103 points
12 posts
-
1
votes1
answer208
viewsQ: Accessing attributes from multiple different relationships in a CRUD Eloquent Laravel 5.7
Guys I have a structure like this model (Modelo apenas ilustrativo) and want to know how I can access the data of the whole relationship to make a insert/update in these tables with the data…
-
1
votes1
answer55
viewsA: How to drop Draggable element only on Droppable Ivs and not drop to the rest of the screen
Well, I managed to solve my problem using Sortable in place of Draggable, follows the link with my solution: https://codepen.io/jo-o-santos/pen/rorEoo…
-
0
votes1
answer55
viewsQ: How to drop Draggable element only on Droppable Ivs and not drop to the rest of the screen
Talk, guys, I’m having a little problem here, I stopped using the **Drag and Drop** HTML5 native because it does not support Android browsers, so I started using the Jqueryui. I have some charts…
-
0
votes3
answers144
viewsA: force ssl with htaccess and angular7
So that’s it, as said in the comment, by putting a file .htaccess in the root folder of a website, it will act on all folders of this. But, a file .htaccess in a subfolder cancels the action of the…
-
1
votes3
answers650
viewsA: Change the CSS Display property to ALL elements of a page and leave Block only for some?
Well, I could not solve using only CSS, parti pro uso of a Jquery plugin called printThis, which is easy to use and did not give me so much problem, follow more information...:…
-
2
votes3
answers650
viewsQ: Change the CSS Display property to ALL elements of a page and leave Block only for some?
I’m trying to make the impression of a bootstrap-modal which is called within a form with includebut I want to print ONLY the modal, can I do it using only CSS? See: Modal: <div class="modal…
-
0
votes1
answer50
viewsA: How to insert WP previous_post_link(); anchored in a div
I solved my problem, people: <?php $prev_post = get_previous_post(); ?> <?php $next_post = get_next_post(); ?> <a href="<?php echo esc_url( get_permalink( $prev_post->ID ) );…
-
0
votes1
answer50
viewsQ: How to insert WP previous_post_link(); anchored in a div
Good evening, I’m wanting to create a custom navigation between single-posts in Wordpress, but I don’t know how to do, and I don’t want to use a plugin for this, see what I’m trying to do (No…
-
1
votes1
answer915
viewsA: How to insert an HTML file into a PHP variable?
I found the problem, the tags were missing <?php ?> and the echo call in the archive .html form_A.html <th colspan="2"> <?php echo $data_cadastro; ?></th>…
-
0
votes1
answer915
viewsQ: How to insert an HTML file into a PHP variable?
Fala galera, I have a file called post_forms.phpthat picks up the results of $_POST[], must fill variables inside the file form_xxx.html, create a PDF with Dompdf lib and send with Phpmailer. See a…
-
0
votes1
answer202
viewsA: Wp_query, How to sort the meta_query in the order of an array?
Following question and answer published in Stack Exchange: Link to query: https://wordpress.stackexchange.com/questions/313015/solved-wp-query-args-how-to-sort-letters-and-numbers-within-the-same-ar…
-
3
votes1
answer202
viewsQ: Wp_query, How to sort the meta_query in the order of an array?
I’m developing a system where I have a Deck presentation. I have a field that picks up the post by the suit of the type copas being within the array specification meta_value, and would like it to be…