Home Forums WoodMart support forum Banner links not working Reply To: Banner links not working

#176639

Artem Temos
Keymaster

But what exactly should we fix from our theme side? It is just a regular link and WPML seems to break it somehow. It is not something that our theme breaks in WPML but the WPML breaks in the theme. If there are some requirements from their side then we will be glad to help you to implement this.

As a workaround, try to replace this code

<div id="<?php echo esc_attr( $id ); ?>" class="promo-banner<?php echo esc_attr( $class ); ?>" <?php if( $link && $attributes['url'] ) echo 'onclick="' . $onclick . '"'; ?> >

with this on

<div id="<?php echo esc_attr( $id ); ?>" class="promo-banner<?php echo esc_attr( $class ); ?>" data-click="<?php echo esc_url( $attributes['url'] ); ?>">

and put the following code to the Custom JS field in Theme Settings

jQuery('.promo-banner').on('click', function(){
	if (jQuery(this).data('click')) {
		window.location.href=jQuery(this).data('click');
	}
});