• Resolved thesaintindiano

    (@thesaintindiano)


    Respected sir/madam,

    How could I move the icons from top to left of order status?

    Have a nice day.

    Regards & Thanks
    Indiano

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @thesaintindiano,

    Sorry for my delayed response.

    To move the icon of custom order status, you can add below code in the functions.php file of the current active theme.

    add_action('admin_head', 'my_custom_fonts');
    
    function my_custom_fonts() {
      echo '<style>
    mark.status-<strong>custom-status</strong>:after{
    display: flex;
    flex-direction: row;
    padding-top: 10px;
    }
      </style>';
    }

    NOTE: In the above code, you will have to change ‘custom-status’ to the slug name of your custom order status set in the plugin’s setting.

    Do let me know if you need any further help.

    Regards,
    Chetna Bhutka

    If you want to hide all the icons, just change de CSS on the answer above for this:

    mark.order-status:after{display: none;}

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move icon from top to left’ is closed to new replies.