edit the line 692 in the plugin file:
wp-content/plugins/premium-addons-for-elementor/admin/settings/modules-setting.php
$premium_templates = !empty( self::get_enabled_keys()['premium-templates'] ) ? self::get_enabled_keys()['premium-templates'] : null;
have you used the filters for get/post query vars?
functions.php
// Adding the id var so that WP recognizes it
function my_insert_query_vars( $vars )
{
array_push($vars, 'the_var_name');
return $vars;
}
add_filter( 'query_vars','my_insert_query_vars' );
header.php
$the_var_value = get_query_var('the_var_name');
any hack to add editor role to be able to view the “string translations” tab?
not other settings, just “string translations”
Thanks