تخطي الملاحة

Open

Reported for: إضافة WPML Multilingual CMS 4.6.7

Topic Tags: Compatibility

Overview of the issue

When utilizing Elementor Pro with WPML to build and translate pop-ups, the inline CSS for the translated pop-ups may not be rendered correctly. This leads to small visual discrepancies between the original and translated versions.

Workaround

Please, make sure of having a full backup of your site before proceeding.

  • Open …/wp-content/plugins/elementor-pro/modules/popup/tag.php file.
  • Look for line 99.
  • Change:
    	public function render() {
    		$settings = $this->get_active_settings();
    
    		if ( 'close' === $settings['action'] ) {
    			$this->print_close_popup_link( $settings );
    
    			return;
    		}
    
    		$this->print_open_popup_link( $settings );
    	}
    
  • For:
    public function render() {
    	$settings = $this->get_active_settings();
    
    	if ( 'close' === $settings['action'] ) {
    		$this->print_close_popup_link( $settings );
    
    		return;
    	}
    
    	// WPML Workaround for compsupp-7039
    	if ( class_exists('Sitepress') && isset($settings['popup']) ) {
    		$settings['popup'] = apply_filters( 'wpml_object_id', $settings['popup'], get_post_type($settings['popup']) , TRUE  );
    	}
    
    	$this->print_open_popup_link( $settings );
    }
    

2 ردود إلى “Elementor Pro - Inline CSS not rendered for translated pop-ups”

ترك رد

يُرجى البقاء في الموضوع والتزام الاحترام للآخرين. إذا كنت بحاجة إلى مساعدة بشأن المشكلات التي لا تتعلق بهذا المنشور، فاستخدم منتدى الدعم لبدء محادثة أو إرسال تذكرة.

يمكنك استخدام هذه العلامات:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>