WPML and Genesis Footer

Recently we worked with WPML and the Genesis Framework and had a very hard time getting the Footer to Translate correctly.

The two things we needed to do was “Return to Top” and the credits for the site design.

First we were using Genesis Simple edits to change the footer, but that did not work well at all. We tried several tutorials, but none of the worked.

So we disabled the plugin and dug into functions.php. As always, make sure you backup your functions.php before making any changes.

So with simple edits disabled, we did a search for “return to top” and then entered a translation string for it.

That solved one problem. Next was the credits.

To do that we created a custom credit with the following code.


//* Customize the credits
add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
function custom_footer_creds_text() {
echo '

'; echo icl_translate( 'wpml', 'my-copy-right', 'Copyright' ); echo '  © '; echo date('Y'); echo ' · Enkelson ·  '; echo icl_translate( 'wpml', 'site-design', 'Web Design By:' ); echo ' NetViper Interactive'; echo '

'; }

In order to get the words translated that we wanted, we had to put in the translation code. So we wanted “copyright” and “Web Design Buy”.

These lines allow us to find it string translation.
echo icl_translate( ‘wpml’, ‘my-copy-right’, ‘Copyright’ );
echo icl_translate( ‘wpml’, ‘site-design’, ‘Web Design By:’ );

So then we simple search and enter the translation just like doing copyright.

Hopefully this helps you out.

Which Google Ads campaign should i use for my Business?

By Dave Fogel | December 18, 2022

Many people associate Google Search Ads, but there are several different types of Google Ads campaigns that you can use for your business, and the best option for you will depend on your specific goals and target audience. Here are a few options to consider: Search ads: Search ads appear in the search results when…

Are Google Ads worth it for small business?

By Dave Fogel | December 17, 2022

Yes, Google Ads can be a great option for small businesses. Google Ads allows businesses to reach their target audiences and engage with potential customers, increasing their online visibility. Additionally, Google Ads can be tailored to the specific needs of small businesses, allowing them to target the right people and optimize their campaigns accordingly. Google…

Are Google Display Ads as effective as Google Search Ads?

By Dave Fogel | December 16, 2022

Google display ads and Google search ads can both be effective at reaching potential customers and achieving your marketing goals, but they work in different ways and may be more effective in certain situations. Here are some key differences between Google display ads and Google search ads: Placement: Google search ads appear in the search…

Posted in

Dave Fogel

Leave a Comment