Jump to content
thirty bees forum

Remove Create Account/ Sign in Block


Recommended Posts

Posted

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

1551312758_createandedit.thumb.JPG.b2f4193680c72affaa044924260edacc.JPG

Posted

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?

Posted (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

Capture.JPG.9fb8ce54a14a159d33a0086ffae643ed.JPG

anyone

Edited by AndyC
Posted

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

Capture1.JPG.9fc25055bbeae6a21749dbebbdc88fae.JPG

so now looks like this

 

Capture.thumb.JPG.25e1721bb1deaec07307adb045395792.JPG

Posted
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!

Posted

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 

 

Posted

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;}

Posted

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.

Posted (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

Capture.thumb.JPG.059dd2db822dd59fd04f72475171bd0f.JPG

Edited by AndyC
  • Like 1
Posted (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 by AndyC
Posted
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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...