This snippet is useful in situations where you would like to hide particular actions (Promote, Edit, Stats, Delete, etc.) from the Listing Cards found under the /my-account/my-listings/ endpoint.
// PROMOTE
jQuery(document).ready(function($){
$('.cts-listing-action-promote').remove()
});
// DELETE
jQuery(document).ready(function($){
$('.cts-listing-action-delete').remove()
});
// STATS
jQuery(document).ready(function($){
$('.cts-listing-action-stats').remove()
});
// EDIT
jQuery(document).ready(function($){
$('.cts-listing-action-edit').remove()
});