Google Fonts for WordPress - Version 1.9.97

Version Description

Download this release

Release Info

Developer DannyCooper
Plugin Icon 128x128 Google Fonts for WordPress
Version 1.9.97
Comparing to
See all releases

Code changes from version 1.9.93 to 1.9.97

README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Olympus Google Fonts
2
+ ===
3
+
4
+ Quickly and easily customize your website using Google Fonts.
5
+
6
+ The Google Fonts library currently contains 846 unique fonts. This plugin allows you to easily use any of them on your website.
7
+
8
+ You're not stuck with one font for the entire website, you can easily choose one font for headings and another for your content.
9
+
10
+ It's hard to know which font will look good on your website, that's why we've included a live preview feature. That means you can test each font and see a live preview of how it will look with your content instantly.
11
+
12
+ Once you've found a combination you love, press save and make the changes publicly visible.
13
+
14
+ The full Google Fonts library can be found here - https://fonts.google.com
15
+
16
+ The premium version of this plugin can be found here - https://fontsplugin.com
17
+
18
+ Getting Started
19
+ ---------------
20
+
21
+ Upload 'Olympus Google Fonts', activate it, and you're done!
22
+
23
+ Navigate to wp-admin -> Appearance -> Customize and you will see a new tab named 'Google Fonts'
24
+
25
+ Gutenberg Block
26
+ ---------------
27
+
28
+ Our new Gutenberg Block allows you to use Google Fonts within your content.
29
+
30
+ ![](.github/google-fonts-block-gutenberg.gif)
blocks/init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Blocks Package
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Blocks Package
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
changelog.txt CHANGED
@@ -1,3 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  = 1.9.93 =
2
 
3
  * Improved TwentyTwenty compatability
1
+ = 1.9.97 =
2
+
3
+ * Update copyright.
4
+
5
+ = 1.9.95 =
6
+
7
+ * Improve compatibility with themes from 'Theme Freesia'.
8
+
9
+ = 1.9.94 =
10
+
11
+ * Fix headings in Gutenberg not inheriting font settings.
12
+
13
  = 1.9.93 =
14
 
15
  * Improved TwentyTwenty compatability
class-olympus-google-fonts.php CHANGED
@@ -3,7 +3,7 @@
3
  * Main Olympus_Google_Fonts Class
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Main Olympus_Google_Fonts Class
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
compatability/themefreesia.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Compatability file for Theme Freesia themes.
4
+ *
5
+ * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
+ * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
+ */
9
+
10
+ /**
11
+ * Modify the default element selectors to improve compatability with ThemeGrill themes.
12
+ *
13
+ * @param array $elements The default elements.
14
+ */
15
+ function ogf_themefreesia_elements( $elements ) {
16
+
17
+ $elements['ogf_post_page_h2']['selectors'] = '.entry-content h2,';
18
+ $elements['ogf_post_page_h3']['selectors'] = '.entry-content h3,';
19
+ $elements['ogf_post_page_h4']['selectors'] = '.entry-content h4,';
20
+ $elements['ogf_post_page_h5']['selectors'] = '.entry-content h5,';
21
+ $elements['ogf_post_page_h6']['selectors'] = '.entry-content h6,';
22
+ return $elements;
23
+
24
+ }
25
+
26
+ add_filter( 'ogf_elements', 'ogf_themefreesia_elements' );
compatability/themegrill.php CHANGED
@@ -3,7 +3,7 @@
3
  * Compatability file for ThemeGrill themes.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Compatability file for ThemeGrill themes.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
compatability/themeisle.php CHANGED
@@ -3,7 +3,7 @@
3
  * Compatability file for ThemeIsle themes.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Compatability file for ThemeIsle themes.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
compatability/thewordpressteam.php CHANGED
@@ -3,7 +3,7 @@
3
  * Compatability file for WordPress.org themes.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Compatability file for WordPress.org themes.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/class-ogf-classic-editor.php CHANGED
@@ -3,7 +3,7 @@
3
  * Add Google Fonts dropdown to the classic editor.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Add Google Fonts dropdown to the classic editor.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/class-ogf-deactivation.php CHANGED
@@ -3,7 +3,7 @@
3
  * Deactivation Feedback Class.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Deactivation Feedback Class.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/class-ogf-fonts.php CHANGED
@@ -3,7 +3,7 @@
3
  * Build the URL to load the chosen Google Fonts.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Build the URL to load the chosen Google Fonts.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/class-ogf-notifications.php CHANGED
@@ -4,7 +4,7 @@
4
  * Prompts users to give a review of the plugin on WordPress.org after a period of usage.
5
  *
6
  * @package olympus-google-fonts
7
- * @copyright Copyright (c) 2019, Fonts Plugin
8
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
9
  */
10
 
4
  * Prompts users to give a review of the plugin on WordPress.org after a period of usage.
5
  *
6
  * @package olympus-google-fonts
7
+ * @copyright Copyright (c) 2020, Fonts Plugin
8
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
9
  */
10
 
includes/class-ogf-reset.php CHANGED
@@ -3,7 +3,7 @@
3
  * Reset fonts class.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Reset fonts class.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/class-ogf-welcome.php CHANGED
@@ -3,7 +3,7 @@
3
  * Welcome Notice Class.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Welcome Notice Class.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-multiple-checkbox-control.php CHANGED
@@ -3,7 +3,7 @@
3
  * Multiple Checkbox Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Multiple Checkbox Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-multiple-fonts-control.php CHANGED
@@ -3,7 +3,7 @@
3
  * Fonts Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Fonts Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-panel.php CHANGED
@@ -3,7 +3,7 @@
3
  * Customize Repeater Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Customize Repeater Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-repeater-control.php CHANGED
@@ -3,7 +3,7 @@
3
  * Customize Repeater Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Customize Repeater Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-typography-control.php CHANGED
@@ -3,7 +3,7 @@
3
  * Typography Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Typography Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/controls/class-ogf-customize-upsell-control.php CHANGED
@@ -3,7 +3,7 @@
3
  * Upsell Custom Control
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Upsell Custom Control
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/output-css.php CHANGED
@@ -3,7 +3,7 @@
3
  * Output the Google Fonts CSS.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Output the Google Fonts CSS.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/panels.php CHANGED
@@ -3,7 +3,7 @@
3
  * Add multi-level panel functionality.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Add multi-level panel functionality.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/customizer/settings.php CHANGED
@@ -3,7 +3,7 @@
3
  * Register the customizer settings.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Register the customizer settings.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/functions.php CHANGED
@@ -3,7 +3,7 @@
3
  * Helper functions.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
3
  * Helper functions.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
includes/gutenberg/output-css.php CHANGED
@@ -3,7 +3,7 @@
3
  * Output the Google Fonts CSS in Gutenberg.
4
  *
5
  * @package olympus-google-fonts
6
- * @copyright Copyright (c) 2019, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
@@ -43,7 +43,7 @@ function ogf_gutenberg_output_css() {
43
 
44
  $elements = array(
45
  'ogf_body' => array(
46
- 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h3, #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input',
47
  ),
48
  'ogf_headings' => array(
49
  'selectors' => '#editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6',
3
  * Output the Google Fonts CSS in Gutenberg.
4
  *
5
  * @package olympus-google-fonts
6
+ * @copyright Copyright (c) 2020, Fonts Plugin
7
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8
  */
9
 
43
 
44
  $elements = array(
45
  'ogf_body' => array(
46
+ 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input',
47
  ),
48
  'ogf_headings' => array(
49
  'selectors' => '#editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6',
languages/olympus-google-fonts.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2019 Fonts Plugin
2
  # This file is distributed under the same license as the Google Fonts Typography plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Google Fonts Typography 1.9.91\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/olympus-google-fonts\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2019-10-22T13:14:21+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: olympus-google-fonts\n"
1
+ # Copyright (C) 2020 Fonts Plugin
2
  # This file is distributed under the same license as the Google Fonts Typography plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Google Fonts Typography 1.9.94\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/olympus-google-fonts\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-01-23T12:45:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: olympus-google-fonts\n"
olympus-google-fonts.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 870+ font choices.
8
- * Version: 1.9.93
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_campaign=heading
11
  * Text Domain: olympus-google-fonts
@@ -14,11 +14,11 @@
14
  * Domain Path: /languages
15
  *
16
  * @package olympus-google-fonts
17
- * @copyright Copyright (c) 2019, Fonts Plugin
18
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
19
  */
20
 
21
- define( 'OGF_VERSION', '1.9.93' );
22
  define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
23
  define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
24
 
5
  * Plugin Name: Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 870+ font choices.
8
+ * Version: 1.9.97
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_campaign=heading
11
  * Text Domain: olympus-google-fonts
14
  * Domain Path: /languages
15
  *
16
  * @package olympus-google-fonts
17
+ * @copyright Copyright (c) 2020, Fonts Plugin
18
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
19
  */
20
 
21
+ define( 'OGF_VERSION', '1.9.97' );
22
  define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
23
  define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
24
 
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Google Fonts Typography ===
2
  Contributors: DannyCooper, googlefonts
3
- Tags: google, fonts, google fonts, typography, elementor, beaver builder
4
  Donate link: https://fontsplugin.com/#pricing
5
  Requires at least: 4.0
6
  Tested up to: 5.3
7
  License: GPLv2 or later
8
- Stable tag: 1.9.93
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
11
 
@@ -62,7 +62,7 @@ For more info on Google Fonts for Wordpress, check out the following:
62
  * [Google Fonts in WPBakery](https://docs.fontsplugin.com/integrations/wpbakery)
63
 
64
  = Bugs =
65
- If you find an issue with Google Fonts for WordPress, let us know [here](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)!
66
 
67
  = Google Fonts Gutenberg Block =
68
  Add some flair to your content with our new Gutenberg block.
@@ -72,16 +72,16 @@ Add some flair to your content with our new Gutenberg block.
72
  * Text-align: left, right or center.
73
 
74
  = Contributions =
75
- Anyone is welcome to contribute to the 'Google Fonts for WordPress' plugin.
76
 
77
  There are various ways you can contribute:
78
 
79
  1. Raise an [Issue](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)
80
- 2. Translate the Google Fonts for WordPress plugin into [different languages](https://translate.wordpress.org/projects/wp-plugins/olympus-google-fonts/)
81
  3. Provide feedback and suggestions on [enhancements](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)
82
 
83
  == Installation ==
84
- Upload 'Google Fonts for WordPress', activate it, and you're done!
85
 
86
  Navigate to wp-admin -> Appearance -> Customize and you will see a new tab named 'Google Fonts'
87
 
@@ -99,4 +99,4 @@ We are 99.99% certain it will, if it doesn't then please create a [support ticke
99
 
100
  == Changelog ==
101
 
102
- [See changelog.txt for the complete changelog.](https://raw.githubusercontent.com/dannycooper/olympus-google-fonts/master/changelog.txt)
1
  === Google Fonts Typography ===
2
  Contributors: DannyCooper, googlefonts
3
+ Tags: google, fonts, google fonts, typography, elementor
4
  Donate link: https://fontsplugin.com/#pricing
5
  Requires at least: 4.0
6
  Tested up to: 5.3
7
  License: GPLv2 or later
8
+ Stable tag: 1.9.97
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
11
 
62
  * [Google Fonts in WPBakery](https://docs.fontsplugin.com/integrations/wpbakery)
63
 
64
  = Bugs =
65
+ If you find an issue with Google Fonts Typography, let us know [here](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)!
66
 
67
  = Google Fonts Gutenberg Block =
68
  Add some flair to your content with our new Gutenberg block.
72
  * Text-align: left, right or center.
73
 
74
  = Contributions =
75
+ Anyone is welcome to contribute to the Google Fonts Typography plugin.
76
 
77
  There are various ways you can contribute:
78
 
79
  1. Raise an [Issue](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)
80
+ 2. Translate the Google Fonts Typography plugin into [different languages](https://translate.wordpress.org/projects/wp-plugins/olympus-google-fonts/)
81
  3. Provide feedback and suggestions on [enhancements](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)
82
 
83
  == Installation ==
84
+ Upload Google Fonts Typography, activate it, and you're done!
85
 
86
  Navigate to wp-admin -> Appearance -> Customize and you will see a new tab named 'Google Fonts'
87
 
99
 
100
  == Changelog ==
101
 
102
+ [See changelog.txt for the complete Google Fonts Typography changelog.](https://raw.githubusercontent.com/dannycooper/olympus-google-fonts/master/changelog.txt)