I have both WPLMS Woocommerce and batches installed.
I added the following custom product attributes
http://prnt.sc/ecc0xi and created four variations
http://prnt.sc/ecc19e
But when I click on "Take Course" I don't see those variations
http://prnt.sc/ecc1kg
I thought it will come something like
http://prnt.sc/ecbwt5
Is I am missing something?
Thanks
Your expectation is correct.
Please check if you've enabled WPLMS checkbox in the variations as well. If this does not help, it would be great if you can share WP Admin credentials and we'll login and check the issue.
This reply has been marked as private.
Sorry for delayed response. checking site...
This reply has been marked as private.
I just consulted with Mr. Vibe and came to know the issue was resolved on your website but I guess he forgot to update it here.
The code for showing variation description was added in your website.
-------------
Please add some description in the variation then it will be shown in the popup also.
USe the variation description, add the description as a list :
<ul><li>Custom Info</li></ul>
Add this code :
add_action('wplms_woocommerce_variation_popup_item','custom_add_description_in_variation_popup');
function custom_add_description_in_variation_popup($variation){
$description = get_post_meta($variation['variation_id'],'_variation_description',true);
if(!empty($description)){
echo '<li style="list-style:none;border-bottom: 1px dotted rgba(0,0,0,.08);">'.$description.'</li>';
}
}
and this CSS in Customizer :
.popup_block ul{height:auto;}.popup_block ul+ul{min-height:200px;}
This reply has been marked as private.
This is not possible as of now, however such customizations can be done by css,
example.
So please hire a freelancer for simple customizations.
Thanks for sharing the code to add the description - super helpful!