Add a Gap in Mobile Between Columns on X/Pro Theme

Issue: Solution 1. Add this CSS to each column’s Element CSS: Solution 2. Set a class to the row that contains the columns then add a CSS code targetting the columns using the class added the row like this: The code above will add a bottom margin to the columns on mobile if the class gap-mobile is added to the …

Remove WP/Theme version in file URL

[php] function remove_theme_version_strings( $src ) { global $wp_version; // WordPress version $theme_version = wp_get_theme(get_template())->get( ‘Version’ ); // theme version parse_str( parse_url($src, PHP_URL_QUERY), $query ); if ( !empty( $query[‘ver’] ) && $query[‘ver’] === $theme_version ) { // I’m just checking for the active theme’s version here $src = remove_query_arg( ‘ver’, $src ); } return $src; } add_filter( ‘script_loader_src’, ‘remove_theme_version_strings’ ); add_filter( …