• Resolved lestra

    (@lestra)


    Hi. I use this code to display Contact Form 7 on product single pages:

    add_action( ‘woocommerce_single_product_summary’, ‘custom_action_after_single_product_title’, 40 );
    function custom_action_after_single_product_title() {
    global $product;
    echo do_shortcode( ‘[contact-form-7 id=”6703″]’ );
    }

    It works nicely but site is in two languages and I dont know how to hook translated form for second language. Can you help me please?

Viewing 1 replies (of 1 total)
  • Thread Starter lestra

    (@lestra)

    This helped me:

    <?php if(ICL_LANGUAGE_CODE==’en’): ?>
    —do something—
    <?php elseif(ICL_LANGUAGE_CODE==’it’): ?>
    —do something else–
    <?php endif; ?>

Viewing 1 replies (of 1 total)

The topic ‘Action hook and multilanguage’ is closed to new replies.