• Resolved Davinder

    (@davinderschiedel)


    Hi. The front end works well, but no names are coming through on emails or within the order page.

Viewing 1 replies (of 1 total)
  • Plugin Support oluisrael

    (@oluisrael)

    Hi @davinderschiedel kindly add the code below to your active theme’s functions.php file to fix this issue:

    /**
    * Add this code snippet in functions.php file of your currently active theme.
    */
    function alg_wc_pif_remove_form_cart_attribute_callback( $form_cart_attribute ){
    $form_cart_attribute = true;
    return $form_cart_attribute;
    }
    add_filter( ‘alg_wc_pif_remove_form_cart_attribute’, ‘alg_wc_pif_remove_form_cart_attribute_callback’ );

    I hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Nothing appearing on emails’ is closed to new replies.