Fundamento Wordpress Plugin - Rating, Reviews, Demo & Download

Fundamento Wordpress Plugin - Rating, Reviews, Demo & Download
No ratings yet
Free
Follow for free plugins, new theme releases and theme news

Plugin Description

Have you ever wanted to alter the way Elementor renders one of its widgets on your website?

Fundamento provides an easier way to achieve this by allowing you to inject extra CSS classes into Elementor’s widgets.

Usage

Tell Elementor that you have a new skin available by utilizing the following code in your functions.php file:

  1. Add an action to initialize Fundamento:

    add_action('init', 'fundamento_init');
    
  2. Add a call to Fundamento’s register_skin() function:

    function fundamento_init() {
        // create a new Fundamento instance
        $f = FundamentoPlugin::instance(); 
    
        // register a new skin
        $f->register_skin([
            'name'    => 'Orange',                                                      // The name of your new skin, as it will appear in Elementor
            'element' => 'button',                                                      // The elementor element you are skinning
            'css'     => get_stylesheet_directory_uri() . '/skins/button/orange.css',   // optional - have Fundamento enqueue an extra css file
            'js'      => get_stylesheet_directory_uri() . '/skins/button/orange.js',    // optional - have Fundamento enqueue an extra js file
        ]);       
    }
    

Screenshots

No screenshots provided


Reviews & Comments