WAIT: TRANSLATEPRESS edit icon not showing on any BRICKS sites

Browser: Chrome 110
OS: macOS
URL: https://charismaticdl.com
CleanShot 2024-09-03 at 11.54.35

I have been noticing this issue on all of my bricks websites. When you use TranslatePress on other builders like ELEMENTOR, you will always see a little pen icon next to any word in the current language. When you click on that pen icon, you can translate that string into any of your chosen languages.

Now with bricks, that is just not possible. There is no icon and you just have to move through all the strings which makes it super time consuming.

Is there any solution to this bug with the Bricks Builder?

Hi and thank you for the report.

I’ve tested this on a local install, and I think the icon is there, it’s just that it’s on the right side, no? Is that the icon that should be there (on the center-right)?

Since I don’t know how Translatepress positions this element, I think it would be best if you could contact them, so that they can check. And if it’s something that we should fix/change, please let us know.

Does this make sense?

Thanks and best regards,
M

Hey guys,

I feel like TranslatePress does not expect the body element to have a display of flex… probably something TP has to fix.

Best,

André

1 Like

Yeah, could be. I suggest we wait for Translatepress to answer, then we will see.
I believe they will need to fix it.

M

hi yall,

same on Firefox…i solved with that snippet for now.

function load_custom_inline_css_based_on_url() {
if ( isset($_GET[‘trp-edit-translation’]) && $_GET[‘trp-edit-translation’] === ‘preview’ ) {
echo ‘
.brx-body {
display: block !important;
}
’;
}
}
add_action( ‘wp_head’, ‘load_custom_inline_css_based_on_url’ );