Hide Service Fee from vendors

Hi,
I came across the following page Hide Service Fee from vendors, with a person who asked to hide the service fee from the seller section, and no solution had not been brought. I think I found one, so I’ll post it if it helps other people.

To integrate into the footer.php before :

<script type="text/javascript">
    jQuery(document).ready(function($) {
        // Vérifier si l'URL commence par la chaîne spécifiée
        if (window.location.href.indexOf("https://www.yourwebsite.fr/account/vendor/orders/") === 0) {
            // Appliquer le script uniquement pour les pages correspondantes
            $('tr:contains("Service Fee")').hide();
        }
    });
</script>

Obviously replace yourwebsite with yours

1 Like

Hi,

Thank you for your solution, it will be useful for our community.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.