astra_can_remove_elementor_toc_margin_space()

Check whether user is exising or new to override the default margin space added to Elementor-TOC widget.


Description


Return

(boolean)


Source

File: inc/extras.php

function astra_can_remove_elementor_toc_margin_space() {
	$astra_settings                                    = get_option( ASTRA_THEME_SETTINGS );
	$astra_settings['remove-elementor-toc-margin-css'] = isset( $astra_settings['remove-elementor-toc-margin-css'] ) ? false : true;
	return apply_filters( 'astra_remove_elementor_toc_margin', $astra_settings['remove-elementor-toc-margin-css'] );
}

Changelog

Changelog
Version Description
3.6.7 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.