Payment method that chosen

GK User
Sun Mar 26, 2017 3:15 pm
How to disable payment method and shipment method in the cart that are chosen now?
Untitled-2.jpg
User avatar
Senior Boarder

Joshua M
Thu Mar 30, 2017 11:47 am
Hi,

Did you unpublish these payment methods from Virtuemart -> Payment methods?
User avatar
Moderator

GK User
Thu Mar 30, 2017 6:18 pm
I don't whant to unpublished the payment methods. I want to save checkbox near the payments, but disable text, that talks about method, that chosen by user now.
User avatar
Senior Boarder

GK User
Thu Mar 30, 2017 6:20 pm
How to disable all, that i marked the red line?
User avatar
Senior Boarder

GK User
Thu Mar 30, 2017 6:23 pm
In this red square written *chosen shipment methods* and in the bottom written * chosen payments method* If you can't understand in russian.
User avatar
Senior Boarder

Joshua M
Thu Mar 30, 2017 10:23 pm
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it?
User avatar
Moderator

Joshua M
Fri Mar 31, 2017 11:45 am
Try to add the following custom css code:
Code: Select all
.cart-summary tr:nth-child(5) {
   display: none;
}
User avatar
Moderator

GK User
Tue Apr 04, 2017 11:35 am
Thank you! I done all that you say, but it is don't solves problem. Please, help!
User avatar
Senior Boarder

Joshua M
Wed Apr 05, 2017 9:20 am
I can't see your website now.. Username and password is needed.
User avatar
Moderator

Joshua M
Tue Apr 11, 2017 10:18 am
Try to use this css code instead:
Code: Select all
.cart-summary tr > td > h3,
.cart-summary tr > td > h4,
.cart-summary tr > td > img {
   display: none;

}
User avatar
Moderator

GK User
Tue Apr 11, 2017 4:45 pm
Thank you, but chosen variant displays in top of list of payment methods in gray colour. How it disable?
User avatar
Senior Boarder

Joshua M
Wed Apr 12, 2017 9:01 am
I'm afraid it's not possible to hide it without VirtueMart files override.
User avatar
Moderator

GK User
Wed Apr 12, 2017 2:49 pm
Ok, thank you very much, but i have another questions about css styles in this template. Can you help me in this topic?
User avatar
Senior Boarder

Joshua M
Wed Apr 12, 2017 10:36 pm
sure, I'll try to help.
User avatar
Moderator

GK User
Fri Apr 14, 2017 7:05 am
Nice, thank you!
I want to align all the fields, that they are have even length.
Untitled-1.jpg

I provide you with a URL to page of my website there they are.
User avatar
Senior Boarder

Joshua M
Fri Apr 14, 2017 1:37 pm
Try to add the following custom css code:
Code: Select all
.adminForm.user-details #email_field {
    margin-left: 237px;
}
User avatar
Moderator

GK User
Sat Apr 15, 2017 8:17 am
it's dont work. First field also in left
User avatar
Senior Boarder

GK User
Sat Apr 15, 2017 8:47 am
Why the first feild situated in separate table? Is it possible to place it in the second table?
Untitled-1.jpg
User avatar
Senior Boarder

Joshua M
Tue Apr 18, 2017 12:11 pm
This form is not overriden in template files, so it comes from VC component - it's not possible to change the structure without VirtueMart files override.

Try to add the following custom css code (instead the previous one):
Code: Select all
@media (min-width: 480px) {
.adminForm.user-details td {
   width: 50%;
}

.adminForm.user-details #email_field {
    margin-left: 0;
}
}
User avatar
Moderator

GK User
Wed Apr 19, 2017 3:27 pm
It's work! But why between the text and the fields is such a long distance? How to reduce it?
User avatar
Senior Boarder

GK User
Wed Apr 19, 2017 3:40 pm
And how to make a fieldы *select* of the same size as the rest of the fields?
User avatar
Senior Boarder

Joshua M
Fri Apr 21, 2017 10:12 am
Try to replace your css code:
Code: Select all
.adminForm.user-details input {
      position: relative;
      left: -200px;
}


into:
Code: Select all
.adminForm.user-details input,
.adminForm.user-details select {
      position: relative;
      left: -200px;
}
.adminForm.user-details select {
width: 242px;
}
User avatar
Moderator

GK User
Sat Apr 22, 2017 9:13 am
Thank you! I solved my problem.
User avatar
Senior Boarder

GK User
Sat Apr 22, 2017 9:31 am
Why, when i hover mouse on text, there are it appear in right area
Untitled-1.jpg
User avatar
Senior Boarder

GK User
Sat Apr 22, 2017 9:31 am
And how disable the last input?
User avatar
Senior Boarder

Joshua M
Sat Apr 22, 2017 4:08 pm
I can't see the problem with the hover now - regarding the last input, do you mean "repeat the password" ? It's not possible unfortunately.
User avatar
Moderator

GK User
Sun Apr 30, 2017 2:10 pm
Thanks, i solved this problem
User avatar
Senior Boarder

GK User
Sun Apr 30, 2017 2:16 pm
How to delete this text?
Untitled-1.jpg
User avatar
Senior Boarder

Joshua M
Mon May 01, 2017 8:06 am
I can't see this text on the demo template, how did you add it?
User avatar
Moderator

GK User
Tue May 02, 2017 8:36 am
It's funny, but i really don't know how i did. I think, that it appeared when i did automatical chosen variant of delivery.
User avatar
Senior Boarder


cron