Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - parared

Pages: [1]
1
Wordpress Plugins / Is Easy Spoiler still maintained?
« on: June 22, 2015, 11:11:12 AM »
Just a short question. Is there still an eye on this Plugin, since it hasn't been updated for over 2 years now. If not just tell please. Thank you.

2
Wordpress Plugins / EasySpoiler "button Text" breaking page issue
« on: November 02, 2013, 03:31:08 PM »
Hello!

I just found out that if you enter >>> or <<< or similar as [Show button Text] or [Hide button Text] the page will break. This is more than logical and not a big thing. Just to let you know, maybe you add a warning for non-allowed signs or so...

btw:
I really would like to see a progress in this case
http://www.dyerware.com/forum/index.php?topic=215.0

Thank you,

Regards,

parared

3
Wordpress Plugins / EasySpoiler and WPML
« on: July 10, 2013, 03:58:07 PM »
Hello there,

I wonder if there is a possibility to use separate translations for "Show/Hide" Button with EaysSpoiler and WPML-Plugin. If this is helping you, here's some code making the theme I use checking which language is currently used

Code: [Select]
function webtreats_lang_test( $atts, $content = null ) {
    extract(shortcode_atts(array(
        'lang'      => '',
    ), $atts));


$lang_active = ICL_LANGUAGE_CODE;

if($lang == $lang_active){
return do_shortcode($content);
}

   
}
add_shortcode('wpml_translate', 'webtreats_lang_test');

see more: http://mysitemyway.com/docs/index.php/Using_WPML#WPML_shortcode

Thank you for your effort and nice plugin!

Pages: [1]