Edit file File name : author-meta.php Content :<?php namespace ElementorPro\Modules\DynamicTags\Tags; use ElementorPro\Modules\DynamicTags\Tags\Base\Author_Tag; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Author_Meta extends Author_Tag { public function get_name() { return 'author-meta'; } public function get_title() { return esc_html__( 'Author Meta', 'elementor-pro' ); } protected function register_controls() { $this->add_control( 'key', [ 'label' => esc_html__( 'Meta Key', 'elementor-pro' ), 'ai' => [ 'active' => false, ], ] ); } } Save