mwolff9328
Forum Replies Created
-
Here’s the info you requested:
general settings:
https://snipboard.io/UKxL8o.jpgpassword reset:
https://snipboard.io/zC5LaP.jpgprivate website:
https://snipboard.io/bwlIuO.jpgplugin settings:
https://snipboard.io/k25pIY.jpgLet me know if that’s everthing you need. Thanks!
Forum: Plugins
In reply to: [Yoast SEO] og:description not showing in facebookHi All, thanks to anyone looking into this issue, but I have just figured out the issue. It appears the Avada wordpress theme has a setting that forces open graph meta tags. This option needs to be turned off in order for the yoast images and info to appear correctly. The issue can be resolved by following the instructions below:
Go to Avada > Theme Options > Advanced > Theme Features > Open Graph Meta Tags (5th from bottom) and set it to Off
Forum: Plugins
In reply to: [WooCommerce] Modify the “New Account” Email to display the users first nameThanks for the feedback and input. I decided to change the username to the customers email address by using the code below. This code should be inserted into the functions.php
add_filter( 'pre_user_login', 'wc_email_as_username' ); function wc_email_as_username( $user_login ) { if( isset($_POST['billing_email'] ) ) { $user_login = $_POST['billing_email']; } if( isset($_POST['email'] ) ) { $user_login = $_POST['email']; } return $user_login; }
It works perfectly!
- This reply was modified 4 years, 5 months ago by mwolff9328.
Forum: Plugins
In reply to: [WooCommerce] Change font size of text on New Order Success PageGreat, thanks for the CSS! I added some style to the code and it worked perfectly.
.woocommerce-notice.woocommerce-notice–success.woocommerce-thankyou-order-received{
color: #222529;
font-size:22px;
font-weight: bold;
font-family: Poppins,sans-serif;
}