-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change color of template subtitles (#760) * resolve missing tags in saveHTML() (#759) * change logic for determining base template with SI (#762) * change logic for determining base template with SI * add return false; * move filters to 3rd party Sprout Invoices class * Issue 741 (#761) * set widget link hover to match body link hover * fix linting issues * fix link preview * update version for RC * Update package.json * Update boldgrid-theme-framework.php * Update README.md
- Loading branch information
1 parent
fe7dd11
commit 3f66d2b
Showing
11 changed files
with
194 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
src/includes/third-party/class-boldgrid-framework-sprout-invoices.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
/** | ||
* File: class-boldgrid-framework-sprout-invoices.php | ||
* | ||
* This class is responsible for adding Sprout Invoices support to the BoldGrid Framework. | ||
* | ||
* @package Boldgrid_Framework | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
|
||
/** | ||
* Class: Boldgrid_Framework_Sprout_Invoices | ||
* | ||
* This class is responsible for adding Sprout Invoices support to the BoldGrid Framework. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
class Boldgrid_Framework_Sprout_Invoices { | ||
/** | ||
* Add hooks. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
public static function add_hooks() { | ||
add_filter( 'bgtfw_wrapper_templates', array( __CLASS__, 'bgtfw_wrapper_templates' ), 10, 3 ); | ||
} | ||
|
||
/** | ||
* BGTFW Wrapper Templates. | ||
* | ||
* Adjusts the templates used when various sprout invoices pages are loaded. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
public static function bgtfw_wrapper_templates( $templates, $base, $main_template ) { | ||
|