- Joined
- Feb 27, 2013
- Messages
- 72
- Points
- 0
I found a solution for thethe-image-slider image slider to work with WPML translation.
Edit thethe-image-slider.php
replace $nPostID = get_the_ID();
with:
I think the same solution is somewhere on their support forums. But I know allot of people want this tiny bit of code!
Edit thethe-image-slider.php
replace $nPostID = get_the_ID();
with:
PHP:
//$nPostID = get_the_ID();
if(get_the_title()==$name){
$nPostID = get_the_ID();
}