如何在 Elementor Wordpress 中编辑我的简码部分的文本

How to edit the text of my Shortcode section within Elementor Wordpress

我的主页中有一个部分目前有这个:

该部分由以下简码提供:

[27-search-form layout="wide" align="center" listing_types="for-rent, for-sale" tabs_mode="default" box_shadow="no"]

我需要将按钮文本从“搜索”更改为“公交车”

有人知道怎么做吗?

谢谢!

然后只需添加一个 HTML 代码块 到您的主页,然后将此代码粘贴到其中:

<script>
   jQuery(document).on("ready", function(){
       jQuery(".home .featured-search .search").html("<i class='material-icons'>search</i> Buscar");
   })
</script>