Eduardo Villão – EN https://eduardovillao.me/ WordPress Developer Mon, 16 Jan 2023 18:27:54 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.4 https://eduardovillao.me/wp-content/uploads/2021/05/coding.png Eduardo Villão – EN https://eduardovillao.me/ 32 32 Action after confirm payment on WooCommerce https://eduardovillao.me/action-after-confirm-payment-on-woocommerce/ https://eduardovillao.me/action-after-confirm-payment-on-woocommerce/#comments Wed, 26 Feb 2020 19:40:15 +0000 https://eduardovillao.me/?p=487 You need start any action only payment is confirmed? If yes, this post will help you. This a simple but very efficient snippet. How to create action after payment confirmed on WooCommerce? Snippet to start specific function after payment is confirmed on WooCommerce. In this example, after payment is confirmed set the new value to […]

The post Action after confirm payment on WooCommerce appeared first on Eduardo Villão - EN.

]]>
You need start any action only payment is confirmed? If yes, this post will help you. This a simple but very efficient snippet.

How to create action after payment confirmed on WooCommerce?

Snippet to start specific function after payment is confirmed on WooCommerce. In this example, after payment is confirmed set the new value to user.

function checkPayment ($order_id) {
    
    ///get the order
    $order = new WC_Order($order_id);
    $user_id = $order->get_user_id();

    ///check for set info
    update_user_meta( $user_id, 'field_name', 'field_value' );
    
}

add_action( 'woocommerce_payment_complete', 'checkPayment' );

Important

This Snippet requires the payment method to call woocommerce_payment_complete() / $order->payment_complete(). Most payment methods do this already because is default on woocommerce payment method.

Do you like the post? Please, leave your comment!

The post Action after confirm payment on WooCommerce appeared first on Eduardo Villão - EN.

]]>
https://eduardovillao.me/action-after-confirm-payment-on-woocommerce/feed/ 3
How to add a mask to the Elementor form [FREE] https://eduardovillao.me/elementor-form-mask/ https://eduardovillao.me/elementor-form-mask/#comments Mon, 24 Feb 2020 16:07:51 +0000 https://eduardovillao.me/?p=158 Form Masks for Elementor create a custom control in field advanced tab for your customize your fields with masks. This plugin require the Elementor Pro (Form Widget). The masks function with filed types ‘text’ and ‘tel’. Add a mask to the Elementor form Just download the plugin in the WordPress directory and install it on […]

The post How to add a mask to the Elementor form [FREE] appeared first on Eduardo Villão - EN.

]]>
Form Masks for Elementor create a custom control in field advanced tab for your customize your fields with masks. This plugin require the Elementor Pro (Form Widget). The masks function with filed types ‘text’ and ‘tel’.

Add a mask to the Elementor form

Just download the plugin in the WordPress directory and install it on your website: https://wordpress.org/plugins/form-masks-for-elementor/

See how the plugin works in this video:

Do you see how easy it is?

Do you like the post? Please, leave your comment!

The post How to add a mask to the Elementor form [FREE] appeared first on Eduardo Villão - EN.

]]>
https://eduardovillao.me/elementor-form-mask/feed/ 2
How to center Tabs on Elementor https://eduardovillao.me/center-elementor-tabs/ https://eduardovillao.me/center-elementor-tabs/#comments Mon, 11 Nov 2019 15:38:03 +0000 https://eduardovillao.me/?p=68 Did you ever need to use the Elementor tabs widget (or Tabs), and needed to center the tabs, but did not find these options in the widget? (unfortunately this option does not even exist in the Widget). Yeah, you’re not the only one. I have received this doubts on social networks and through our consultancy. […]

The post How to center Tabs on Elementor appeared first on Eduardo Villão - EN.

]]>

Did you ever need to use the Elementor tabs widget (or Tabs), and needed to center the tabs, but did not find these options in the widget? (unfortunately this option does not even exist in the Widget).

Yeah, you’re not the only one. I have received this doubts on social networks and through our consultancy. So, without much fanfare, let’s get the solution!

How to center the tabs?

It’s simple, you’ll need to use CSS code that can be inserted into the Elementor widget itself (if you’re using the PRO version) or the CSS editor for your theme.

.elementor-tabs-wrapper {
    display: flex;
    justify-content: center;
}

Ready, the result will be this:

How to center the Tabs on the Elementor

I hope that you enjoyed.

Do you like the post? Please, leave your comment!

The post How to center Tabs on Elementor appeared first on Eduardo Villão - EN.

]]>
https://eduardovillao.me/center-elementor-tabs/feed/ 17
How to center the Contact Form 7 submit button https://eduardovillao.me/how-to-center-the-contact-form-7-submit-button/ https://eduardovillao.me/how-to-center-the-contact-form-7-submit-button/#comments Mon, 11 Nov 2019 15:20:16 +0000 https://eduardovillao.me/?p=51 This is a very common question of WordPress users: how to centralize the contact form 7 submit button? It’s easier than you think. I’ll show below. How to center the Contact Form 7 submit button To do this is very simple. You just need to create your contact form the way you want it, and […]

The post How to center the Contact Form 7 submit button appeared first on Eduardo Villão - EN.

]]>
This is a very common question of WordPress users: how to centralize the contact form 7 submit button?

It’s easier than you think. I’ll show below.

How to center the Contact Form 7 submit button

To do this is very simple. You just need to create your contact form the way you want it, and add the following code in your CSS editor or theme editor:

input.wpcf7-form-control.wpcf7-submit {
   display: block;
   margin: 0 auto;
}

Ready, the result will be this:

How to center the Contact Form 7 submit button

I hope that you enjoyed.

Do you like the post? Please, leave your comment!

The post How to center the Contact Form 7 submit button appeared first on Eduardo Villão - EN.

]]>
https://eduardovillao.me/how-to-center-the-contact-form-7-submit-button/feed/ 31