I started to create a website for a record label. Our releases always have at least two tracks or more. I want to setup a page for each release where people can buy the vinyl record, the download for the whole release or buy individual tracks as downloads from the release. What's the best way to do this?
Is it possible to make one product for example Album 1 and make all these options available for the product? So buy the vinyl (which should also include a download of the album), buy the whole digital album or buy individual tracks from the album? I started with making a variable product, but how should i continue to make the above mentioned possible?
The Downloads should come from our Dropbox and should be available as high quality wav or mp3 for the customer to choose.
I would like it to look like on the picture i attached. So next to each track the option to buy that track and below the tracklist an option to buy the vinyl or the whole digital download.
You have create a product post for all track to allow you to sell tracks sepratly. A product post for the vinyl And a product post for the whole playlist in digital format.
Once it is done, create a playlist to wp-admin>playlist Add a "Track link" linked to its digital track product for each track. And a "Store link" button for the vinyl product and for the digital format.
Ok i will do that. I want to have 1 min mp3 previews for each track.
So is it the right way to use the mp3 player to create a playlist? Then for the source file of Track 1 use the 1 min preview mp3 and for the option to buy the digital track use the Optional Call to Action? Can you tell how i can make a pop-up add to basket here?
You should set all preview mp3 in the playlist and the full mp3 in the product post as downloadable file.
The sonaar doesnt have the option the do a popup add to cart. We can redirect the user to the single product page or automatcally add to cart the track by using this url "?add-to-cart=25&quantity=1" see here
Thanks again for your reply. Another question. Is it possible to edit the size of the product picture on the product page and change the font size etc.?
Font-size are providing from the typography theme options (h1, body). Only the Price font-size is hardcoded. To change it, you have to go to wp-admin>theme options>custom css/js and add this code:
No option to reduce the product image is available. To reduce it you have to overwrite the style provided the wocommerce plugin. We are going a bit beyond the scope of our support here, so I will porvide you this code, but I cant go further on this path.
Hello Sonaar Team,
I started to create a website for a record label. Our releases always have at least two tracks or more. I want to setup a page for each release where people can buy the vinyl record, the download for the whole release or buy individual tracks as downloads from the release. What's the best way to do this?
Is it possible to make one product for example Album 1 and make all these options available for the product? So buy the vinyl (which should also include a download of the album), buy the whole digital album or buy individual tracks from the album? I started with making a variable product, but how should i continue to make the above mentioned possible?
The Downloads should come from our Dropbox and should be available as high quality wav or mp3 for the customer to choose.
Thanks for your help.
Marco
I would like it to look like on the picture i attached. So next to each track the option to buy that track and below the tracklist an option to buy the vinyl or the whole digital download.
Attached files: Bildschirmfoto 2023-03-09 um 17.30.37.png
Hi Marco,
You have create a product post for all track to allow you to sell tracks sepratly.
A product post for the vinyl
And a product post for the whole playlist in digital format.
Once it is done, create a playlist to wp-admin>playlist
Add a "Track link" linked to its digital track product for each track.
And a "Store link" button for the vinyl product and for the digital format.
Thanks,
Alexandre from the Sonaar.io Crew
Hello Alexandre thank you for your reply.
Ok i will do that. I want to have 1 min mp3 previews for each track.
So is it the right way to use the mp3 player to create a playlist? Then for the source file of Track 1 use the 1 min preview mp3 and for the option to buy the digital track use the Optional Call to Action? Can you tell how i can make a pop-up add to basket here?
Hi Marco,
You should set all preview mp3 in the playlist and the full mp3 in the product post as downloadable file.
The sonaar doesnt have the option the do a popup add to cart. We can redirect the user to the single product page or automatcally add to cart the track by using this url "?add-to-cart=25&quantity=1"
see here
Thanks,
Alexandre from the Sonaar.io Crew
Thanks again for your reply. Another question. Is it possible to edit the size of the product picture on the product page and change the font size etc.?
Hi Marco,
Font-size are providing from the typography theme options (h1, body).
Only the Price font-size is hardcoded. To change it, you have to go to wp-admin>theme options>custom css/js and add this code:
.single-product .price .amount {
font-size: 22px;
line-height: 22px;
}
You can also change the product title like this:
.single-product h1{
font-size: 22px;
line-height: 22px;
}
No option to reduce the product image is available. To reduce it you have to overwrite the style provided the wocommerce plugin. We are going a bit beyond the scope of our support here, so I will porvide you this code, but I cant go further on this path.
.single-product .woocommerce-product-gallery__image {
text-align: right;
}
.single-product.woocommerce div.product div.images img{
max-width: 400px ;
display: inline-block;
}
Thanks,
Alexandre from the Sonaar.io Crew
Ok yes i understand and really appreciate your help!
You are welcome
Thanks,
Alexandre from the Sonaar.io Crew