Advertisement
fauzanjeg

JKIT || Fix Header/Footer Template Not Support for WPML

Jul 27th, 2023
974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.71 KB | None | 0 0
  1. /**
  2.  * Fix Header/Footer Template Not Support for WPML
  3.  */
  4. if ( class_exists( 'SitePress' ) && ! function_exists( 'jkit_wpml_custom_template_conditions' ) ) {
  5.     /**
  6.      * Custom Condition for Jeg Elementor Kit Header/Footer Template
  7.      *
  8.      * @param bool  $flag The Conditions.
  9.      * @param int   $post_id The Post ID.
  10.      * @param int   $header_id The Template ID.
  11.      * @param array $conditions The Condition args.
  12.      */
  13.     function jkit_wpml_custom_template_conditions( $flag, $post_id, $header_id, $conditions ) {
  14.         /**
  15.          * Get The Current Language by `wpml_current_language` hook filters
  16.          */
  17.          $current_lang = apply_filters( 'wpml_current_language', null );
  18.  
  19.         /**
  20.          * List Template ID for each Languages
  21.          *
  22.          * Wrap by array, if have multivalue (many template), write like this:
  23.          *
  24.          * array( 4407, 4408 ); // array( id1, id2, id3 );
  25.          */
  26.         $indonesia_template_ids = array( 4407 ); /** Indonesia Template IDs */
  27.         $english_template_id    = array( 4405 ); /** English Template IDs */
  28.  
  29.         /**
  30.          * Check if Template ID in Language Templates
  31.          */
  32.         if ( in_array( $header_id, $indonesia_template_ids ) ) {
  33.             /**
  34.              * Check if current language is Indonesia (id)
  35.              */
  36.             if ( $current_lang === 'id' ) {
  37.                 $flag = $flag && true;
  38.             } else {
  39.                 $flag = $flag && false;
  40.             }
  41.         }
  42.  
  43.         /**
  44.          * Check if Template ID in Language Templates
  45.          */
  46.         if ( in_array( $header_id, $english_template_id ) ) {
  47.             /**
  48.              * Check if current language is English (en)
  49.              */
  50.             if ( $current_lang === 'en' ) {
  51.                 $flag = $flag && true;
  52.             } else {
  53.                 $flag = $flag && false;
  54.             }
  55.         }
  56.  
  57.         return $flag;
  58.     }
  59.     add_filter( 'jkit_check_template_conditions', 'jkit_wpml_custom_template_conditions', 10, 4 );
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement