astra_support_footer_widget_right_margin()

Whether to fix the footer right-margin space not working case or not.


Description

As this affects the frontend, added this backward compatibility for existing users.


Return

(boolean) false if it is an existing user, true if not.


Source

File: inc/builder/type/footer/widget/dynamic-css/dynamic.css.php

function astra_support_footer_widget_right_margin() {
	$astra_settings                                       = get_option( ASTRA_THEME_SETTINGS );
	$astra_settings['support-footer-widget-right-margin'] = isset( $astra_settings['support-footer-widget-right-margin'] ) ? false : true;
	return apply_filters( 'astra_apply_right_margin_footer_widget_css', $astra_settings['support-footer-widget-right-margin'] );
}

Changelog

Changelog
Version Description
3.6.7 Introduced.


User Contributed Notes

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