Digital experiences for all disciplines
Forum Replies Created
-
-
September 23, 2014 at 8:32 am in reply to: How to hide subtotal whenever subtotal is the same as total #113591
I know it has something to do with: http://php.net/manual/en/control-structures.elseif.php
And requires change ‘order-review.php’ from plugin folder (once into dante folder)…
but not sure how to script that.
September 23, 2014 at 1:08 am in reply to: How to change a CSS class if user logged in versus logged out ? #113503Mohammad – you are brilliant. The above didn’t work exactly, but the below tweak did.
.logged-in div .top-header-menu .menu > li:first-child > a { background-color: #fff !important; color: #333333 !important; opacity: 0.1 !important; }
September 22, 2014 at 7:15 am in reply to: How theme options> custom css work vs child theme style.css edits in the theme? #113150Thks Mohammad
September 22, 2014 at 7:15 am in reply to: How to make full blog masonry tile clickable through to post? #113149Thanks Laranz – on localhost so will update once live. Cheers
September 21, 2014 at 12:21 pm in reply to: How to make theme show woocommerce admin left sidebar on all account pages? #113009Yes, only on the change password page. Thanks Laranz, please do add to features.
September 20, 2014 at 2:02 am in reply to: How to edit upper nav text (Login, My Account, Cart, Wishlist) and add icons? #112859Thanks Kyle. For other, I found this worked for editing top-nav link CSS…
.top-header-menu .menu > li:first-child > a { background-color: #0274be; border-radius: 10px; color: #ffffff; font-weight: 500; margin-top: 10px !important; padding: 3px 10px 5px !important; }
September 20, 2014 at 1:01 am in reply to: How to make full blog masonry tile clickable through to post? #112849Also, for some strange reason, there’s a 2 or 3 character left spacing on the excerpt (on the blog preview tiles) and can’t find how to remove that?
September 20, 2014 at 12:07 am in reply to: How to change page column setting – woocommerce checkout options #112838The problem (maybe) could be separating the payment div, from the parent div of order review. Not sure where or how to do that.
September 19, 2014 at 9:55 am in reply to: Redirect to Checkout Woocomm issues versus suggested tutorials #112500Thks Kyle – finally found a working option. This works…
function mm_redirect_checkout($url) { global $woocommerce; $checkout_url = $woocommerce->cart->get_checkout_url(); return $checkout_url; } add_filter('add_to_cart_redirect', 'mm_redirect_checkout');
September 19, 2014 at 9:24 am in reply to: Redirect to Checkout Woocomm issues versus suggested tutorials #112470Seeking to 1) send user from clicking Add to Cart (whether on shop or single product page) directly to Checkout page and 2) then somehow inserting a ‘Continue shopping’ link on the Checkout page just in case.
Don’t need ‘catalog mode’.
Thanks!
September 19, 2014 at 8:43 am in reply to: Place order on Checkout page goes to blank screen #112447Either that, or just doing the latest woocomm update fixed it. In case that helps other readers.
September 19, 2014 at 8:40 am in reply to: Place order on Checkout page goes to blank screen #112443Apologies for wasting 10 seconds of your life Kyle. Error was due to no product download link.
That worked, thanks for the explanation!
Thanks Mohammad. To clarify, to make this work, do I need to create 2 new child theme folders ie
dante-child/includes/sf-header.php
dante-child/swift-framework/sf-woocommerce.phpand then copy the sf-header.php and sf-woocommerce.php from the Dante parent folder, then make customisations?
Or something else?
Thanks Mohammad… should these changes be inserted into child theme folders to avoid loss?
-