How can I remove footer badges from my online store?

Hi @manan123
You can follow these step to achieve your result
Go to online store ->Edit code ->Go to component-price.css file and use bellow code

@media screen and (mnax-width:768px){
    .price .price--large .price--on-sale  .price--show-badge{
          display:flex;
     }
   .badge .price__badge-sale,
   .badge .price__badge-sold{
      height: 2.5rem !important;
    
   }

}