Posts by Rívero Felipe • 19 points
8 posts
-
-1
votes2
answers36
viewsQ: No Clear form after wordpress Submit
built a form that validates within the wordpress function but every time I do Submit it cleans up the whole form and I don’t want it to do that I am sent data by jquery this way form.submit(function…
-
1
votes2
answers86
viewsQ: catch all getElementsByClassName with exactly equal class
I would like to pay all div containing exactly class '1 2 3' Example. <div data-full="true" class="1 2 3 4"> <div class="1 2 3">text</div> </div> <div class="1 2…
-
0
votes2
answers41
viewsA: Change the value of a field when a condition is true
Probably works that way Select * FROM(Select PA.EMPRESA, PA.CONTRATO, PA.PARCELA, PA.SITUACAO, PA.PMT, PA.IOF, PA.VCTO, PA.SALDO, MC.DATAFINANCEIRA, MIN(CASE WHEN MC.SITUACAO = 'a' THEN '' END) AS…
-
0
votes3
answers885
viewsA: Table not getting Responsive bootstrap 4
Voce can easily solve with these class <table class="table table-responsive"> <!-- table content here --> </table> <table class="table table-sm-responsive"><!-- ...…
-
0
votes1
answer179
viewsA: Filter information from a CASE WHEN SQL and only results that contain all information
Be able to solve as follows Select * FROM ( Select d.ID, d.post_title, d.post_type, MIN(CASE WHEN b.name = 'Resinas' THEN b.name END) AS categoria, MIN(CASE WHEN b.name = 'featured' THEN b.name END)…
-
0
votes2
answers95
viewsA: Woocommerce show products featured by sql category
Getting to solve staff follows below how to solve Select * FROM ( Select d.ID, d.post_title, d.post_type, MIN(CASE WHEN b.name = 'Resinas' THEN b.name END) AS categoria, MIN(CASE WHEN b.name =…
-
-1
votes1
answer179
viewsQ: Filter information from a CASE WHEN SQL and only results that contain all information
I need to return only the result that contains all the information that in the case of this image and the ID='8187' Select d.ID, d.post_title, d.post_type, MIN(CASE WHEN b.name = 'Resinas' THEN…
-
0
votes2
answers95
viewsQ: Woocommerce show products featured by sql category
would like this result to be just 1 with all formations separated by column and that it only appears if there is name = 'Resin' AND name = 'featured' otherwise do not list sql if I put WHERE b.name…