Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
Author
-
ScotKinneyParticipant
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; } }
ScotKinneyParticipantThese 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; }
ScotKinneyParticipantThis 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);
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)