• Resolved madla

    (@madla)


    Just updated my test site with three languages via WPGlobus!

    One litte glitch I’m running into is that the subtitle provided by WP Subtitle plugin is not recognized by WPGlobus.

    Any idea what needs to be done to get WPGlobus to recognize subtitles?

    In addition, I have a custom plugin that has one custom field, that I would like WPGlobus to translate as well. Is there a dev document somewhere that explains how additional fields need to be handled to support WPGlobus support?

    Thanks in advance.

    https://wordpress.org/plugins/wpglobus/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Alex Gor

    (@alexgff)

    Hello @madla
    At admin you can input subtitle like {:en}Subtitle{:}{:de}Untertitel{:}
    For front-end use filter

    add_filter( 'wps_subtitle', 'wps_subtitle' );
    function wps_subtitle( $s ) {
    	return  WPGlobus_Core::text_filter( $s, WPGlobus::Config()->language );
    }

    Plugin Contributor Alex Gor

    (@alexgff)

    @madla
    As for custom field
    We added this ability for new version Plus .
    We plan release next week

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WP Subtitle Plugin doesn't work with WPGlobus’ is closed to new replies.