Поддержка Плагины заменить иконку на текстовое поле в виджете

  • в плагине unlimited elements for elementor заменила иконку на текстовое поле, в настройках виджета в плагине. в элементоре в редакторе выводиться текстровое поле. но в самом виджете потмо нет. ни иконки ни тектса. вместо иконки хочу писать цену. помогите пожалуйста с редактированием html и css для этой опции, т.е. что надо изменить в коде виджета чтобы вместо иконки можно было писать цифры
    <div class=»uc_icon_image_content_box» id=»{{uc_id}}»>
    <div class=»uc_content_box_area» >
    <div class=»uc_thumb»>

    {{box_image_alt}}

    </div>
    <div class=»uc_details»>
    <div class=»uc_details-icon»>{{box_icon_html|raw}}</div>
    {% if show_title == «true» %}<div class=»uc_title»>{{box_title|raw}}</div>{% endif %}
    {% if show_text == «true» %}<div class=»uc_text»>{{box_content|raw}}</div>{% endif %}
    {% if show_button == «true» %}{{button_label|raw}}{% endif %}
    </div>
    </div>
    </div>

    #{{uc_id}} *{
    box-sizing: border-box;
    }

    #{{uc_id}} .uc_content_box_area{
    overflow: hidden;
    position: relative;
    text-align:center;
    }

    #{{uc_id}} .uc_thumb{
    margin:0 0 -{{hidden_part}}px;
    }

    #{{uc_id}} .uc_thumb img{
    max-width:100%;
    width:100%;
    vertical-align:middle;
    object-fit: cover;
    }

    #{{uc_id}} .uc_details{
    padding:0 20px 30px;
    position:relative;
    text-align:center;
    top:{{hidden_part}}px;
    transition:all 0.3s ease 0s;
    width:100%;
    font-weight: 400;
    line-height:1.5em;
    }

    #{{uc_id}} .uc_details .uc_details-icon{
    text-align:center;
    position:relative;
    z-index:1;
    }

    #{{uc_id}} .uc_details .uc_details-icon svg
    {
    height:1em;
    width:1em;
    }

    #{{uc_id}} .uc_details .uc_btn{
    display: inline-block;
    padding:10px 20px;
    position: relative;
    position:relative;
    top:10px;
    transition: all 0.3s ease-in-out 0s;
    text-decoration:none;
    }

    #{{uc_id}} .uc_content_box_area:hover .uc_details{
    top:0px;
    }

    #{{uc_id}} .uc_content_box_area:hover .uc_details .uc_btn{
    top:0px;
    }

    .uc_title
    {
    font-size:21px;
    }

    .uc_text
    {
    }

    cкрин настроек в виджете где изменила атрибут ИКОНКИ на ТЕКСТОВОЕ ПОЛЕ https://prnt.sc/26jjbwa
    скрин как оно выводится в настройках в элменторе https://prnt.sc/26jjcu3

    Страница, с которой нужна помощь: [войдите, чтобы увидеть ссылку]

  • Тема «заменить иконку на текстовое поле в виджете» закрыта для новых ответов.