Hide COMGATE billing options and show on click :)

.hidden_payments {display:none;}
#order-billing-methods > p {padding: 15px 30px;cursor:pointer;}
#order-billing-methods > p:hover {color: #304e66;}

 

 

 

$( "<p>Další platební metody »</p>" ).insertAfter( "#order-billing-methods > div:nth-child(4)" );
$('#order-billing-methods > div:nth-child(6)').nextUntil('#order-billing-methods > div:nth-child(19)').andSelf().add('#order-billing-methods > div:nth-child(17)').addClass( "hidden_payments" );

$('#order-billing-methods > p').click(function() {
$('#order-billing-methods > p').hide();
$('.hidden_payments').show();
});