The plugin has critical errors with Elementor’s latest version 3.6.0 +
]]>PHP Fatal error: Uncaught Error: Class ‘Elementor\Scheme_Typography’ not found in /home/fortemhd/public_html/wp-content/plugins/gradient-button-for-elementor/modules/button/widgets/gradient-button.php:229
I get the following fatal PHP error when updating to the latest Elementor version.
]]>in the functin enqueue_styles() there’s the logic for RTL support
but the actual css file assets/css/frontend-rtl.css is not existing and it generates 404 error for RTL sites
please add it to the package to fix
Hello! Great plugin ??
I’m just having a couple of issues and wondered if you can help me:
1. Your button widget is missing the ability to locate the icon Before or After the text – is it possible to add that functionality? Here is the default Elementor button widget https://pasteboard.co/Jb1W4Ad.png
2. I am unable to set Hover color. What ever I set it appears the same as Normal Color settings.
Thank you.
Melanie
Hi dev team! I recently updated the plugin and WordPress 5.4 showed me an error saying Your site has a critical error. I thought I should let you know if you are not aware
]]>Hello.
Add please WPML support.
I do not know how to use SVN.
gradient-button-for-elementor/modules/button/module.php
<?php
namespace GradientButtonElementor\Modules\Button;
use GradientButtonElementor\Base\Module_Base;
class Module extends Module_Base {
public function __construct() {
parent::__construct();
// This is here for extensibility purposes – go to town and make things happen!
add_filter( ‘wpml_elementor_widgets_to_translate’, [ $this, ‘wpml_widgets_to_translate_filter’ ] );
}
public function get_name() {
return ‘bloompixel-gradient-button’;
}
public function get_widgets() {
return [
‘Gradient_Button’, // What is it goes here. This should match the widget/element class – the file name should also match but in small caps!
];
}
public function wpml_widgets_to_translate_filter( $widgets ) {
$widgets[ $this->get_name() ] = [
‘conditions’ => [ ‘widgetType’ => $this->get_name() ],
‘fields’ => [
[
‘field’ => ‘text’,
‘type’ => __( ‘Gradient Button Text’, ‘gradient-button-for-elementor’ ),
‘editor_type’ => ‘LINE’
],
],
];
return $widgets;
}
}
]]>