Posts by Felipe Goncalves • 56 points
3 posts
-
4
votes4
answers70
viewsA: How to return the sum of the business value column, month by month, based on the starting data_column?
SELECT SUM(valor_negocio), MONTHNAME(STR_TO_DATE(MONTH(data_inicio), '%m')) FROM negocio GROUP BY MONTH(data_inicio)
-
0
votes1
answer215
viewsA: Conflict when importing another Jquery in Wordpress
Just one question, why are you adding JS to header.php? Try to include it in footer.php (if you have it) Try to do that: Do this, replace this: var $a = jQuery.noConflict()…
-
0
votes3
answers523
viewsA: Call post on the page that is shown
You can create the page single-NAME.php, and assign the functions the_content() and whatever you want (image, etc.) to show on this page. By clicking on the tag <a> who has the the_permalink()…