• Resolved Insomnia88

    (@insomnia88)


    When I enqeue styles and scripts in my custom plugin they won’t be minified by this plugin. Is this intended or am I doing something wrong? I am using wp_enqueue_script and wp_enqueue_script

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Raul P.

    (@alignak)

    Are the files generated matching the domain?
    CSS or JS files?

    Thread Starter Insomnia88

    (@insomnia88)

    Yes, they are on the same domain. CSS and JS files, both are ignored. I enqeue them inside of shortcodes.

    • This reply was modified 2 years, 8 months ago by Insomnia88.
    Plugin Author Raul P.

    (@alignak)

    Can you post your code, how you are enqueueing the css and js files?
    Are you doing this on your theme, or custom plugin?
    If custom plugin, are you using ob_start or similar functions?
    What is the source code on the html after enqueuing?
    Thanks

    Thread Starter Insomnia88

    (@insomnia88)

    public function info_slider($atts, $content = null) {
        $args = shortcode_atts( 
            array(
                'orientation' => null,
                'title' => null,
            ), 
            $atts
        );
        
        wp_enqueue_style('css-custom-app-info-slider', plugin_dir_url(__FILE__).'assets/css/info-slider.css');
        wp_enqueue_script('js-custom-app-info-slider', plugin_dir_url(__FILE__).'assets/js/info-slider.js', array( 'jquery' ), null, true );
        
        $info = '';
        $box = '<div class="titles">'.'<h3>'.$args['title'].'</h3><ul>';
        $slides = '<ul class="slides">';
        $btn = '<span class="btn"></span>';
    	$box .= '</ul>'.do_shortcode($btn).'</div>';
    	$slides .= '</ul>';
        $output = '<div class="info-slider">
        	<div class="wrap">
        		'.$slides.'
        		'.$box.'
        	</div>
        	<div class="text">'.$info.'</div>
        </div>';
    	return $output;
    }

    I am doing this in a custom plugin. The class including the function is called when the plugins_loaded hook is called.

    public function __construct() {
        add_action('plugins_loaded', [$this, 'init']);
    }

    UPDATE:
    After reinstallation minifcation seems to work but there was also a missunderstanding from my part. I am using this plugin for quite some time and wasn’t aware of the FVM 3 features that requires me to manually list which files are defered or parsed at render blocking. When I list them it works.

    • This reply was modified 2 years, 8 months ago by Insomnia88.
    • This reply was modified 2 years, 8 months ago by Insomnia88.
    • This reply was modified 2 years, 8 months ago by Insomnia88.
    Plugin Author Raul P.

    (@alignak)

    I was going to suggest enqueuing the files as an action to wp_enqueue_scripts, not plugins_loaded, as per the docs example at https://developer.www.ads-software.com/reference/functions/wp_enqueue_style/
    Nevertheless, it should work as long as it shows up on the page.

    You are correct, as you realized on FVM3 styles are processed automatically, while scripts are a manual process where you choose what you want to defer (to prevent conflicts right after installing) or you could just add / and then exclude what you don’t want, ie: jquery for example.

    On FVM 4 I am planning to add both manual and automatic optimization as well, but this will still require manual settings to prevent breaking things.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘my plugin files are ignored’ is closed to new replies.