quotes_dlx_plugin_preview_modal_styles

Filter the styles print arguments in the preview modal.

In the modal, you can filter the styles added so you can include your own.

Location: php/Ajax.php

/**
 * Filter the styles print arguments.
 *
 * Add more handles to print.
 *
 * @since 1.0.0
 */
$modal_styles = apply_filters(
	'quotes_dlx_plugin_preview_modal_styles',
	array(
		'qdlx_theme_css',
		'qdlx_twitter_preview_css',
		'qdlx_font_css',
		'qdlx_frontend_css',
		'qdlx_primary_font_css',
		'qdlx_secondary_font_css',
	)
);

Last updated