The simple shopping cart plugin has a filter that you can use to customize the Shopping Cart image icon that is displayed at the top of the cart.
Code Example
The following code example shows how you can use your own custom cart image.
Upload your custom cart image via the media library so you have the URL of the cart image ready.
Add the following code block to your theme’s functions.php file and specify the actual custom cart image URL:
add_filter('wspsc_cart_icon_image_src', 'override_cart_image_icon'); function override_cart_image_icon($cart_img_src) { //Specify the URL of your custom cart image $cart_img_src = 'http://www.example.com/uploads/my-custom-cart-image-icon.jpg'; return $cart_img_src; }
Note: We provide technical support for our premium plugins via our customer only support forum