Posts by Italo Izaac • 185 points
13 posts
-
0
votes1
answer385
viewsQ: White screen on IOS startup
I’m developing an app with Ionic in version 3 but I’m having a problem with the build for IOS, only for IOS. For several days I researched and did not find a solution to my problem, to be able to…
-
1
votes1
answer81
viewsQ: Aggregated function with MIN(), GROUP BY and Subquery
I am facing problems to mount a query of an address table with latitude and longitude. I have a function that does a distance calculation, I called it: distance_latlng_km(originLat, originLng,…
mysqlasked Italo Izaac 185 -
0
votes5
answers11840
viewsA: Upload limit with php.ini in Wordpress
For those who are going through the same problem, follow the tip of Peter who commented on the response. If you tried to put the file php.ini at the root, or in the folder /public_html and yet it…
-
2
votes0
answers561
viewsQ: Paypal Sandbox integration does not work!
Hello, good morning will someone help me with a problem I’m having in Paypal’s Rest Api SDK integration. I put the code below, it seems to run perfectly, but when I go in "Transactions" in the…
-
1
votes1
answer50
viewsQ: Custom update for Wordpress plugins
How do I make updates available (updates) for a Wordpress plugin I developed? Can you do this with Github? Or is it only possible by official directory?…
-
1
votes1
answer45
viewsQ: Strange characters in message subject, using wp_mail
Good evening, I would like someone to help me in this, I developed wordpress plugin, sends emails perfectly, but when subject contains accent, the subject is displayed strangely, see... The subject…
-
6
votes3
answers233
viewsQ: Substitution of variables in the body of the message
I am creating a message profile system, when the system performs a certain action it picks up a certain profile and triggers the message as e-mail, however I would like in the body of the message,…
-
1
votes1
answer1181
viewsQ: Identify Visitor and User in Wordpress
I am working on a wordpress plugin, and I need to change the menu name Login for My account when the user is logged in. I also need to change the title of the page. I have tried using the filter…
-
4
votes3
answers1588
viewsA: How to filter data entries in PHP
You want to know how to take these tags out, if the user inserts this into the text field to add to the mysql database, avoiding unnecessary redirects in ECHO, I’m sure? If yes Can use strip_tags()…
-
0
votes3
answers3002
viewsA: Dynamic search in real time
Yes, just put the Webservice URL in the place where the file path would be. Jquery Ajax Example: $.ajax({ url: 'http://ws.exemplo.com/' }); I hope I’ve helped! Remembering that the Webservice has to…
-
0
votes2
answers213
viewsA: How can I get the text inside a combobox?
You can use jQuery. jQuery $(function(){ $("select").change(function(){ var that=$(this).children('option:selected'); alert(that.text()); }); }); HTML <select name="combobox"> <option…
-
0
votes2
answers185
viewsQ: Load codeigniter settings into external file
Does anyone know how I load all the codeigniter settings into any external file, giving a require? For example: A . css file that takes information from the database! Someone knows how to include,…
-
1
votes1
answer2333
viewsQ: Center map with more than 1 (one) marker
I’d like a little help if possible. I am developing a website, and implementing Google Maps V3 Javascript functions, but I have not found in any documentation on how to center the map containing 2…