Skip to content

Commit

Permalink
Merge pull request #12 from kossmann/master
Browse files Browse the repository at this point in the history
Changed "Wordpress" to "WordPress"
  • Loading branch information
supersoju authored May 30, 2024
2 parents 97d014b + 479c76c commit f928e53
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions app/models/admin/class-admin-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -499,15 +499,15 @@ public function get_opt_performance() {
'color_class' => 'warn'
],
'a2hosting-other' => [
'display_text' => 'Managed Wordpress',
'display_text' => 'Managed WordPress',
'metric_text' => '',
'explanation' => '',
'color_class' => 'success'
],
'webperformance' => [
'display_text' => 'Web Performance',
'metric_text' => "How does your hosting <strong>compare</strong> to A2 Hosting's best plans? With the graphs below <strong>LOWER IS BETTER</strong>.",
'legend_text' => "Overall Wordpress Execution Time",
'legend_text' => "Overall WordPress Execution Time",
'explanation' => 'The web performance score measures how your current host performs compared to A2 Hosting. This web performance score looks at server speed and other metrics to determine how fast your website will load, based on which hosting company & plan you host your website with. <br /><br />
The lower the score on the graph the faster your website will load. Not all hosting companies and plans use the same hardware. A2 Hosting uses the best server hardware on the market, focusing on speed & security. A2 Hosting also offers free site migration to help you move your existing websites to them.<br /><br />
Graphs are representitive of the following, and individual results may vary based on current server load, PHP version, WordPress version, etc.<br />
Expand Down Expand Up @@ -549,7 +549,7 @@ public function get_opt_performance() {
],
],
'hostingmatchup_tooltips' => [
'wordpress_db' => 'Wordpress Database Response Time',
'wordpress_db' => 'WordPress Database Response Time',
'filesystem' => 'Server Disk Response Time',
'mysql' => 'MYSQL Query Response Time',
'php' => 'PHP Response Time'
Expand Down
4 changes: 2 additions & 2 deletions app/templates/admin/page-settings/page-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -864,8 +864,8 @@ class="navlink-button" :class="nav.advs_class">Advanced Settings</button>
<ul id="menu-links" class="dropdown-menu" aria-labelledby="drop-links-wrapper">
<li><a target="_blank" href="https://my.a2hosting.com/">A2 Client Area</a></li>
<li><a target="_blank" href="https://my.a2hosting.com/submitticket.php?action=support">A2 Client Support</a></li>
<li><a target="_blank" href="https://wordpress.org/support/plugin/a2-optimized-wp/">Wordpress Support</a></li>
<li><a target="_blank" href="https://www.a2hosting.com/kb/collections/wordpress-articles">Wordpress Knowledge Base</a></li>
<li><a target="_blank" href="https://wordpress.org/support/plugin/a2-optimized-wp/">WordPress Support</a></li>
<li><a target="_blank" href="https://www.a2hosting.com/kb/collections/wordpress-articles">WordPress Knowledge Base</a></li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion core/A2_Optimized_CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ public function benchmarks($args, $assoc_args) {
break;
case 'wordpress':
if (!$output_json) {
echo "Running Wordpress benchmarks. Please wait a moment.\r\n";
echo "Running WordPress benchmarks. Please wait a moment.\r\n";
}
$result = $a2opt_benchmark->run_wordpress_benchmarks();
$result = $result['queries_per_second'];
Expand Down
4 changes: 2 additions & 2 deletions core/A2_Optimized_DB_Optimizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static function zero_settings() {
}

/**
* Update a Wordpress setting in the toggles array.
* Update a WordPress setting in the toggles array.
*
* @param string $setting The setting to update in the toggles array
* @param bool $value Update the setting to true or false
Expand Down Expand Up @@ -198,7 +198,7 @@ public function remove_expired_transients() {
}

/**
* Optimize Wordpress tables
* Optimize WordPress tables
*/
public function optimize_tables() {
$query = 'SHOW TABLES';
Expand Down
4 changes: 2 additions & 2 deletions core/A2_Optimized_Optimizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -869,13 +869,13 @@ public function get_best_practices() {
],
'themes' => [
'title' => 'Unused Themes',
'description' => 'Unused, non-default themes should be deleted. For more information read the Wordpress.org Codex on <a target="_blank" href="http://codex.wordpress.org/WordPress_Housekeeping#Theme_Housekeeping">WordPress Housekeeping</a>',
'description' => 'Unused, non-default themes should be deleted. For more information read the WordPress.org Codex on <a target="_blank" href="http://codex.wordpress.org/WordPress_Housekeeping#Theme_Housekeeping">WordPress Housekeeping</a>',
'config_url' => admin_url() . 'themes.php',
'status' => $this->is_active('themes', false),
],
'plugins' => [
'title' => 'Inactive Plugins',
'description' => 'Unused, inactive plugins should be deleted. WordPress will still check for updates on each plugin even if it is not active, which could slow down your site. For more information read the Wordpress.org Codex on <a target="_blank" href="http://codex.wordpress.org/WordPress_Housekeeping">WordPress Housekeeping</a>',
'description' => 'Unused, inactive plugins should be deleted. WordPress will still check for updates on each plugin even if it is not active, which could slow down your site. For more information read the WordPress.org Codex on <a target="_blank" href="http://codex.wordpress.org/WordPress_Housekeeping">WordPress Housekeeping</a>',
'config_url' => admin_url() . 'plugins.php',
'status' => $this->is_active('plugins', false),
],
Expand Down

0 comments on commit f928e53

Please sign in to comment.