JordiRC
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamic Conditions] Container compatibilityThanks, now it works!
Forum: Plugins
In reply to: [Dynamic Conditions] Container compatibilityHi,
I’m also waiting for an update for the new containers!
Thanksss!!!
JordiForum: Plugins
In reply to: [Gallery Custom Links] How to activate Lightbox?Hello,
thanks @tigroumeow and @ethanjrt .
I’m doing it with the basic Elementor gallery, and for it to work I have removed the onClick event.
File: mgcl_linker.php
Replace the following line:
$element->outertext = '<a href="' . $url . '" class="' . $rel . ' custom-link" title="' . $title . '" aria-label="' . $aria . '" onclick="event.stopPropagation()" target="' . $target . '" rel="' . $rel . '">' . $element . '</a>';… for this:
$element->outertext = '<a href="' . $url . '" class="' . $rel . ' custom-link" title="' . $title . '" aria-label="' . $aria . '" target="' . $target . '" rel="' . $rel . '">' . $element . '</a>';I also commented on the following lines:
//$potentialLinkNode->{'onclick'} = 'event.stopPropagation()';//$potentialLinkNode->attr( 'onclick', 'event.stopPropagation()' );//$a->attr( 'onclick', 'event.stopPropagation()' );I hope it helps you.
- This reply was modified 5 years, 6 months ago by JordiRC.
Hi,
ok, thanks!
Hi,
thanks. But, how I import products? First I import the grouped products and then the simple products? Or do I import them all at the same time in the same CSV file?
Thanks
Forum: Plugins
In reply to: [WP-PageNavi] WP-Pagenavi translation problemsHello CapitanFindus,
I found a solution. Open the file core.php plugin and looks from the line 71:
$pages_text = str_replace(array( "%CURRENT_PAGE%", "%TOTAL_PAGES%" ),array( number_format_i18n( $paged ), number_format_i18n( $total_pages ) ),$options['pages_text'] );Modify
$options['pages_text']for
__($options['pages_text'])With this change you can translate text using “String translation” from WPML.