Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • in reply to: Desktop app responsive sizing #66250
     ScotKinney
    Participant

    wow, I found a bit of css that fixed it! I added this to the quick css:

    COPY CODE
    @media all and (max-width: 480px) {
    .woocommerce table.shop_table *,
    .woocommerce-page table.shop_table * {
    font-size: 10px;
    }
    }
    in reply to: Desktop app responsive sizing #66237
     ScotKinney
    Participant

    These are the Quick CSS tweaks I’ve tried. None seem to have any affect inside the app. They definitely affect the website.

    COPY CODE
    .col-sm-8{
    position: relative;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 10px;
    width:300px!important;
    }
    .woocommerce table.shop_table {
    margin: 1.1em -1px 24px 0;
    text-align: left;
    width: 300px !important;
    padding: 0px 5px 0px 5px;
    }
    table.shop_table.cart {
    width: 300px;
    margin: 0px 10px 0px 10px;
    padding: 0px 10px 0px 10px;
    }
    .woocommerce .cart-collaterals {
    width: 300px !important;
    }
    in reply to: redirect to Profile page from wwocommerce login #66062
     ScotKinney
    Participant

    This seems to do the trick:

    COPY CODE
    // Custom redirect for users after logging in with Woocommerce MyAccount page - (Scot)
    // redirect to profile instead
    function scot_wc_login_redirect( $redirect, $user ) {
    	$redirect = bp_core_get_user_domain($user->ID);
    	return $redirect;
    }
    add_filter('woocommerce_login_redirect', 'scot_wc_login_redirect', 11, 2);
    in reply to: Edit share-links #65576
     ScotKinney
    Participant

    I got it:

    COPY CODE
    .kleo-love {
      display: none;
    }
Viewing 4 posts - 1 through 4 (of 4 total)

Log in with your credentials

Forgot your details?