• Resolved moin12

    (@moin12)


    hi,
    i have piece of code on which when i click on it and it will send message directly to my friends whatsapp number along with the link of current page and a line of subject ..

    i want to add that code below product summary on woocommerce product page

    can any one help me out?

    thanks in advance

    here is the code

    <!DOCTYPE html>
    <html>
    <body>

    a href hyperlink

    <p id=”demo”></p>

    <script>
    waCurrentPage = function() {
    return encodeURI(“whatsapp://send?phone=+919999999999&text=Check this out: ” + ‘https://&#8217; + window.location.hostname + window.location.pathname);
    }
    </script>

    </body>
    </html>

    • This topic was modified 7 years, 4 months ago by moin12.
    • This topic was modified 7 years, 4 months ago by moin12.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter moin12

    (@moin12)

    the link (hyper link is shown in above piece of code )

    the code line for that hyperlink is

    
    <a hrwef="window.location=waCurrentPage();">Link  </a>
    • This reply was modified 7 years, 4 months ago by moin12.
    • This reply was modified 7 years, 4 months ago by moin12.
    • This reply was modified 7 years, 4 months ago by moin12.
    Thread Starter moin12

    (@moin12)

    although i am a non-developer ,but still i tried this , but my whole website got crashed

    add_action( ‘woocommerce_single_product_summary’, ‘whatsappdirect1’, 35 );

    function whatsappdirect1() {
    echo ‘<!DOCTYPE html>
    <html>
    <body>

    [anchor] href=”window.location=waCurrentPage();”>W3Schools[anchor-close]

    <p id=”demo”></p>

    <script>
    waCurrentPage = function() {
    return encodeURI(“whatsapp://send?phone=+91999999999&text=Check this out: ” + ‘https://&#8217; + window.location.hostname + window.location.pathname);
    }
    </script>

    </body>
    </html>

    ‘;
    }

    • This reply was modified 7 years, 4 months ago by moin12.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘can anyone help on adding html/javascript code below product summary on woocomme’ is closed to new replies.