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'] ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
3.6.7 | Introduced. |