Skip to content

Commit

Permalink
Footer credit: Render default credit on block themes (#38458)
Browse files Browse the repository at this point in the history
Stops overriding the default footer credit with a custom WP.com footer credit on block themes because such custom credit is unsupported in the site editor.
  • Loading branch information
mmtr authored Jul 23, 2024
1 parent cad07b5 commit e7a0141
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 210 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: major
Type: removed

Footer credit: Render default credit on block themes
3 changes: 1 addition & 2 deletions projects/plugins/wpcomsh/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
},
"autoload": {
"classmap": [
"block-theme-footer-credits",
"customizer-fixes",
"custom-colors",
"endpoints",
Expand Down Expand Up @@ -130,7 +129,7 @@
"composer/installers": true,
"roots/wordpress-core-installer": true
},
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ4_1_0_alpha"
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_0_0_alpha"
},
"extra": {
"mirror-repo": "Automattic/wpcom-site-helper",
Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/wpcomsh/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "@automattic/jetpack-wpcomsh",
"description": "A helper for connecting WordPress.com sites to external host infrastructure.",
"homepage": "https://jetpack.com",
"version": "4.1.0-alpha",
"version": "5.0.0-alpha",
"bugs": {
"url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh"
},
Expand Down
5 changes: 2 additions & 3 deletions projects/plugins/wpcomsh/wpcomsh.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Plugin Name: WordPress.com Site Helper
* Description: A helper for connecting WordPress.com sites to external host infrastructure.
* Version: 4.1.0-alpha
* Version: 5.0.0-alpha
* Author: Automattic
* Author URI: http://automattic.com/
*
* @package wpcomsh
*/

define( 'WPCOMSH_VERSION', '4.1.0-alpha' );
define( 'WPCOMSH_VERSION', '5.0.0-alpha' );

// If true, Typekit fonts will be available in addition to Google fonts
add_filter( 'jetpack_fonts_enable_typekit', '__return_true' );
Expand All @@ -28,7 +28,6 @@
require_once __DIR__ . '/plugin-hotfixes.php';

require_once __DIR__ . '/footer-credit/footer-credit.php';
require_once __DIR__ . '/block-theme-footer-credits/block-theme-footer-credits.php';
require_once __DIR__ . '/storefront/storefront.php';
require_once __DIR__ . '/custom-colors/colors.php';
require_once __DIR__ . '/storage/storage.php';
Expand Down

0 comments on commit e7a0141

Please sign in to comment.