Custom product attribute and variations not coming up

Home Forums WPLMS AddOns WPLMS WooCommerce Custom product attribute and variations not coming up

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #97017
    cloudnine
    Participant
    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
    #97022
    MrVibe
    Keymaster
    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.
    #97024
    cloudnine
    Participant
    This reply has been marked as private.
    #97202
    MrVibe
    Keymaster
    Sorry for delayed response. checking site...
    #97376
    cloudnine
    Participant
    This reply has been marked as private.
    #97459
    H.K. Latiyan
    Participant
    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.
    #97511
    MrVibe
    Keymaster
    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;}
    #97535
    cloudnine
    Participant
    This reply has been marked as private.
    #97746
    H.K. Latiyan
    Participant
    This is not possible as of now, however such customizations can be done by css, example. So please hire a freelancer for simple customizations.
    #108805
    HorizonCME
    Spectator
    Thanks for sharing the code to add the description - super helpful!
    #108910
    H.K. Latiyan
    Participant
    Thanks for the update.
Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Custom product attribute and variations not coming up’ is closed to new replies.