*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #15 on: July 03, 2018, 08:40:44 PM »
in file:
/oc-content/plugins/attributes/functions.php

find line:
Code: [Select]
      } else if ($a['s_type'] == 'TEXT' || $a['s_type'] == 'PHONE' || $a['s_type'] == 'EMAIL' || $a['s_type'] == 'URL') {
        $html .= '<input type="' . strtolower($a['s_type']) . '" id="atr_' . $a['pk_i_id'] . '" name="atr_' . $a['pk_i_id'] . '" placeholder="' . atr_input_placeholder($a['s_type']) . '" value="' . $item_atr['s_value'] . '" ' . $required . '/>';


replace with:
Code: [Select]
     } else if ($a['s_type'] == 'TEXT' || $a['s_type'] == 'PHONE' || $a['s_type'] == 'EMAIL' || $a['s_type'] == 'URL') {
        $input_type = strtolower($a['s_type'] == 'PHONE' ? 'TEL' : $a['s_type']);
        $html .= '<input type="' . $input_type . '" id="atr_' . $a['pk_i_id'] . '" name="atr_' . $a['pk_i_id'] . '" placeholder="' . atr_input_placeholder($a['s_type']) . '" value="' . $item_atr['s_value'] . '" ' . $required . '/>';

Not working this code

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #16 on: July 07, 2018, 12:08:42 PM »
How to solve?

*

MB Themes

Re: Keyboard Change
« Reply #17 on: July 07, 2018, 01:58:39 PM »
From plugin point of view, everything is as it shoul (input type = tel).
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #18 on: July 07, 2018, 03:42:17 PM »
okay But there are no changes

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #19 on: July 11, 2018, 07:17:27 PM »
look this attribute plugin image

First image type email address
Second image type website address
« Last Edit: July 11, 2018, 07:20:00 PM by Ashwathy Achu »

*

MB Themes

Re: Keyboard Change
« Reply #20 on: July 11, 2018, 07:18:17 PM »
Well you may contact your phone support or operating system support to change keyboard layout.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #21 on: July 11, 2018, 07:23:38 PM »
I try at a lot of phones but nothing change

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #22 on: July 11, 2018, 07:27:28 PM »
you need FTP details?

*

MB Themes

Re: Keyboard Change
« Reply #23 on: July 11, 2018, 07:40:00 PM »
No, I am not mobile keyboard developer.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #24 on: July 11, 2018, 08:37:47 PM »
I know you're not mobile keyboard developer.

*

MB Themes

Re: Keyboard Change
« Reply #25 on: July 11, 2018, 09:19:04 PM »
You can find all supported input types by html here:
https://www.w3schools.com/Html/html_form_input_types.asp
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Ashwathy Achu

  • ***
  • 54 posts
Re: Keyboard Change
« Reply #26 on: July 12, 2018, 12:30:42 PM »
finally problem solved

Re: Keyboard Change
« Reply #27 on: July 16, 2018, 11:32:22 PM »
finally problem solved

How did you decide to enter numbers in the phone field can ?