Posts by Emanuel Rocha Costa • 104 points
9 posts
-
0
votes6
answers5683
viewsA: Copy Wordpress database without using Phpmyadmin
After searching a lot! The best free backup plugin from the bank is Updraftplus: https://wordpress.org/plugins/updraftplus/ It has over 800,000 active installations, fast support and 4.9/5 star…
-
0
votes1
answer801
viewsA: Add to cart and quantity in Woocommerce
Add this code to the functions.php of your theme add_action( 'init', 'erc_shop_archive_add_to_cart_button' ); function erc_shop_archive_add_to_cart_button() {…
woocommerceanswered Emanuel Rocha Costa 104 -
1
votes1
answer2078
viewsA: Disable Woocommerce store temporarily
I haven’t tested this code but I think it might work. Add it to your theme’s functions.php file. function my_woocommerce_maintenance_mode($content) { // condição para paginas do Woo. Mais infos:…
-
0
votes2
answers76
viewsA: How to save information "not serials" in wordpress
What you want to do is soft with these two free plugins: https://wordpress.org/plugins/custom-post-type-ui/ With this vc creates for example a Post Type called "Agenda". And with this other you…
-
0
votes2
answers336
viewsA: Contact form 7 in custom post
Thiago, to debug this you will have to disable all other plugins. So, if it works you will activate one by one until you find out which plugin is giving conflict. If even disabling the plugins…
-
3
votes2
answers340
viewsA: Add an "active" class in the link according to the page accessed?
Wordpress already does this. It adds the class . current_menu_item in the option that corresponds to the current page. So you just use something like this: add_filter('nav_menu_css_class' ,…
-
0
votes1
answer51
viewsA: Maintenance plan SQL Server 2014
Make sure you don’t have any blocked mail port on the server. Another option is to look at the server’s "mail" that is sending the email. It may be that it is rejecting for some reason that you will…
-
2
votes1
answer84
viewsA: Problems to enable remote access SQL Server + Android
First you have to see if there are any firewalls blocking SQL Server (on your computer or server). Port 1433 is the default. After you have to go in the settings of SQL Server and set this option.…
-
2
votes2
answers1401
viewsA: How to mount a SELECT with ordered nonexistent numeric column
Edson speaks! I did not understand well if you want an accountant or a "ranking". For an accountant just set a variable and add in select: SET @colunaDinamicaOrdenada:=0; SELECT descricao_produto,…