Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1347324

    hello guys,

    Thanks for your quick help. I’ve almost finished my shop. But now I need a little help :)

    1. Check out

    Shipping, step 2: there is still a lot of space left and right. I would like the form to be wider.

    Payment, step 3:
    the box doesn’t look good. it should look more like your demo. Also wider.

    Order Review, step 4: Also wider. The text below is English “billing”. Where can I change that?

    2. my account
    these fields should look exactly like check out -> log in / register

    That´s it. Thank you and best regards

    #1347520

    hey guys :)

    #1347705

    Hi,
    Thank you for your patience and for the login, I will try to help you customize your plugin ARG MultiStep Checkout for WooCommerce, although this is not a third party plugin that we support.
    for the width of your fields in the steps please try this css

    .argmc-wrapper .argmc-form-steps {
        padding-left: 0;
        padding-right: 0;
    }
    .argmc-order-step, .argmc-payment-step, .argmc-order-payment-step, .argmc-order-review-step {
        max-width: 100%;
    }
    .woocommerce-shipping-totals.shipping th {
    	width: 50px;
    }

    I’m not sure what you are finding wrong with the payment box in step two or three, but these boxes are styled from the plugin and will not look like our demo, I didn’t see anything out of line please see the screenshots in the Private Content area. If there was something small to adjust I would be able to assist, but I can’t re-write the plugin to look like our demo.
    The English words Customer Details, Billing Address, & Shipping Address are also from the plugin:
    2022-04-08_004.jpg
    so while I could write a script to change these, I would first suggest that you ask the plugin author for their solution as I imagine they must have dealt with this before.
    I’m not sure what you mean by the “my account” fields should look like the log in / register, try explaining with some screenshots.

    Best regards,
    Mike

    #1347727

    Hallo Mike,

    the width of the check out is good. Thank you.

    look at the screenshots.

    1. There are so many different fonts and sizes in the check out upon delivery. can this be done uniformly?
    2. there are no icons to be seen when paying, like in your demo, and i don’t like the box with the outline.
    3. this is what the login looks like when I click my account on the website.
    4. This is what the login looks like when I first register in the shop.

    do you understand my problem

    Thank you very much.

    #1347827

    Hi,
    Thank you for the screenshots, on your first one “delivery.png” all of the text is using the same font “helvetica neue” some are bold and #758269 in color, if you want them to all be like this try this css:

    .woocommerce-checkout .woocommerce .argmc-wrapper .argmc-form-steps, .woocommerce-checkout .woocommerce .argmc-wrapper #payment div.payment_box, .woocommerce-checkout .woocommerce .argmc-wrapper table.shop_table th, .woocommerce-checkout .woocommerce .argmc-wrapper table.shop_table td, .woocommerce-checkout .woocommerce .argmc-wrapper table.review-table th, .woocommerce-checkout .woocommerce .argmc-wrapper table.review-table td {
    	color: #758269;
    	font-weight: 600;
    }

    in my test this also solved the font in the screenshot “payment.png”
    Now if you compare the standard demo purchase box and yours
    2022-04-09_162436.jpg
    you will notice that yours is missing the PayPal image because your payment gateway doesn’t include it payment_method_ppcp-gateway
    the standard PayPal payment gateway does payment_method_paypal
    If you want the PayPal image and remove the outer border try this css:

    #top #order_review #payment .wc_payment_method.payment_method_ppcp-gateway {
    	background-image: url(https://www.paypalobjects.com/webstatic/mktg/Logo/AM_mc_vs_ms_ae_UK.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #top #order_review #payment {
        border-style: none;
    }

    2022-04-09_010.jpg
    Now for your logins, the first image is the woocommerce standard login, the second one is the ARG MultiStep plugin login, this one has different classes and css than the first one, so to make one look like the other would take some time.
    Try looking at the plugin options and see if it has a “classic” setting to look like woocommerce, or check it’s support site for css to look like woocommerce.

    Best regards,
    Mike

    #1347937

    thank you for your help. The check out looks much better now.

    I still had a few little things.
    1. Checkout
    the shipping costs are below the text, but should be behind it.
    Delivery €24
    like that and not below.

    On the smartphone:
    1. Method of payment
    the word paypal runs across the logos

    2. Log in / register
    the button is above “forgot password”

    3. shipping
    what is the black line in the top left of the first table?
    The words “local pickup” and “shipping costs” are cut off on the right. In addition, the shipping costs are listed below (24.00 €)

    And then I think the shop can go online. Thank you very much!

    #1348019

    Hi,
    Please try this css for desktop & mobile for
    Checkout
    Method of payment
    shipping

    
    @media only screen and (max-width: 379px) { 
    #top #order_review .woocommerce-shipping-totals.shipping td label,
    #top #order_review .woocommerce-shipping-totals.shipping td label bdi,
    #top #order_review .woocommerce-shipping-totals.shipping td label bdi .woocommerce-Price-currencySymbol {
    	font-size:10px;
    }
    #top #order_review .woocommerce-shipping-totals.shipping td {
        left: 14px!important;
    }
    }
    @media only screen and (max-width: 450px) { 
    #top #order_review .woocommerce-shipping-totals.shipping {
    	height: 81px;
    }
    #top #order_review .woocommerce-shipping-totals.shipping td {
        width: 300px!important;
        max-width: 300px!important;
        left: 47px;
        position: absolute;
    }
    #payment .payment_method_ppcp-gateway label {
    	color: transparent;
    }
    }
    @media only screen and (min-width: 451px) { 
    	#top #order_review .woocommerce-shipping-totals.shipping td {
        width: 300px!important;
        max-width: 300px!important;
    	}
    }
    @media only screen and (max-width: 768px) { 
    	.responsive #top table.woocommerce-checkout-review-order-table .product-name {
        border-left-style: none;
    	}
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1348091

    Hey Mike,

    it works, thank you very much.

    Only the mobile login “My account” (screenshot) is the same problem.

    Best regards,

    #1348221

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 783px) { 
    #top.woocommerce-account #main .woocommerce-LostPassword {
    	float: left;
        padding-top: 25px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1348243

    Thank you. It works.

    you can close the topic!

    Thank´s for the great support!!!!

    #1348320

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Woocommerce support’ is closed to new replies.