We'll create fresh WordPress site with Sell Media installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Sell Media is finely tailored e-commerce solution for selling photos, prints, and videos through your self-hosted WordPress site. Photographers love it for it’s flexibly gallery layouts and powerful extensions.
Using Sell Media, you can:
New in version 2.5: Gutenberg Blocks
Insert galleries in many different formats using Sell Media blocks for Gutenberg!
These WordPress themes were designed to enhance the functionality of Sell Media. Sell Media also works with any properly coded WordPress theme, however, some minor styling tweaks might be required.
Take Sell Media to the next level with these powerful extensions:
Example for adding a message above the cart:
function sell_media_above_cart_function() {
print '<p>This message will show up above the cart on the cart popup. You could include a copyright message or links to your terms of service.</p>';
}
add_action( 'sell_media_above_cart', 'sell_media_above_cart_function' );
Example for adding a message below the cart:
function sell_media_below_cart_function() {
print '<p>This message will show up below the cart on the cart popup. You could include a copyright message or links to your terms of service.</p>';
}
add_action( 'sell_media_below_cart', 'sell_media_below_cart_function' );
Action hooks available: