Posts by Marcos Nascimento • 17 points
3 posts
-
0
votes1
answer48
viewsQ: Wordpress error in Jquery no admin-ajax.php [500]
I am developing a delivery in Wordpress the add items to the cart was working normal when was no localhost , after climbing the delivery to test it stopped working , I have the following error log…
-
0
votes2
answers68
viewsQ: How to change the version of Jquery in wordpress?
I am maintaining a plugin that uses version 1.4.1 of Jquery and runs on version 5.2 of Wordpess jquery-migrate.min.js?ver=1.4.1:2 JQMIGRATE: Migrate is installed, version 1.4.1 And the latest…
-
0
votes1
answer56
viewsQ: What’s the difference in using $_POST['field'] and filter_input(INPUNT_POST,'field')?
// Método 1 $campo = $_POST['campo']; // Método 2 $campo2 = filter_input(INPUT_POST,'campo'); What is the best way to get data on the form?