Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
412 views
in Technique[技术] by (71.8m points)

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

I have a section within my Home Page that currently has this:

enter image description here

That section is being feed by the following Shortcode:

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

What I need is to change the button text from "Search" to "Buscar"

Does anyone know how to do this?

Thank you!

question from:https://stackoverflow.com/questions/65648686/how-to-edit-the-text-of-my-shortcode-section-within-elementor-wordpress

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Then just add a HTML code block to your home page then paste this code to it:

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...