Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
I’ve also tried turning off the Swift SmartScript, and the pre-minified options, but still no effect.
Hi,
I just removed all custom css and it has the same effect.
What about the submenus under shop not showing up in the mobile menu?
The password for the initial site is ShawnAlex2015
I was refering to the attachments:
attachedPicture3.png in the original post shows what I am talking about in moving titles into the sidebar. When you add subscriptions or a credit card gateway, it appears in My Accounts in Woocommerce. It shows any current subscriptions or saved credit cards used in previous transactions. I want these to be hidden unless the user clicks on their respective titles on the left. The idea is to hide them just like Address Book/Wishlist/My Orders.
I attached a .gif below showing what I mean about the menu. When hovering over Shop, the mega menu that drops down is aligned to the left, it does not appear below where it is hovered like seen in the normal Atelier demo.
Attachments:
You must be logged in to view attached files.This reply has been marked as private.Hi David,
This is perfect! Thanks a billion 🙂
For my last two questions, I’m still playing with the My Account tabs, but not really having success, I think it gets pulled through swiftframework and does something fancy. Where can I locate and add this behavior?
For the main menu problem, is it possible to have it revert back to the original style? the problem only exists in this demo and it could be some kind of incompatibility.
Oh forgot one, when I’m on the homepage, is there a way to have home highlighted (the same behavior when you are on any other page).
Hm, I was trying to shrink the header actually. Just changing the height will not change the padding of the logo to the menu/icons. Also any dividers used are still equal length and stick out.
Oops, wrong code:
<?php // Add the code below to your theme's functions.php file to add a confirm password field on the register form under My Accounts. add_filter('woocommerce_registration_errors', 'registration_errors_validation', 10,3); function registration_errors_validation($reg_errors, $sanitized_user_login, $user_email) { global $woocommerce; extract( $_POST ); if ( strcmp( $password, $password2 ) !== 0 ) { return new WP_Error( 'registration-error', __( 'Passwords do not match.', 'woocommerce' ) ); } return $reg_errors; } add_action( 'woocommerce_register_form', 'wc_register_form_password_repeat' ); function wc_register_form_password_repeat() { ?> <p class="form-row form-row-wide"> <label for="reg_password2"><?php _e( 'Password Repeat', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if ( ! empty( $_POST['password2'] ) ) echo esc_attr( $_POST['password2'] ); ?>" /> </p> <?php } ?>
-
Posted in: We hit Power Elite.