View Categories

Quick translate or replace single words

In general our plugin is ready to be translated in your language. Additionally you can edit certain text strings (e.g. sale ribbon or button text) easily via plugin settings.

Anyway there might be some situation where you don't want to make use of our prepared translations or only want to replace single words.

Therefore we prepared a filter which can be used to quickly replace single terms.

In this example we're going to update the text "Reviews" to "Amazon Reviews".

Making use of our filter #

The filter looks as follows:

1
2
3
4
5
6
add_filter( 'aawp_replace_translations', function( $translations ) {

    $translations['%s Reviews'] = '%s Amazon Reviews';

    return $translations;
});

[aawp_docs_custom_php_code_snippets_guide]

After adding our little PHP snippet the output looks as follows:

Frequently asked text replacements #

Here you can find more examples of frequently asked text replacements which can be done by using the filter above:

Description String to be replaced
"Reviews" label %s Reviews

We will to update this collection continuously.

Updated on 29. November 2023

Stay in touch with us!

Join our newsletter and we let you know about new theme releases,
as well as important updates and discounts.

Latest news from our blog: The Best Free & Paid WordPress Magazine Themes Of 2025 (9. April 2025)