Two Issues With "payment Methods"

Hey all, thanks for clicking the topic, I think I may have messed this up somehow, I don't remember the formatting being like this, but take a look at the first pic, I think it used to read "Payment Methods" now it looks like it's grabbing the name of something somewhere, any idea where it gets that name from and how to fix it?

Second related issue which I think is what I may have done to cause the first issue, reference pic number two, when you are not logged into the front end in the cart there is an area down there that used to say "Sign in to check out" but I mayyyy have deleted that language variable by accident.... Can any of you guys search for it and supply that with me so that I can re-add it?

Capture.JPG

Capture2.JPG

Hello!

Please, go to Administration->Languages->Translations, and add the "payment_methods" language variable.

Regarding the second issue, the language variable is payments.signin_to_checkout. The value should be

Sign in to check out

Hello!

Please, go to Administration->Languages->Translations, and add the "payment_methods" language variable.

Regarding the second issue, the language variable is payments.signin_to_checkout. The value should be

Awesome that worked!! Thank you!!
Quick question, is there a way to remove that bright blue "sign in here" thing? They can sign in on the next page when they hit "proceed to checkout" I found where it is in the core files but I know you're not really supposed to edit those.

Awesome that worked!! Thank you!!
Quick question, is there a way to remove that bright blue "sign in here" thing? They can sign in on the next page when they hit "proceed to checkout" I found where it is in the core files but I know you're not really supposed to edit those.

What bright blue "sign in here" thing do you mean? Please could you send the screenshot?

What bright blue "sign in here" thing do you mean? Please could you send the screenshot?

Probablyyy should have mentioned it was the same thing as in the first part of my post from earlier, I attached a screenshot as well though!

Capture.JPG

Looks like that may be a paypal express method or similar, gone wrong

Looks like that may be a paypal express method or similar, gone wrong

I don't have any addons that effect anything like that at the moment, but it is possible I guess! I did find the part of the core file that is where it is:

responsive
templates
views
checkout
components
cart_content.tpl
This piece of code is at the absolute bottom of that file, if I remove this whole thing, that area goes away, but I don't know what else is driven off of this piece of code.
{if $checkout_add_buttons}
    
{__("or_use")} {foreach from=$checkout_add_buttons item="checkout_add_button"} {/foreach}
{$checkout_add_button nofilter}
{/if}

Realized I never even gave the URL of the site lol, whoops. thomasprod.com, add an item to the cart and then click the "view cart" from the top right account area then you'll see it

Still looks like its trying to use a nother payment method, i.e. paypal or amazon payments etc.

Try and disable your payment methods oner by one and see how you go.

If it goes away after one then replace that file only form a backup

You can modify this part through the post controller. To do this open the app/addons/my_changes (or create new add-on) and add the controllers/frontend/checkout.post.php file with the following code:

if ($mode == 'cart') {
    Tygh::$app['view']->assign('checkout_add_buttons', array());
}

You can modify this part through the post controller. To do this open the app/addons/my_changes (or create new add-on) and add the controllers/frontend/checkout.post.php file with the following code:

if ($mode == 'cart') {
    Tygh::$app['view']->assign('checkout_add_buttons', array());
}

Made the file but it's still there, it changed the formatting by adding that file and that code, but it's still there. I wish I knew more about how the hooks and the my_changes addon works so I could actually see what that piece of code does, and perhaps be able to figure it out on my own without pestering you guys lol!

Made the file but it's still there, it changed the formatting by adding that file and that code, but it's still there. I wish I knew more about how the hooks and the my_changes addon works so I could actually see what that piece of code does, and perhaps be able to figure it out on my own without pestering you guys lol!

The buttons code is got from payment methods scripts. Usually they located in the following directories

app/payments

app/addons/ADDON/payments

Disable your active payment methods one by one to find one who causes this issue