Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • in reply to: Mobile Menu Issues #190358
    busho
    Member
    Post count: 14

    I’ve also tried turning off the Swift SmartScript, and the pre-minified options, but still no effect.

    in reply to: Mobile Menu Issues #190310
    busho
    Member
    Post count: 14

    Hi,

    I just removed all custom css and it has the same effect.

    in reply to: Mobile Menu Issues #190297
    busho
    Member
    Post count: 14

    What about the submenus under shop not showing up in the mobile menu?

    in reply to: Mobile Menu Issues #189887
    busho
    Member
    Post count: 14

    The password for the initial site is ShawnAlex2015

    in reply to: Multiple Questions #187597
    busho
    Member
    Post count: 14

    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.
    in reply to: Multiple Questions #187212
    busho
    Member
    Post count: 14
    This reply has been marked as private.
    in reply to: Multiple Questions #187159
    busho
    Member
    Post count: 14

    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.

    in reply to: Multiple questions! #185609
    busho
    Member
    Post count: 14

    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).

    in reply to: Changing Header Height #185193
    busho
    Member
    Post count: 14

    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.

    in reply to: Adding Password Confirmation #184790
    busho
    Member
    Post count: 14

    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
    }
    ?>
Viewing 10 posts - 1 through 10 (of 10 total)