chat session inluding the link to the current page.

ThemeBurn SupportForumsOpenCart ThemesBurnEnginechat session inluding the link to the current page.

This topic has been marked as not a support question.

Hello,
Do you know:
1) how to include the link to the current product page when starting a whatsup chat session?
based on whats up documentation, i created a new button (works for Android) with target link=”intent://send/phoneNumber#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end”
its opening the chat session but i would like to include the link to the current page when clicking on the button triggering the chat session.

2) make this button visible only for a specific country (if possible)

3) make this button visible only for mobiles

thank you,

ps: a similar feature would be usefull if available in burnengine

December 23, 2016 at 1:01 am #54671

Hi,

1) Sorry, but this is out of our support scope.

2) You can easily hide/show elements for different languages. Here is the custom CSS:

[lang="en"] .buttonElement {
  display: inline-block;
  /* or */
  display: none;
}

3) You can target smaller screens with media queries:

@media (max-width: 768px) {
  .buttonElement {
    display: inline-block;
    /* or */
    display: none;
  }
}

BR,
ThemeBurn team

January 3, 2017 at 11:11 pm #54945
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.