AndyC Posted November 10, 2020 Posted November 10, 2020 Is there anyway I can remove this whole block from the checkout funnel ,but not from the site as I would still like people to create accounts if they prefer. I have searched google and can't find this request , or if I do it's way to old or for PS 1.7. The reason I ask if I have had 4 people do test purchases and all said that that was a bad idea with 1 saying they didn't realise they could do instant checkout Am on The latest bleeding edge and Panda theme with the 3 step checkout
Wartin Posted November 10, 2020 Posted November 10, 2020 I'm sorry, I don't understand the question. Do you want to have guest clients buying without creating an account? or you want to remove the left part of your screen capture?
AndyC Posted November 10, 2020 Author Posted November 10, 2020 (edited) Basically yes as most do it this way anyway with guest checkout .. But I still want the option available to be able to create a account if they want to. On mobile view it is so far down Want to remove the whole block left and right so this is what they see below Summery /address / Payment anyone Edited November 12, 2020 by AndyC
AndyC Posted November 12, 2020 Author Posted November 12, 2020 I can find the blocks by using "inspect element" on firefox and can even remove them, but just cannot figure out where these are within the file structure to hide them so now looks like this
30knees Posted November 13, 2020 Posted November 13, 2020 You could try this module by @datakick for a smooth checkout experience: https://store.getdatakick.com/en/modules/chex-one-page-checkout
AndyC Posted November 13, 2020 Author Posted November 13, 2020 Bought it already but doesn't work with my website as have add ons that don't work with it , so no good for me
AndyC Posted November 15, 2020 Author Posted November 15, 2020 Should also mention it is from the 3 page cart upgrade done by toplakd
Wartin Posted November 16, 2020 Posted November 16, 2020 On 11/12/2020 at 9:32 PM, AndyC said: I can find the blocks by using "inspect element" on firefox and can even remove them, but just cannot figure out where these are within the file structure to hide them Hi, @AndyC. I'm not using Panda, but Niara. Anyway, I think the file you are looking for is /themes/panda/order-address.tpl If it is not, as you know what you are looking for, if you have access to a linux terminal you can go to the themes directory and execute this command: grep -Hr "auth_right_column" It will search recursively for the string "auth_right_column" that you want to remove. Good luck!
AndyC Posted November 16, 2020 Author Posted November 16, 2020 Thank you for taking the time to reply, Not sure how to go about that lol ... I may just have to pay someone to do it for me
veganline Posted November 17, 2020 Posted November 17, 2020 My hack for Niara theme, single page checkout, removes the block so nobody can register, using bo>preferences>custom code>css I forget how it works, but if there's anything similar in a Panda 3-page form it might involve css like this. #new_account_title {display: none;} #opc_account_choice {display: none !important;} /*for edge browser*/ #login_form {display: none;} #opc_account_form.unvisible {display:block !important;} #company.text.form-control {display: none;} /*just to shorten the form*/ #discount_name {display: none;} /*just to shorten the form*/ #discount_name.discount_name {display: none;} /*just to shorten the form*/ #voucher {display: none;} /*just to shorten the form*/ #cart-voucher {display: none;} /*just to shorten the form*/ #login_form .box {display:none;} #login_form {display:none;} .password, .gender-line, .cart_navigation.clearfix, .step-num, .product-label-online, .date-select {display: none;} /*this is for order and date of birth form*/ #vat_number_block {display: none !important;} /*#vat_number.text.form-control {display: none;} removed the hard return after label */ #checkoutLogin {display: none;} #logged_checkout {display: none;} #blockuserinfo-login {display: none;} #product_condition {display:none;}
Wartin Posted November 17, 2020 Posted November 17, 2020 That's a good one, veganline. @AndyC using that tip you shoud add to custom CSS this #auth_right_column{display: none;} that should hide that block, as you do with your browser.
AndyC Posted November 17, 2020 Author Posted November 17, 2020 (edited) 2 hours ago, Wartin said: That's a good one, veganline. @AndyC using that tip you shoud add to custom CSS this #auth_right_column{display: none;} that should hide that block, as you do with your browser. Absolutely Spot on , Thank you so much, I knew it would be easy , but not that easy .. Just knowing what to put down Hidden both left and right and with the social log in now is so much better.. I do need to hide a few other things so will certainly be using that tip Edited November 17, 2020 by AndyC 1
AndyC Posted November 20, 2020 Author Posted November 20, 2020 (edited) Just seen it also removed them from the log in page as well .. I just want it gone from the checkout page - back to the drawing board Edited November 20, 2020 by AndyC
Wartin Posted November 21, 2020 Posted November 21, 2020 6 hours ago, AndyC said: Just seen it also removed them from the log in page as well .. I just want it gone from the checkout page - back to the drawing board Indeed, it will hide all the occurrences of that very piece of code. The only way to go is edit the .tpl as told up here. It's not as difficult as it seems... Just save a copy of the original file and don't work in an online shop.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now