SEO SQUIRRLY™ - Version 11.1.07

Version Description

Download this release

Release Info

Developer cifi
Plugin Icon 128x128 SEO SQUIRRLY™
Version 11.1.07
Comparing to
See all releases

Code changes from version 11.1.06 to 11.1.07

classes/RemoteController.php CHANGED
@@ -50,7 +50,7 @@ class SQ_Classes_RemoteController {
50
 
51
  //call it with http to prevent curl issues with ssls
52
  $url = self::cleanUrl(_SQ_APIV2_URL_ . $module . "?" . $parameters);
53
-
54
  if (!isset(self::$cache[md5($url)])) {
55
  if ($options['method'] == 'post') {
56
  $options['body'] = $args;
50
 
51
  //call it with http to prevent curl issues with ssls
52
  $url = self::cleanUrl(_SQ_APIV2_URL_ . $module . "?" . $parameters);
53
+
54
  if (!isset(self::$cache[md5($url)])) {
55
  if ($options['method'] == 'post') {
56
  $options['body'] = $args;
controllers/Menu.php CHANGED
@@ -81,6 +81,9 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
81
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
82
  die();
83
  }
 
 
 
84
  }
85
 
86
  } catch (Exception $e) {
81
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
82
  die();
83
  }
84
+
85
+ //Connect to cloud with an unique Token for API access
86
+ SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->connectToCloud();
87
  }
88
 
89
  } catch (Exception $e) {
controllers/Snippet.php CHANGED
@@ -41,6 +41,11 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
41
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('patterns', array('trigger' => true, 'media' => 'all'));
42
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet', array('trigger' => true, 'media' => 'all'));
43
 
 
 
 
 
 
44
  return $this->getView('Blocks/Snippet');
45
  }
46
 
@@ -62,8 +67,9 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
62
 
63
 
64
  /**
65
- * Set the post in snippet
66
  * @param $post
 
67
  */
68
  public function setPost($post) {
69
  $this->post = $post;
41
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('patterns', array('trigger' => true, 'media' => 'all'));
42
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet', array('trigger' => true, 'media' => 'all'));
43
 
44
+ global $post;
45
+ if(isset($post->ID) && $post->ID > 0) {
46
+ $this->post = SQ_Classes_ObjController::getClass('SQ_Models_Frontend')->setPost($post)->getPost();
47
+ }
48
+
49
  return $this->getView('Blocks/Snippet');
50
  }
51
 
67
 
68
 
69
  /**
70
+ * Set the post in SEO Snippet for Bulk SEO
71
  * @param $post
72
+ * @return $this
73
  */
74
  public function setPost($post) {
75
  $this->post = $post;
core/BlockConnect.php CHANGED
@@ -38,6 +38,9 @@ class SQ_Core_BlockConnect extends SQ_Classes_BlockController {
38
  $apiUrl = trim(parse_url(rest_url(),PHP_URL_PATH),'/');
39
  }
40
 
 
 
 
41
  if ($token = SQ_Classes_RemoteController::getCloudToken(array('wp-json' => $apiUrl))) {
42
  if(isset($token->token) && $token->token <> '') {
43
  SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_token', $token->token);
38
  $apiUrl = trim(parse_url(rest_url(),PHP_URL_PATH),'/');
39
  }
40
 
41
+ //Make sure the website exists on the Cloud
42
+ SQ_Classes_RemoteController::connect();
43
+
44
  if ($token = SQ_Classes_RemoteController::getCloudToken(array('wp-json' => $apiUrl))) {
45
  if(isset($token->token) && $token->token <> '') {
46
  SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_token', $token->token);
models/Compatibility.php CHANGED
@@ -35,11 +35,21 @@ class SQ_Models_Compatibility {
35
  add_action('template_redirect', array($this, 'setBuddyPressPage'), PHP_INT_MAX);
36
  }
37
 
 
 
 
 
 
38
  //Compatibility with Cachify plugin
39
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('cachify/cachify.php')) {
40
  add_filter('sq_lateloading', '__return_true');
41
  }
42
 
 
 
 
 
 
43
  //Compatibility with WP Super Cache plugin
44
  global $wp_super_cache_late_init;
45
  if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
@@ -217,13 +227,13 @@ class SQ_Models_Compatibility {
217
  if ($post_id) {
218
  $sq_woocommerce = array();
219
  foreach ($this->wc_inventory_fields as $field => $details) {
220
- if ($value = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, false)) {
221
- $sq_woocommerce[$field] = $value;
222
  }
223
  }
224
  foreach ($this->wc_advanced_fields as $field => $details) {
225
- if ($value = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, false)) {
226
- $sq_woocommerce[$field] = $value;
227
  }
228
  }
229
  if (!empty($sq_woocommerce)) {
35
  add_action('template_redirect', array($this, 'setBuddyPressPage'), PHP_INT_MAX);
36
  }
37
 
38
+ //Compatibility with TranslatePress Plugin
39
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('translatepress-multilingual/index.php')) {
40
+ add_filter('sq_lateloading', '__return_true');
41
+ }
42
+
43
  //Compatibility with Cachify plugin
44
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('cachify/cachify.php')) {
45
  add_filter('sq_lateloading', '__return_true');
46
  }
47
 
48
+ //Compatibility with Oxygen plugin
49
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php')) {
50
+ add_filter('sq_lateloading', '__return_true');
51
+ }
52
+
53
  //Compatibility with WP Super Cache plugin
54
  global $wp_super_cache_late_init;
55
  if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
227
  if ($post_id) {
228
  $sq_woocommerce = array();
229
  foreach ($this->wc_inventory_fields as $field => $details) {
230
+ if(SQ_Classes_Helpers_Tools::getIsset('_sq_wc_' . $field)){
231
+ $sq_woocommerce[$field] = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, '');
232
  }
233
  }
234
  foreach ($this->wc_advanced_fields as $field => $details) {
235
+ if(SQ_Classes_Helpers_Tools::getIsset('_sq_wc_' . $field)){
236
+ $sq_woocommerce[$field] = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, '');
237
  }
238
  }
239
  if (!empty($sq_woocommerce)) {
models/services/JsonLD.php CHANGED
@@ -1347,6 +1347,8 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
1347
  $markup['brand'] = $otherbrands;
1348
  }
1349
 
 
 
1350
  return $markup;
1351
 
1352
  } catch (Exception $e) {
1347
  $markup['brand'] = $otherbrands;
1348
  }
1349
 
1350
+
1351
+
1352
  return $markup;
1353
 
1354
  } catch (Exception $e) {
models/services/Noindex.php CHANGED
@@ -30,10 +30,12 @@ class SQ_Models_Services_Noindex extends SQ_Models_Abstract_Seo {
30
  $robots[1] = 'follow';
31
  }
32
 
33
- if($this->_post->term_id && SQ_Classes_Helpers_Tools::getOption('sq_term_noindex_empty')){
34
- if(function_exists('have_posts') && !have_posts()){
35
- $robots[0] = 'noindex';
36
- $robots[1] = 'nofollow';
 
 
37
  }
38
  }
39
 
30
  $robots[1] = 'follow';
31
  }
32
 
33
+ if(false) { //don't implement it now. Seems to be issues with this option
34
+ if ($this->_post->term_id && SQ_Classes_Helpers_Tools::getOption('sq_term_noindex_empty')) {
35
+ if (function_exists('have_posts') && !have_posts()) {
36
+ $robots[0] = 'noindex';
37
+ $robots[1] = 'nofollow';
38
+ }
39
  }
40
  }
41
 
models/services/OpenGraph.php CHANGED
@@ -168,9 +168,28 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
168
  $currency = 'USD';
169
  $regular_price = $sale_price = $price = $sales_price_from = $sales_price_to = 0;
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  if (method_exists($product, 'get_regular_price')) {
172
  $regular_price = $product->get_regular_price();
173
  }
 
174
  if (method_exists($product, 'get_sale_price')) {
175
  $sale_price = $product->get_sale_price();
176
  if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from') && method_exists($product, 'get_date_on_sale_to')) {
168
  $currency = 'USD';
169
  $regular_price = $sale_price = $price = $sales_price_from = $sales_price_to = 0;
170
 
171
+
172
+ //Product ID
173
+ $og['product:retailer_item_id'] = (method_exists($product, 'get_sku')) ? ($product->get_sku() <> '' ? $product->get_sku() : '') : '';
174
+
175
+ //Product Brand
176
+ $sq_woocommerce = get_post_meta($this->_post->ID, '_sq_woocommerce', true);
177
+ if (isset($sq_woocommerce['brand']) && $sq_woocommerce['brand'] <> '') {
178
+ $og['brand'] = $sq_woocommerce['brand'];
179
+ }
180
+
181
+ if (method_exists($product, 'is_on_backorder') && $product->is_on_backorder() ) {
182
+ $og['product:availability'] = __( 'On backorder', 'woocommerce' );
183
+ } elseif (method_exists($product, 'is_in_stock') && $product->is_in_stock() ) {
184
+ $og['product:availability'] = __( 'In stock', 'woocommerce' );
185
+ } else {
186
+ $og['product:availability'] = __( 'Out of stock', 'woocommerce' ) ;
187
+ }
188
+
189
  if (method_exists($product, 'get_regular_price')) {
190
  $regular_price = $product->get_regular_price();
191
  }
192
+
193
  if (method_exists($product, 'get_sale_price')) {
194
  $sale_price = $product->get_sale_price();
195
  if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from') && method_exists($product, 'get_date_on_sale_to')) {
readme.txt CHANGED
@@ -1,6 +1,6 @@
1
- ===SEO 2021 by Squirrly (Smart Strategy)===
2
  Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
3
- Tags: seo, wordpress seo, seo plugin, seo optimization, seo content, seo meta, open graph, e-commerce, plugins, content, marketing, ecommerce, keyword research, content seo, yoast, all in one seo, search engine optimization, XML sitemap for google, multisite SEO, squirrly, meta title, meta description, favicon, mobile, canonical, seo correction, seo title, twitter, woocommerce, feeds, social media, blogging, google-analytics, tracking, best seo tools audit website, content audit tool, ecommerce seo strategy, marketing research tools, research tools for writers, seo audit tool, SEO keyword research tool,duplicate removal tool, ecommerce SEO, facebook open graph wordpress, google keyword planner alternative, Google ranking, how to install facebook pixel on wordpress, JSON-LD structure, Live Assistant, meta duplicate removal, open graph generator, pinterest rich pin validator, related links
4
  Requires at least: 4.3
5
  Tested up to: 5.8
6
  Stable tag: trunk
@@ -8,335 +8,583 @@ Requires PHP: 5.6
8
  License: GPLv2 or later
9
  Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
10
 
11
- Upgrade your WordPress with Excellent SEO. Guided by the A.I.-based Private SEO Consultant. All SEO Tools Included for Free.
12
 
13
  == Description ==
14
 
15
- Upgrade your WordPress with Excellent SEO. Guided by the A.I.-based Private SEO Consultant. All SEO Tools Included for Free.
16
 
17
- Squirrly SEO is SaaS + plugin, and the free plugin for WordPress makes great use of all our algorithms and SaaS tools we've built for SEO.
18
 
19
- Your search traffic can finally increase and you now have the means to make your Internet Marketing Dreams come true!
20
 
21
- See many people talking about their success stories with the new 2021 A.I. we have built called "Next SEO Goals" here: https://www.producthunt.com/posts/squirrly-next-seo-goals
 
22
 
23
- Squirrly SEO has been named a High Performer for Summer 2021 on G2: https://www.squirrly.co/g2-awards-squirrly-seo-the-high-performer-medal/
24
 
25
- Gartner Digital Markets Ranks Squirrly SEO as a Top Product in SEO world-wide, among other SaaS: https://www.squirrly.co/gartner-digital-markets-ranks-squirrly-seo-as-a-top-product-in-its-category/
26
 
27
- A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services.
28
 
29
- SEO 2021 by Squirrly is the Popular Tool that NON-SEO Experts use to increase their search engine traffic. You will see success in the first few weeks if you follow the Daily SEO Goals and work with the included tools.
30
 
31
- Offers the same level of advice as a Human consultant would, yet with greater precision and customization.
32
 
33
- https://www.youtube.com/watch?v=m2R2d2Q4Sfk
34
 
35
- Many success stories appear every single day since we released this: <a title="Squirrly SEO Success for WordPress Users" href="https://www.squirrly.co/successful/">Success Stories from WordPress Users Who Followed Squirrly's Advice.</a>
36
 
37
- Over 300 functionalities for SEO now available when you need them. (if you're using the Non-SEO expert mode: then our A.I. will tell you when you need to use each of them and in which order; so it's not important for you to learn everything if you don't want to).
38
 
39
- I've been interviewed by Startup Valley and <a title="Squirrly Business Products and Digital Assistants" href="https://www.startupvalley.news/uk/squirrly/">talked at length about how we built this A.I. consultant</a> on top of Squirrly's existing SEO features (the likes of which you can only get from SEMrush, Moz, Ahrefs)
40
 
41
- Checks your traffic, how well people engage with content on your site, sees your positions for all pages inside the Google search engine, tells you how to bring more traffic and how to make more of your pages visible, gives you solid advice for getting more clicks and more.
42
 
43
- Insanely Great Support with Facebook Community, Huge Knowledge base, Multiple Support Channels, Free Academy Access (Education Cloud 2020), Podcast, Youtube videos and more. <a title="Find All Support Options Here" href="https://fourhourseo.com/">See all of them here. (click and scroll down)</a>
44
 
45
- We've built this so that YOU become successful. Learn more about our vision here.
46
 
47
- https://www.youtube.com/watch?v=__PPtpPIcCI
48
 
49
- First-Ever Non-Human SEO Consultant Is Coming to WordPress. SEO Technology Meets SEO Marketing. Squirrly handles all tech requirements for rich snippets, social snippets, and more, while helping you get the best SEO Marketing.
50
 
51
- How does it do that? By acting as your private SEO Consultant. Watch the video:
52
 
53
- https://www.youtube.com/watch?v=m2R2d2Q4Sfk
54
-
55
- **Your next SEO Plugin is NOT just an SEO Plugin.**
56
- It's a Non-Human Private SEO Consultant.
57
  Powered by Machine Learning and Cloud Services.
58
- It's the First of its kind.
59
- It's the new Squirrly 2021: Smart Strategy and it lives and works inside your WordPress.
60
 
61
- We've made Expert-Level SEO Advice (the kind you'd pay consultants $2,500 USD / month) very accessible for WordPress site owners, small business owners, professional bloggers, freelancers, agencies.
 
 
62
 
63
- How can you start getting the advice?
64
 
65
- https://www.youtube.com/watch?v=drRVRBFYUKA
66
 
67
- Having studied over 600,000 WordPress sites with performance metrics, growth metrics, this new Non-Human consultant has 7 years of experience and "knows" what you need in order to become successful. Just like all the people in our <a title="Squirrly SEO Success for WordPress Users" href="https://www.squirrly.co/successful/">Success Stories Who Followed Squirrly's Advice.</a>
68
 
69
- Our Cloud Services analyze the client's website (your website if you start using it) to reveal priority tasks that need solving. Next, the services and the machine learning identify actionable steps for boosting Google rankings, monitor SEO performance, and recommend strategy adjustments, when needed ("knows" this according to the 600,000 sites it studied).
70
 
71
- That's why the new Squirrly is called Smart Strategy. Because it has experience, knowledge and can think all of the complicated aspects on your behalf (just like a Human consultant would too).
72
 
73
- Better yet, it does all the exciting new things you've just read about on top of everything else that was already available in our software suite. You can read more about it in the lines that follow.
74
 
75
- **The three things you should look for in a SEO plugin:**
76
 
77
- 1) to increase (scientifically, not based on hope) the chances of **being found on search engines**. Always On. Always Reporting. Giving you a holistic view of how Google sees your pages and what it needs to decide to move your page up in search results.
78
 
79
- 2) to give you **clear "maps" (and navigation directions, just like Waze app) for ranking pages continuously** by using a method, not random "fixes".
80
 
81
- 3) to **give you an edge** over the 60,000 or 60,000,000 other pages competing with your page for the same keyword. Those sites probably already have Yoast installed. If all you do is install that SEO plugin yourself, how will that help you be better than them? - No, to be competitive you need Squirrly SEO.
82
 
83
- Try it today! **You won't lose SEO rankings switching** to Squirrly, because it imports all technical settings you made in other plugins.
84
 
85
- Or you can choose to keep technical SEO settings in other plugins, and **use the innovations from Squirrly SEO** on top of those plugins (they can work together).
 
 
 
 
 
86
 
87
- "Wow ,I've been using your tool for a week now and one of my blog ranked no1 out of a million for its key word... amazing" - **Pierre Perpal.**
 
 
88
 
89
- https://www.youtube.com/watch?v=vp7Fu1HZs2s
 
90
 
91
- Launched in 2012 in the United Kingdom, Squirrly Limited today has over 6,455 clients in 90 countries, including such megabrands as Microsoft and the BBC. Yet, it says the heart of its focus is "the little guy" i.e. the small and medium-sized businesses and bloggers that need expert marketing support so they can keep focused on day-to-day operations.
 
92
 
93
- **"I had SEO companies tell me they could do this (get me to the first page of Google) but it all takes time and wanted thousands of dollars. Squirrly SEO saved me that money many times over!" - Drew Spangler, Orlando Homeopathic Body Works.**
 
94
 
95
- There are multiple success stories with following the "navigation" instructions offered by Focus Pages - agencies, freelancers, business owners, affiliate marketers, professional content marketers. <a title="Squirrly SEO Success for WordPress Users" href="https://www.squirrly.co/successful/">Read their Stories.</a>
96
 
97
- "Find long-tail keywords with legitimate ranking opportunities for your blog, not just a shot in the dark, but a solid target audience to market your blog too. The Squirrly plugin will eliminate all your worry, pressure, and sense of overwhelm when it comes to optimizing your blog. It has everything organized for you and will show you new tips to help you improve your blog's domain authority over time." - **Dawn, owner at OhBlogOnIt.**
98
 
99
- This high-end SEO software gathered thousands of testimonials. Has been featured on TechCrunch, Search Engine Journal, Search Engine Watch and others. <a title="Official WordPress SEO Plugin Website" href="https://plugin.squirrly.co/">See more on our official site. PRO versions on our site. Free version here on WordPress.</a>
100
 
101
- Is it compatible with other SEO Plugins? - yes, because it really enhances the other plugins. You can use those other plugins to go in the wrong direction and even get your website penalized. Focus Pages from Squirrly will help you make those plugins really work well for your SEO Strategy.
102
 
103
- = Focus Pages is an innovation that you can't even find in SEMrush, nor in Moz, nor in aHrefs. =
104
 
105
- It's a complete game changer, because it tells you what to do with each page to make it found on search engines.
106
 
107
- Just turn RED elements into Green.
108
 
109
- Squirrly offers details for every item and an action button which you can press to start turning the red element to green. Provides you with a simple, guided flow.
110
 
111
- If you **keep turning reds to greens, you'll keep improving your chances of ranking**. If you reach 100% for a page, that page will be found on Google. Sometimes, you'll be lucky and end up on the first page of Google even with just 70% chances.
112
 
113
- <a title="Learn SEO from Squirrly. For Free." href="https://www.squirrly.co/seo/">Squirrly provides you with:</a>
114
- - a **FREE Education Cloud** (learn everything about optimizing for Humans and for Search Engine Bots)
115
- - **Free coaching sessions**
116
- - a 14 Days Journey to Better Ranking. **14 daily recipes to follow** to make your WordPress site ready for high-performing SEO.
117
 
118
- = Is Squirrly a free plugin? - YES. Don't believe those who claim otherwise. We even give you the incredible Focus Pages innovation for free inside the plugin. You can use it to rank one page at a time, using everything inside. =
119
 
120
- The free plugin is limited in terms of feature usage (volume-based usage), it doesn't cut features. Some features might be found in the Lite version, instead of PRO, Web Dev Kit, or Business version, but they aren't cut off.
121
 
122
- The Free Plugin can easily be used together with RankMath, Yoast, SEOPress, SEO Framework, in compatibility mode.
123
 
124
- Or, as a user you can decide to import all settings from the other SEO plugins, and use only Squirrly SEO moving forward. It's your choice and you can use them anyway you want.
125
 
126
- We show comparison tables of Squirrly SEO here https://completeseofunnel.com/ and the alternatives: Yoast, SEOpress, All In One SEO, RankMath. By looking at the comparisons you can easily see why Squirrly could easily be paired together with any of the other SEO Plugins.
127
 
128
- There's even a completely No-Ads free version available <a title="Free" href="https://www.squirrly.co/developers/kit/">here.</a> It will not send you SEO Audits! (because it doesn't ask for an email so it can't do that; due to this: you'll also miss out on coaching, website alerts, new keyword opportunities and offers). Find the button on the page that says: "Try a sample of a Web Dev Kit zip file".
129
 
130
- It's a freemium software (like MailChimp). The PRO features come from our servers and our multiple APIs. So switching to PRO doesn't require you to change the plugin. You'll still be using the exact zip file even when you go to our PRO, Business or Agency Plans.
131
 
132
- You need to gain an edge over all the ranking factors (at least 60 such factors) that aren't covered by WordPress SEO Plugins.
133
 
134
- Focus Pages by Squirrly, the SEO Live Assistant, the Keyword Research, the Audit Suite (does 6 types of audits for you weekly), the Briefcase (an overview on your current SEO strategy) and the Google Ranking inside Squirrly SEO will make all the difference in the world.
135
 
136
- = SEMrush and MOZ don't even come close to offering the analysis and clear navigation that Focus Pages by Squirrly offers you. =
137
 
138
- Move way beyond what Yoast can offer (or boost what Yoast can offer by pairing it with the new Squirrly SEO and run it in compatibility mode). Why install yet another Yoast clone (that isn't as well made as the popular Y plugin), when you can sky-rocket your rankings with the high-end SEO software from Squirrly which goes beyond what even giants like SEMrush and Moz can offer?
139
 
140
- Squirrly's SEO Automation features are more advanced and for many more custom post types and taxonomies than the one you find in all other SEO Plugins. The sitemap is also more advanced.
141
 
142
- We've made it super easy to Switch everything to Squirrly SEO. All Your Optimizations. One easy button.
143
 
144
- However, we've done more than that for you: **we've made Squirrly SEO compatible with all other SEO plugins**, so you don't even have to make the switch to benefit from our ground breaking Focus Pages feature that you've seen on the video inside this page.
145
 
146
- = Download and start using now. Or keep reading more about this insanely great WordPress SEO Plugin =
147
 
148
- This is a New Squirrly. It looks at each page on your WordPress site the same way Google does. It translates everything for you with simple red and green elements. You'll get the answers you were waiting for.
149
 
150
- This is the only plugin and SEO software capable of adapting to the specifics of each page and the context it has inside a website. It provides answers for you, after very complex analysis made on multiple levels.
151
 
152
- There are about 20 Million pages that Google can display for every single search a user makes. How does Google decide to display YOUR page within the first 10 results? Out of millions of pages it could display?
153
 
154
- The new SEO Squirrly knows the answer. Powered by advanced cloud servers owned by the Squirrly Company, the MarketIntelligence big data analysis we do, and data sources like: Moz, Majestic, Alexa, Semrush, Google Analytics, ContentLook, crawlers owned by Squirrly: we are in a unique position that allows us to see each page the same way that Google's algorithms see it.
155
 
156
- Squirrly provides different answers for different pages for different website owners, because you can't treat any two pages from the Web the same way. Google doesn't. Since we released this, we brought more success to our customers than ever before: <a title="Squirrly SEO Success for WordPress Users" href="https://plugin.squirrly.co/seo-success/">SEO Success With Squirrly's Algorithms</a>
157
 
158
- "Turn Red Elements to Green and You Will Win." Some of the customers from the success stories mentioned above did not believe we've made everything so easy. They tried it. And they were convinced.
159
 
160
- It has been our mission to help you take pages from "Never Found to Always Found". With the new Squirrly we've managed to fully deliver on our promise. But for us, this is only the beginning.
161
 
162
- It's time to rethink the old way of doing search engine optimization for WordPress.
163
 
164
- Why? Because the old way of doing things is no longer relevant to how search engines work today. Because Google does NOT perceive your pages as being all the same.
165
 
166
- There is no "one size fits all" in SEO, so using an SEO plugin that treats all pages the same way is dangerous for your business.
167
 
168
- It's like applying a random treatment regardless of the symptoms, just because it had worked once (in another case) for another patient. Would YOU put your faith in that?
 
169
 
170
- No.
171
 
172
- It makes absolutely no sense, not when you can use Squirrly SEO (brand new. complete redesign) which looks at your pages like Google does.
173
 
174
- The revolutionary <a title="The Revolutionary Concept And Method" href="https://plugin.squirrly.co/focus-pages/">concept of Focus Pages</a> is here to transform and innovate the way you optimize your WordPress site because it's not enough to have a destination (being found on the first page of Google).
175
 
176
- You also need an updated map for HOW to get there. We built Focus Pages to provide a customized route to reach that First Page destination for each one of your pages.
177
 
178
- Everything from creating human-optimized content to SEO keywords and the user's experience on your site is checked for in one way or another. Also factors related to quality signals like: impressions, clicks, ctr, social signals, inner links, links from other sites, authority of sites sending links to you.
179
 
180
- In fact, Squirrly SEO now looks at over 54 critical ranking factors that Google takes into account when analyzing a page and deciding how high to place it in SERPs.
181
 
182
- For every page that you add as a Focus Page inside Squirrly SEO, the plugin will show you exactly what actions to take to rank a particular page higher in Google. You'll know precisely what to focus on to generate the most impact.
183
 
184
- Everything is shaped into clear tasks, and all you need to do is turn the RED elements you will see inside into Green. That's all!.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
- The details will be completely different from page to page because every page has its own path to SEO success and this is not a generic plugin. So you won't be given a generic analysis.
187
 
188
- This is the only plugin and SEO software capable of adapting to the specifics of each page and the context it has inside a website.
189
 
190
- The amount of data being processed and the way we process the data is a culmination of groundbreaking work.
191
 
192
- With the new Squirrly SEO, we fix problems related to SEO that no other plugin or software can fix. Because we approach things in a way that hasn't been done before.
 
193
 
 
194
 
195
- A 14 Days Journey to Better Ranking
196
 
197
- As part of the new Squirrly SEO, you'll also be able to start a 14 Days Journey to Better Ranking. If you ever felt like you were stumbling in the dark when trying to rank your pages, embarking on this journey will finally make you feel like you're making progress.
198
 
199
- During the 14 days, you'll be able to follow a clear process and receive Daily recipes to help you finally achieve SEO results.
200
 
201
- You don't need to know the first thing about SEO to join. You'll get access to the #1 software for SEO and step-by-step guidance on how to use it to maximize your results.
202
 
203
- You'll know which features to use and at which point in your journey, according to the current issue you're planning to fix.
204
 
205
- It's as easy as that.
 
206
 
207
- If you're an SEO expert reading this, there's great news for you, too!
208
 
209
- We're now providing experts with unprecedented monitoring capabilities. You'll keep all your sites and your clients' sites in Great SEO Shape with the best in class oversight features: Bulk SEO, Focus Pages, SEO Audit and SEO Issues Scanner.
210
 
211
- Bulk SEO Settings helps you tweak the title, description, JSON-LD, Facebook, Twitter and visibility details for every page from one super-easy and super-intuitive dashboard.
212
 
213
- SEO Automation tools (with Expert-level access) will turn SEO work into something that's easier than reading the news in a self-driving car on your way to work.
214
 
215
- > <strong>Squirrly SEO (Strategy) helps you create and focus on amazing SEO Strategies</strong>:
216
- >
217
- > * Focus Pages
218
- > * Bulk SEO Settings
219
- > * 14 Days Journey to Better Ranking
220
- > * Automation
221
- > * SERP Checker
222
- > * Unprecedented Oversight to make sure nothing goes wrong SEO-wise.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
 
224
- See how we fix common SEO problems with this brand new release: <a title="Years of Bad SEO Can Easily Be Fixed" href="https://www.squirrly.co/most-common-seo-problems-that-we-see-in-customers-sites-time-and-again/">We've made it incredibly easy to fix SEO issues which are found on almost every site you'll see.</a>
225
 
226
- See why Generic WordPress SEO Plugins just aren't enough anymore (not in 2021) <a title="Generic Plugins for WordPress SEO are dangerous" href="https://www.squirrly.co/how-do-generic-seo-plugins-work-in-wordpress-and-why-is-squirrly-seo-different/">Generic SEO Plugins are dangerous because they let the user believe that SEO involves no work at all.</a>
227
 
228
- See the multiple levels of WordPress SEO. <a title="Levels of SEO: Keyword Competition, Time on Page, Bounce Rate, Exit Rates, Impressions, and a lot more" href="https://www.squirrly.co/all-the-important-levels-of-search-engine-optimization-explained/">Just adding a rich snippet or validating a Twitter card doesn't increase your rankings on Google. Just makes things look nice. To make these elements really work for ranking higher, you need all levels of SEO.</a>
229
 
230
- This is WordPress.
231
 
232
- And Squirrly is the best WordPress SEO plugin you will find.
233
 
234
- Because we build insanely great marketing software at the Squirrly company, we've decided to make the plugin part of our revolutionary SEO Software be a revolutionary plugin itself.
235
 
236
- Unlike many other plugin creators, we've made the free version you download and install today on WordPress all that you will need.
237
 
238
- We do have Squirrly PRO <a title="Insanely Great. SEO Platform." href="https://plugin.squirrly.co/">SEE Squirrly PRO.</a>, which takes everything you've just read here to the extreme.
239
 
240
- You can even use Squirrly PRO to rank a page within the first 10 results in one week and on our plugin's homepage you can even read the documentation or the way we've applied that method multiple times.
241
 
242
- However, the Squirrly PRO uses the same base plugin you find here. There is no other extra thing you will have to install in WordPress.
 
243
 
244
- You can switch between free and pro anytime you want.
245
 
246
- It's a Freemium model, like MailChimp.
247
 
248
- We provide all plugin-related features on the Free accounts. And even lots of the API-based features (which come from our servers and the partner services as described in the beginning of this WP description for our best WordPress SEO Plugin).
249
 
250
- That's how committed we are to offering you a WordPress SEO plugin that works together with you, according to how ready you are to invest more in your WordPress SEO.
251
 
252
- We've had people switching to PRO only after gaining success and Page 1 rankings on Google with the free version. And you can read this in some of our success stories. <a title="Squirrly SEO Success for WordPress Users" href="https://plugin.squirrly.co/seo-success/">SEO Success With Squirrly's Algorithms</a>
253
 
254
- The PRO helps you super-charge the results and gain more results for more pages.
255
 
256
- However, the Free version is ground breaking in and of its own.
257
 
258
- We are proud of it. Our many partners are also proud to install it on client websites.
259
 
260
- Some agencies have clients for whom they install free and clients for whom they install PRO.
 
261
 
262
- And yes, we offer Excellent Customer Service for the FREE plan too.
263
 
264
- You can take a look at the facts about WordPress SEO Success with the plugin. <a title="Squirrly SEO Success for WordPress Users" href="https://plugin.squirrly.co/seo-success/">SEO Success - FACTS</a>
265
 
266
- Then, take a look at the WordPress SEO Learning Success with our company. We send many great trainings to our users which help them become SEO and Digital Marketing Superstars. <a title="Success Clients Have With Learning From Our Resources" href="https://www.squirrly.co/facts/learning-success/">Learning Success - FACTS</a>
267
 
268
- Over 1,000 Content Marketing Professionals and Experts have written about Squirrly PRO.
269
 
270
- Squirrly was featured in: Forbes, TechCrunch, Wall Street Journal, Search Engine Journal, Clickz.com, Innovation Labs, Delivering Happiness, Search Engine Watch, Elegant Themes, Boston.com, SEO Hacker, WP Mayor, Manage WP, TechNation.io, TechHub.com, Kinsta, Spotify, Backlinko, Gartner, EDB-GOV-Singapore
271
 
272
- Hundreds of testimonials and over 5,000 B2B customers who purchased subscriptions for Squirrly SEO. You can see all these and more on our website:
273
 
274
- <a title="Official Website for the Plugin" href="https://plugin.squirrly.co/">Squirrly SEO</a>
275
 
276
- > Our Commitment to building insanely great marketing software means that we've even revolutionized the "usual" things offered by wordpress seo plugins:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  >
278
- > * ZERO-Clicks installation. Once you connect to Squirrly cloud, the Automation feature begins configuring everything your WP requires for great SEO.
279
- > * up to 13 types of schema org JSON-LD implementations you can make
280
- > * different JSON-LD for different pages
281
- > * customize any JSON-LD schme org implementation
282
- > * includes a creator tool that allows you to build and validate your JSON-LD schema
283
- > * best RICH PINS definitions and integrations ever found in a wordpress seo plugin
284
- > * Automation Features that automate everything from semantic definitions, to social media definitions, to custom post types to pure WordPress SEO.
285
- > * Facebook Pixel advanced options for eCommerce.
286
- > * Facebook Pixel tracking with custom rules for custom pages.
287
- > * Google Analytics tracking with custom rules for custom pages
288
- > * Google Analytics tracking fixes included with the 14 Days Journey
289
- > * Google Analytics FULL integrations, to get accurate Traffic Data in the SEO Audit and to get accurate Google Search Engine readings for quality content (as I said: we look for "quality content" the same way that Google does.)
290
- > * No-Index options made with WebDeveloper-Approved customization levels
291
- > * No-Index specific Custom Post Types
292
- > * No-Index based on custom page rules
293
- > * No-Index based on Sitemap XML settings
294
- > * No-Index based on robots.txt rules
295
- > * Checking robots.txt - your customized version vs what WordPress renders
296
- > * Creating robots.txt
297
- > * Managing robots.txt
298
- > * robots file checked in SEO Audit
299
- > * robots file checked in WordPress Admin
300
- > * robots file checked in Focus Pages
301
- > * Protection against no-index placed by mistake: in the WordPress Settings
302
- > * Protection against no-index placed by mistake: in "Scan for SEO Issues"
303
- > * Protection against no-index placed by mistake: in BULK SEO Settings
304
- > * Protection against no-index placed by mistake: in Focus Pages
305
- > * Protection against common seo mistakes (100% tailored to the WordPress environment): by using the "Scan for SEO Issues" feature
306
- > * we call this protection: Oversight, but we mean it in the "positive way".
307
- > * Protection against using "bad keywords" that your site can never rank top 10 for (you need to use Focus Pages section for this one)
308
- > * warnings against over 54 types of ranking drawbacks ("ranking drawback" - an element inside your WordPress site that makes Google decide NOT to award your page with higher rankings)
309
- > * Most advanced Sitemap XML
310
- > * Pictures in Sitemap XML
311
- > * Sitemap XML enhanced with Videos
312
- > * Sitemap XML settings for frequency with which you add new content to the site
313
- > * Sitemap XML to get you in Google News
314
- > * Sitemap XML with organized sub-sitemaps
315
- > * Sitemap XML with Page-Level customization options
316
- > * Sitemap XML inclusions / exclusions according to rules based on Custom post Types and Automation Features.
317
- > * Open Graph
318
- > * Open Graph Preview
319
- > * Open Graph BULK work-flow.
320
- > * Open Graph Automation with different rules according to different custom post types
321
- > * Open Graph object Type
322
- > * Open Graph and fb admin page id
323
- > * Open Graph and author URL
324
- > * Open Graph with VIDEO, which makes the video PLAY directly inside Facebook.
325
- > * Open Graph Validation
326
- > * Rich Pins Validation
327
- > * Twitter Card validation
328
- > * Twitter Card - large
329
- > * Twitter Card - summary
330
- > * Twitter Card Bulk work-flow
331
- > * Twitter Card Automation with different rules according to different custom post types
332
- > * Twitter Card Preview
333
-
334
- Actually, this list goes on. A Lot.
335
-
336
- Which is one of the reasons we made the process of working with Red Elements. And turning them to Green.
337
-
338
- What happens in the background is breath-taking. There is so much going on. However, for you, as a user, the experience is fun and easy.
 
339
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  We've truly made SEO Uncomplicated.
341
 
342
 
@@ -406,6 +654,14 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
406
  9. Squirrly SEO - Progress & Achievements
407
 
408
  == Changelog ==
 
 
 
 
 
 
 
 
409
  = 11.1.06- 07/13/2021 =
410
  Update - Compatibility with Divi and Fusion plugins
411
  Update - Update Readme file and plugin description
@@ -804,124 +1060,159 @@ For higher content marketing and SEO needs, you can check our Official Site and
804
 
805
  == Frequently Asked Questions ==
806
 
807
- = How does Squirrly WordPress SEO Plugin work? =
808
- Neil Patel, the Co-Founder of Kissmetrics and Crazy Egg made a great video on how to use Squirrly's Live Assistant:
809
- https://www.quicksprout.com/university/how-to-maximize-your-seo-traffic-with-these-must-have-wordpress-plugins/
810
-
811
- = Is Squirrly SEO Plugin free? =
812
- Yes, you just have to install the plugin from the WP directory into your site. Then connect with your email to Squirrly. The Free Version will automatically start. Read below for more. Once you have bigger content marketing needs, you can opt-in to upgrade to the PRO Plan.
813
-
814
- Read below for more. Once you have bigger content marketing needs, you can opt-in to upgrade to the PRO Plan.
815
-
816
- = Does the Free Plan offer all the features? =
817
- As of January 2015 the free plan will include the Lite version of our features. The paid version will open the PRO features. The free version has all, a small Wordpress site or blog needs to get started with SEO and Content Marketing.
818
-
819
- These are the blogs on which owners want to publish about 5 articles/month. Also, includes a general Audit of their whole site and want to see the SEO analytics for their last posts.
820
-
821
- = What about the PRO Plan? =
822
- The PRO Plan is for those with bigger content marketing and SEO needs. For anything regarding the paid plans, go to our website: <a href="http://howto.squirrly.co/squirrly-pricing-plans/">http://howto.squirrly.co/squirrly-pricing-plans/</a>
823
-
824
- The Wordpress directory listing is only to be used for concerns regarding the Free version. You can get the PRO Plan after you've installed the plugin from this directory.
825
-
826
- = What Features does Squirrly SEO Plugin offer? =
827
- All of the features that we offer have been built having the customer's best interests in mind. We brought 90% of our clients to the first page of Google
828
- and we've proven time and again that we are a great team that knows all there is to know about good **SEO automation**.
829
-
830
- We have a community of 20,000 blogs that all used our SEO techniques, and they have gotten lots of hits from search engines due to our optimization. Now we offer the same quality for you:
831
-
832
- [UPDATE] Squirrly now has over 1,500,000 downloads, so we've been offering great software for over two years now.
833
-
834
- - SEO Advice as you're typing your articles
835
- - Advice in real time from the SEO Live Assistant on how to write better content for your Human readers
836
- - <span style="color: #000000;">**Weekly SEO Audit report from the content audit tool**</span>, that shows you how well you did on: Blogging, Traffic, Links, SEO, Social Media and Authority
837
- - Lots of advice in the reports for how you can improve each section
838
- - Keyword Research and Analysis (that takes data from both SEMrush AND Social Media)
839
- - Monitors your Site's Progress
840
- - SEO Analytics for each post or page
841
- - Shows you how you rank in Google
842
- - Shows you Social Signals for each article
843
- - Social Intelligence
844
- - Images you can use (with advice on License for each image. Most are Free to use)
845
- - Read Tweets, Wikis, Blogs
846
- - Insert Tweets, Wikis, Blogs
847
- - Better Keyword Suggestions for your SEO strategy than Google Keyword Planner can offer you
848
- - You'll be alerted if there are SEO issues, 404 errors, visibility problems
849
- - Search of images, tweets, wikis, blogs, etc. based on your keyword
850
- - As you type your article or edit older articles, you can set the META information for that article (using the Squirrly Snippet)
851
- - Facebook Open Graph Wordpress support for both Images and Videos (if you have a video in your article, Squirrly will attach the open graph properties to it)
852
- - Twitter Cards
853
- - Customize your FavIcon
854
- - Adds the icon for Apple Devices
855
- - Google Analytics setup support
856
- - Google Webmaster Tools setup support
857
- - Google JSON-LD Structured data
858
- - Google+ URL
859
- - Bing META Code support
860
- - Facebook META Code support
861
- - Adds the correct seo title on the home page
862
- - Adds the correct seo description and seo keywords in all pages
863
- - Adds canonical link in all pages
864
- - Adds the XML Sitemap for search engines: /sitemap.xml
865
- - PING the XML Sitemap for google and bing
866
- - Adds the required METAs for home page (icon, author, language, dc publisher, hreflang, etc.)
867
- - Adds the favicon and the icon for Apple devices.
868
- - Support for Custom Post Types
869
- - Fine tune Page Navigational Links
870
- - Provides SEO Integration for WP e-Commerce sites
871
- - Support for CMS-style WordPress installations
872
- - Optimizes your titles for search engines
873
- - Generates META tags automatically
874
- - For beginners, all these settings are made automatically to get the best SEO possible.
875
- - For advanced users, you can fine-tune everything.
876
- - You can override any title and set any META description and any META keywords you want.
877
- - Real Time Snippet Preview (checks the frontend of each article, not just a preview)
878
- - Integrated with other Ecommerce Plugins like WooCommerce, WP Ecommerce, MarketPress, Ready!, Shopp for your ecommerce seo strategy
879
- - Compatibility with all the other plugins, like Auto Meta, Ultimate Tag Warrior and others.
880
- - Works best with multisite SEO
881
- - SEO error check and fix the META duplicates with the duplicate removal tool
882
-
883
- And the best ones that we have (and the others don't):
884
- -*Keyword research and SEO Analysis*: find the keywords that are easier to rank for
885
- -*SEO Live Assistant*: Your WordPress gives you SEO advice as you type or edit your article
886
- -*Inspiration box*: get images you can use for free, tweets you can quote and get up to date with latest news about your subject
887
- -*SEO Rank*: Measure and Monitor the impact of SEO and Social Signals for each of your articles
888
-
889
- = Do I get support for your WordPress SEO Plugin? =
890
- Yes, we are focused on Delivering Happiness and this comes along with a good support package. We have a track record of replying in under 5 hours to
891
- any request, no matter the time of day. And we also fix any problems which you may encounter very fast, so Squirrly is trust-worthy.
892
-
893
- = How does the META Description work in Squirrly SEO Optimization? =
894
- Based on your article, Squirrly will find the most relevant text and add it in the META Description.
895
-
896
- You can opt-in to use the Squirrly Snippet in the Post/Page editor, which will allow you to customize how the META Title and Description will be. All while writing or editing your article.
897
-
898
- = Can I use the images, tweets and articles given by the Inspiration Box? Are there any legal concerns? =
899
- Yes, you can use the tweets and the paragraphs in your articles. They contain related links to the source and are perfectly legal to use. Of course, for the articles, add only some paragraphs, not the whole article.
900
-
901
- As for the images, you find in the Inspiration Box, you can use **the Copyright-Free images that we offer**, to make sure you will not have any legal problems. Follow the license-compliance guidance we offer for each of them.
902
- = How to install Facebook Pixel on Wordpress ? =
903
- If you plan on tracking your action from Facebook ad campaigns what you have to is first install Squirrly. Then how to install Facebook Pixel on Wordpress is resumed to adding your Pixel ID in the plugin.
904
- You'll find it in your dashboard in Squirrly&gt;&gt;SEO Settings&gt;&gt; Tracking Tools at the bottom of the page.
905
- You can check the integration to your site has been done properly with the <a href="https://chrome.google.com/webstore/detail/facebook-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc?hl=en">Chrome extension from Facebook. </a>
906
-
907
- = How can Squirrly help me with the JSON-LD structure ?=
908
- In the Squirrly dashboard you can set and personalize the information that appear in Google when people search for your organisation.
909
-
910
- = Can I use Squirrly seo on mobile? =
911
- Yes, on IOS and ANDROID, it works both through the browser and Wordpress app
912
-
913
- = Where can I enter the title and page description? =
914
- If you click the Squirrly tab in your dashboard, go to the "First Page Optimization" section and switch the Title and Description option on. You can enter custom Title, Description and Keywords.
915
-
916
- = Where can I access the Content Audit Tool ?=
917
-
918
- You'll receive a weekly email with the audit of your site and you can also access the audit from your dashboard account on my.squirrly.co .
919
-
920
- = Is this Wordpress SEO plugin the only SEO plugin I will need to install? =
921
-
922
- Most of our users and customer use Squirrly for everything related to SEO: from keyword analysis to seo settings on Wordpress, to analytics and to weekly monitoring and audit reports.
923
-
924
- But it all depends on how you have setup your Wordpress until now. Some people use Squirrly seo plugin only for the Content Optimization with the Live Assistant part, some use it to check their SEO stats and see where they need to improve their Wordpress seo.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
925
 
926
  = Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies? =
927
 
1
+ ===SEO by Squirrly - Best AI WordPress SEO Plugin 2021 - Rank Faster With AI SEO Strategy===
2
  Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
3
+ Tags: SEO, XML Sitemap, Content Analysis, Google Search Console, Schema
4
  Requires at least: 4.3
5
  Tested up to: 5.8
6
  Stable tag: trunk
8
  License: GPLv2 or later
9
  Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
10
 
11
+ The Ultimate WordPress SEO plugin. Get the most SEO tools under one roof. Optimize SEO traffic & Boost SEO rankings using the power of A.I.
12
 
13
  == Description ==
14
 
15
+ ### Squirrly SEO: the #1 AI WordPress SEO plugin
16
 
17
+ Your **SEO challenges** - solved.
18
 
19
+ Squirrly’s mission is **Never Fail at SEO**. Our AI SaaS + plugin’s users range from the auto repair shop around the corner to some of the most popular sites on the planet.
20
 
21
+ SEO continues to be one the most reliable sources of traffic. Unlike ads that stop bringing you traffic when your budget runs out, creating and implementing an SEO strategy for your WordPress site sets you up for long-term success.
22
+ But SEO can be a tough nut to crack. Unless you’re using a **complete WordPress SEO plugin** that was created with YOUR SEO challenges in mind.
23
 
24
+ https://www.youtube.com/watch?v=h1EwXjOHY0M
25
 
26
+ <a title="Benefits of Using the Best WordPress SEO Plugin" href="https://plugin.squirrly.co/">BENEFITS</a> / <a title="Success with SEO Tools from Squirrly" href="https://www.squirrly.co/successful/">CUSTOMER SUCCESS</a> / <a title="Compare to WordPress SEO Plugins like Yoast RankMath SEOPress" href="https://plugin.squirrly.co/compare/">COMPARE</a> / <a title="SEO Plugin Features" href="https://www.squirrly.co/wordpress/plugins/seo/">ALL FEATURES</a> / <a title="Try a Demo without installing on your WordPress" href="https://demo.seoplugin.xyz/">DEMO</a>
27
 
28
+ We built Squirrly SEO to help everyone, regardless of their level of SEO knowledge and expertise, get access to **ALL the SEO tools** and **ALL the guidance** they need to take charge of SEO, optimize, and gain more traffic for their sites.
29
 
30
+ #### DO ANY OF THESE SOUND FAMILIAR?
31
 
32
+ "I already have an endless list of must-solve right now to-dos. I want to have time to run my business - not spend my life doing SEO for my website. "
33
 
34
+ “I feel intimidated by SEO and its complexity. I never know if what I'm doing is making an impact. "
35
 
36
+ “I know WordPress SEO is important, but I struggle to understand all the pieces and how they work together on my own.”
37
 
38
+ SEO is like working out. Necessary but boring and tedious. It’s tough to get motivated so SEO never gets done.”
39
 
40
+ **If you can relate** to any of the struggles mentioned here or if you're simply looking for an SEO solution that isn't just fine but actually GREAT - **it's time you met Squirrly**.
41
 
42
+ ★★★★★
43
 
44
+ **Guaranteed to help you Rank Faster. Start your optimization journey to boost performance and drive more organic traffic to your site today.**
45
 
46
+ "I purchased Squirrly on April 28th 2021 and as of the morning of May 19th 2021 traffic to my site has increased by nearly 10X compared to traffic for the month of April."
47
 
48
+ **Reed Floren** (Online Marketing Expert at Jarvis.AI, Best Selling co-author)
49
 
50
+ ### Squirrly SEO is an AI-powered, all-in-one SEO suite that takes the guesswork out of search engine optimization.
51
 
52
+ Optimize your WordPress, and take the shortest path to the 1st page of Google Search with data-driven SEO goals from an A.I. consultant.
53
 
 
 
 
 
54
  Powered by Machine Learning and Cloud Services.
 
 
55
 
56
+ - Get the **perfect WordPress SEO setup** - instantly! Over 650 features for SEO pre-configured for you during install.
57
+ - **All hand-holding.** Completely educational. Squirrly provides a fail-proof, paint-by-numbers way of managing and improving your site’s SEO.
58
+ - Access **customized to-dos from an A.I. SEO consultant** for better rankings, plus step-by-step guidance on implementation.
59
 
60
+ Use one tool for keyword research, SEO content optimization, content analysis, SEO guidance, technical SEO, site audits, rank tracking, and more.
61
 
62
+ Optimize your entire WordPress website with Squirrly SEO.
63
 
64
+ **Perfect for**: small business owners, content creators, bloggers, freelancers, and agencies looking to access clear guidelines for improving their SEO.
65
 
66
+ #### Recommended by Thousands of Happy Users
67
 
68
+ **Squirrly SEO is the Popular WordPress SEO plugin that NON-SEO Experts use to boost their search engine traffic.** Offers the same level of advice as a Human consultant would, yet with greater precision and customization.
69
 
70
+ Reach SEO success by following the **Daily SEO Goals** and using Squirrly's built-in SEO tools to get higher Rankings with less effort.
71
 
72
+ Join a huge community of successful users who are ranking on the first page of Google Search with Squirrly SEO.
73
 
74
+ <a title="Success with SEO Tools from Squirrly" href="https://www.squirrly.co/successful/">See Success Stories from WordPress Users Who Followed Squirrly’s Advice here (click) </a>
75
 
76
+ https://www.youtube.com/watch?v=eKqiYMHpIB4
77
 
78
+ https://www.youtube.com/watch?v=kPpZmKra0T0
79
 
80
+ <h3>2021 Awards and Recognition</h3>
81
 
82
+ <strong><a title="G2 Awards for WordPress SEO Plugin by Squirrly" href="https://www.squirrly.co/g2-awards-squirrly-seo-the-high-performer-medal/">Squirrly SEO has been named a High Performer for Summer 2021 on G2</a></strong>
83
+ ✔ <strong><a title="Gartner Awards for WordPress SEO Plugin by Squirrly" href="https://www.squirrly.co/gartner-digital-markets-ranks-squirrly-seo-as-a-top-product-in-its-category/">Gartner Digital Markets Ranks Squirrly SEO as a Top Product in SEO worldwide, among other SaaS</a></strong>
84
+ ✔ <strong><a title="Capterra Awards for WordPress SEO Plugin by Squirrly" href="Squirrly SEO Listed among the Best SEO Tools of 2021 in New Capterra Shortlist Report">Squirrly SEO Listed among the Best SEO Tools of 2021 in New Capterra Shortlist Report</a></strong>
85
+ ✔ <strong><a title="ProductHunt Awards for WordPress SEO Plugin by Squirrly" href="https://www.producthunt.com/posts/squirrly-next-seo-goals">Product Hunt: 1st Place in all of the following categories: SEO Tools, WordPress, Virtual Assistants</a></strong>
86
+ ✔ <strong><a title="All Awards for Squirrly" href="https://plugin.squirrly.co/squirrly-awards/">Check out all the Awards of Squirrly SEO 2021</a></strong>
87
+ ✔ <strong><a title="WordPress SEO Plugin by the best SaaS Company" href="https://www.squirrly.co/best-saas-companies/">Built, Supported and Innovated by one of the Best SaaS Companies and 7,479 Subscription-paying customers</a></strong>
88
 
89
+ ★★★★★
90
+ **"Fantastic results using Squirrly SEO"**
91
+ What problems are you solving with the product? What benefits have you realized?
92
 
93
+ Problem: low rankings for some pages and keywords - solved.
94
+ Problem: because of low rankings, traffic was lower - solved.
95
 
96
+ Jakob Thusgaard (founder and CEO)
97
+ (testimonial source: G2)
98
 
99
+ <h3>Does everything you need it - and more. Without slowing down your site.</h3>
100
+ Squirrly SEO brings the most SEO tools under one roof - and is the ONLY software on the market right now that gives you **the complete SEO funnel**.
101
 
102
+ Meaning:
103
 
104
+ Helps you take clients searching on Google all the way through to your money-maker pages.
105
 
106
+ https://plugin.squirrly.co/compare/
107
 
108
+ ^^ use it to see the Complete SEO Funnel and check out key differences: Squirrly SEO vs other SEO tools.
109
 
110
+ All the important SEO Tools you can find in SEMrush, Moz, Ahrefs in Your WordPress Dashboard.
111
 
112
+ <a title="Faster than all other WP SEO Plugins" href="https://howto.squirrly.co/faq/is-squirrly-seo-a-heavy-plugin/">SEE our speed test.</a> Loading time is excellent and we tested this during a live session.
113
 
114
+ "Comparable" tools don't even come close to what Squirrly SEO offers.
115
 
116
+ From keyword research to SEO content optimization, content analysis, SEO suggestions, SEO settings, website Audits, and rank tracking - Squirrly offers the most SEO tools and functionality to **cover all your SEO needs in one place**.
117
 
118
+ This eliminates the need to install many different plugins and helps you optimize your workflow so that you can be more efficient with your SEO efforts.
119
 
120
+ > * Want to do keyword research and find the best keywords to target based on real data such as competition, chances of ranking, and more?
 
 
 
121
 
122
+ You can do that with Squirrly!
123
 
124
+ **Our keyword research data is fresh**, since we don’t use cached databases. Our maximum caching time is about 48 hours, not a whole year or two like you find in other tools.
125
 
126
+ As we use Google Trends and Google API and run them through our Proprietary TECH to define search volumes and more, Social Media for discussions, the data will be FRESH every time.
127
 
128
+ ^^ we **have our very own algorithms to offer the industry's best data** when it comes to Keyword Research. We've been building research algorithms since 2012.
129
 
130
+ > * Want a place to save and organize the best keywords you find?
131
 
132
+ With Squirrly, you have a dedicated place to store your keywords and quickly organize them using Labels so that you have a clear view of your SEO strategies.
133
 
134
+ > * Want an easy way to do On-Page SEO?
135
 
136
+ Squirrly's SEO Live Assistant does content analysis in real-time and generates suggestions for your content on the fly while also checking for readability. This is the easiest, most guided way of creating SEO content that both search engines and humans will love.
137
 
138
+ > * Excellent SEO? Wondering if your pages are fully optimized to reach SEO success? Not sure whether you're focusing on the right things or not?
139
 
140
+ Focus Pages **connects the dots between many sides of SEO**. It scans your content to show you page-specific tasks you need to complete to improve your chances of ranking.
141
 
142
+ The system takes into account over 113 Ranking Factors to give you a complete analysis of your pages. This is next-level content analysis.
143
 
144
+ **There's more... **
145
 
146
+ > * Want to audit your site to see how it performs across key areas such as Blogging, Traffic, Links, and SEO?
147
 
148
+ Squirrly will analyze your site's performance and give you a score based on what it uncovers. Plus - clear guidance on how you can improve in the areas where you're falling behind.
149
 
150
+ **SaaS + Plugin configuration allows us to crawl** everything related to your site and our Proprietary Market Intelligence feature helps us score your site realistically with real performance indicators.
151
 
152
+ > * Want to know if your work has translated into higher rankings?
153
 
154
+ Squirrly answers your questions with powerful graphics, Ranking data, and success & achievements messages that allow you to see and feel your progress.
155
 
156
+ Squirrly integrates with Google Search Console to bring you powerful data right inside WordPress.
157
 
158
+ ^^ however, Squirrly uses GSC data to enhance our own **algorithms and proprietary technology + AI, which we developed ourselves.**
159
 
160
+ This is not a Google Search Console data visualization plugin. We offer you real SEO insight based on technology owned and developed by the Squirrly Company.
161
 
162
+ > * Want to know how many people click on your listing in Search Results - and how much traffic you're getting?
163
 
164
+ Squirrly will show you exact numbers so that you can turn data into decisions and plan your next moves with confidence.
165
 
166
+ A lot more...
167
 
168
+ ★★★★★
169
 
170
+ **"I've used many other SEO plugins out there: Yoast, Rank Math, WP All in One SEO, but Squirrly has outclassed them all."**
171
 
172
+ I'm a Search Engine Optimization professional with 4 years of experience and from now on this product will be my go-to when implementing SEO strategies for my clients.
173
+ It's extremely easy to use, self-explanatory, and will definitely work great for those who don't have much SEO experience.
174
 
175
+ **Zuzanna Kruger** (SEO professional)
176
 
177
+ (testimonial source: Product Hunt)
178
 
179
+ <h3>In fact, Squirrly covers everything you need to optimize and be successful with WordPress SEO.</h3>
180
 
181
+ Over 650 features pre-configured for you during install, so that you don't have to work on configurations!
182
 
183
+ Squirrly SEO has all important settings done for you right as you start and complete the setup wizard.
184
 
185
+ No need to go back and forth between tabs to do keyword research, create SEO content, completely optimize your website and pages, and track their SEO performance.
186
 
187
+ SEO optimization has never been easier.
188
 
189
+ > - DO IT ALL WITH ONE TOOL -
190
+ >
191
+ > * Key default SEO settings configured for you during install
192
+ > * Keyword Research
193
+ > * Keyword portfolio
194
+ > * Guided On-Page optimization
195
+ > * SEO content grading
196
+ > * In-depth SEO Content Analysis
197
+ > * Readability analysis: SEO Live Assistant makes sure your content is not just Google friendly but also human-friendly. The Human-Friendly item checks your text for semantic readability.
198
+ > * SEO Content Optimization
199
+ > * Blog post research
200
+ > * Copyright-free Images
201
+ > * Optimize for multiple keywords
202
+ > * On Page SEO METAs (including meta title and meta description)
203
+ > * Customize the META Description and Meta Title for each URL on your website using the Squirrly SEO Snippet, Squirrly > SEO Settings > Automation
204
+ > * Full control over your meta title and meta description
205
+ > * SEO Automation for Meta Title
206
+ > * Easy to define the meta description (create a unique, accurate meta description) when doing SEO so that Google will better understand what your page is about.
207
+ > * Open Graph feature allows you to control how you want your post to look like when users share your content.
208
+ > * Option to automate
209
+ > * Open Graph (Open Graph Preview, Open Graph BULK work-flow, Open Graph Automation with different rules according to different custom post types, Open Graph object Type, Open Graph and fb admin page id, Open Graph and author URL, Open Graph with VIDEO, which makes the video PLAY directly inside Facebook, Open Graph Validation)
210
+ > * Twitter Card (Twitter Card validation, Twitter Card – large, Twitter Card – summary, Twitter Card Bulk work-flow, Twitter Card Automation with different rules according to different custom post types, Twitter Card Preview)
211
+ > * Option to define custom META Lengths (for meta title and meta description)
212
+ > * Internal linking suggestions
213
+ > * Redirection features: 301 Redirect
214
+ > * Redirection features: redirect broken pages to a default URL
215
+ > * SEO Automation for 404 Pages
216
+ > * Optimize based on SEO Suggestions
217
+ > * Custom, AI-Driven SEO Goals generated for your site and pages
218
+ > * Advanced SEO Audits
219
+ > * Continuous SEO Oversight - unprecedented level of SEO Protection
220
+ > * Keyword rank tracking
221
+ > * Success messages and achievements graphics
222
+ > * Warnings against over 113 types of ranking drawbacks
223
+ > * Google Search Console integration. Squirrly SEO makes it easy to access key website performance metrics right inside WordPress by integrating with Google Search Console.
224
+ > * Google Analytics integration. Squirrly integrates with Google Analytics to bring you must-know data about your pages, making it easy to monitor performance.
225
+ > * Squirrly also shows you Traffic Data for every Page you add as a Focus Page (in the Traffic Health Section) – alongside bounce rate data and time-on-page data. All this data is retrieved from Google Analytics via the Google Analytics integration.
226
+ > * Google Analytics tracking with custom rules for custom pages
227
+ > * Google Analytics tracking fixes included with the 14 Days Journey
228
+ > * Google Analytics FULL integrations, to get accurate Traffic Data in the SEO Audit and to get accurate Google Search Engine readings for quality SEO content (as I said: we look for “quality SEO content” the same way that Google does.
229
+ > * Most advanced XML Sitemap (Pictures in XML Sitemap, XML Sitemap enhanced with Videos, XML Sitemap settings for frequency with which you add new content to the site, XML Sitemap to get you in Google News, XML Sitemap with organized sub-sitemaps, XML Sitemap with Page-Level customization options, XML Sitemap inclusions / exclusions according to rules based on Custom post Types and Automation Features)
230
+ > * Option to Remove no-index pages from the XML Sitemap at an URL level
231
+ > * Structured Data (Schema Markup)
232
+ > * Multiple types of schema org JSON-LD implementations you can make
233
+ > * Configure the JSON-LD Types in SEO Automation
234
+ > * Custom JSON-LD Schema Code implementation
235
+ > * Build and validate JSON-LD schema
236
+ > * woocommerce ++ added more JSON-LD schema features for our available implementation
237
+ > * Improve the WooCommerce Product and Orders JSON-LD Schema with the required data.
238
+ > * Add default data for JSON-LD AggregateRating, Offers, SKU, MPN when they are missing from the product to avoid Google Search Console errors.
239
+ > * Add Breadcrumbs Schema in JSON-LD
240
+ > * Select multiple JSON-LD schema types for a single post type
241
+ > * Enable Squirrly to include additional metadata fields for WooCommerce Products Inventory Section
242
+ > * SEO Automation
243
+ > * Automatic redirection features
244
+ > * Customize SEO in bulk
245
+ > * Correct the SEO for the entire website in minutes
246
+ > * Meta Robots Tags [noindex, nofollow]
247
+ > * Creating and managing Robots.txt
248
+ > * Rich Pins
249
+ > * Facebook Pixel advanced options for eCommerce
250
+ > * Set User Roles to limit access to Squirrly SEO functionality for Authors, Editors, Shop Manager, etc.
251
+ > * Translation Plugins Support — Squirrly works perfectly with popular translations plugins like WPML and Polylang.
252
+ > * Elementor SEO
253
+ > * Divi SEO
254
+ > * Brizy SEO
255
+ > * Oxygen SEO
256
+ > * WooCommerce SEO
257
+ > * Import SEO and Settings with just ONE click (safely migrate your data to Squirrly SEO from any of the following:
258
 
259
+ - Rank Math, Yoast, All in One SEO, SEO Framework, SEO Press, SEO Pressor, Add Meta Tags Plugin, Gregs High Performance SEO, Headspace 2, Platinum SEO Pack, SEO Title Tags, SEO Ultimate Plugin.
260
 
261
+ The list of SEO tools included in Squirrly SEO, the Ultimate WordPress SEO Plugin, goes on and on ..
262
 
263
+ + <a title="See SEO Features" href="https://www.squirrly.co/wordpress/plugins/seo/">see 650 features that’ll help you optimize your site (click) </a>
264
 
265
+ ★★★★★
266
+ "When you're new to SEO like me, some dark corners of content optimization can be hard to figure out. With Squirrly SEO's full suite of tools, all I have to do is follow their instructions."
267
 
268
+ It is straightforward, so anyone can use this easy-to-use tool by simply following the navigation they're given, giving you undeniable confidence that if you put work into your site, you will get the results you want!
269
 
270
+ Masatoshi Matsumiya (testimonial source: Product Hunt)
271
 
272
+ <h3>All the Features you need to Optimize + Clear Guidance on how to use them at the BEST time</h3>
273
 
274
+ Squirrly doesn't just offer a lot of features that you can use to optimize your entire website.
275
 
276
+ It also provides direction on how to maximize using those features to reach the 1st Page of Google Search faster.
277
 
278
+ #### Next SEO Goals -
279
 
280
+ Next SEO Goals shows you high-priority actions you need to take to improve the SEO of your site - and points to the exact SEO tools from Squirrly that you need to use to get the job done faster.
281
+ Everything is 100% guided. Squirrly shows you which of its features to use to solve specific, real problems that YOUR site and pages have.
282
 
283
+ By just using the Next SEO Goals feature, you ensure you discover the features from Squirrly SEO - at the best time - and use them to fix issues that hurt your chances of ranking.
284
 
285
+ #### Focus Pages -
286
 
287
+ Focus Pages provides in-depth content analysis to show you the fastest path to better rankings.
288
 
289
+ In Focus Pages, Squirrly takes you by the hand to show you exactly what you need to do and which features to use to turn Red Elements Green and improve your chances of ranking.
290
 
291
+ Plus, thanks to Squirrly’s Google Analytics integration, you will be able to see how your actions translate into more traffic to your pages.
292
+
293
+ #### 14 Days Journey to Better Rankings -
294
+
295
+ This gives you a blueprint for what you need to do and which SEO tools to use to bring one of your pages up in Rankings in just two weeks.
296
+
297
+ ★★★★★
298
+ "Before discovering Squirrly SEO, my SEO tool of choice was Yoast. But I've never really felt using that SEO tool well as I am not an SEO expert and don't have the time to invest too many hours learning about SEO optimization."
299
+ That's why Squirrly came in to help me with that process: I like their guide and the steps explaining what to do next in order to get it working. That's great for me!
300
+ Gabriel Santos (testimonial source: Product Hunt)
301
+
302
+ <h3>Powerful yet Lightweight - Squirrly SEO loads faster than any other SEO plugin</h3>
303
+
304
+ The Squirrly SEO plugin doesn't impact your pagespeed - as it loads super fast with a WordPress site.
305
+ (demonstrated in the LIVE TEST below)
306
+ https://howto.squirrly.co/faq/is-squirrly-seo-a-heavy-plugin/
307
+
308
+ The advantage that enables Squirrly SEO to load faster than any other SEO plugin currently on the market:
309
+
310
+ This amazing feat is thanks to the SaaS + SEO plugin duality which is unique to Squirrly SEO.
311
+
312
+ 650 Features in Squirrly SEO, but the processing and heavy lifting is done on Squirrly Limited (the company)’s private servers. That makes the WordPress SEO plugin load incredibly fast.
313
+
314
+ Also, from our tests, the Squirrly SEO plugin loads on the frontend in 0.005s if you’re not using a plugin for caching.
315
+
316
+ We integrated the Squirrly SEO plugin with the most popular plugins for caching like WP Super Cache, WP-Rocket, Autoptimize, W3 Total, and more. This way, the buffer only loads through the plugins for caching and the speed is not affected at all.
317
+
318
+ <h3>SEO feels like a dark art? With Squirrly, you don't have to do it alone</h3>
319
+
320
+ With so many variables at play, SEO can seem blindingly complex.
321
+
322
+ Like you're trying to solve one huge puzzle, and it's up to you to try and make sense of how all the pieces fit together.
323
+
324
+ It's easy to get overwhelmed by the breadth of knowledge and attention to detail necessary.
325
+
326
+ So many people end up putting SEO off over and over.
327
+
328
+ Not if you're using Squirrly.
329
+
330
+ With features such as Next SEO Goals and Focus Pages, Squirrly helps you navigate today's key ranking factors by providing you with a complete framework and step-by-step guidance for placing your pages at the top of Google Search.
331
+
332
+ It's like having an SEO expert in your WordPress site telling you what to do next to rank higher.
333
+
334
+ ★★★★★
335
+ " I'm new to SEO and, to be honest, it felt a bit like jabbing into the dark, having no real idea how optimized my content is (or isn't). But with Squirrly's content editor, it's crystal clear what I need to do to rank.
336
+
337
+ After following its guidelines and rewriting some of my articles, one of them showed up on the first page of Google! "
338
+
339
+ It's a small win but one that gives me absolute confidence that if I put in the work, I'll get the SEO results I'm hoping for in due time.
340
+
341
+ Though, there is A LOT more to this tool than just the content editor. It really covers pretty much everything you need to do for on-page SEO stuff.
342
+
343
+ If you're new to SEO like I am, I suggest grabbing this.
344
+
345
+ Victor Mutta (testimonial source: Product Hunt)
346
+
347
+ <h3>Get actionable steps for topping the search engine rankings using the power of AI</h3>
348
+
349
+ Intimidated by SEO and its complexity?
350
+
351
+ Instead of feeling overwhelmed, you could start each day with a simple set of actionable Goals ready for you to complete.
352
+
353
+ Squirrly gives you clear directions and a step-by-step approach to implementing best practices for WordPress SEO.
354
+
355
+ Furthermore, it breaks everything down for you into small chunks and actionable tasks so nothing gets overwhelming.
356
+
357
+ All you have to do is follow the guidance to solve tasks and turn as many RED elements GREEN. It's really that simple.
358
+
359
+ ★★★★★
360
+ " Squirrly is a great SEO plugin and I've tested quite a few SEO plugins, including Rank Math, SEO Press and Yoast. Their whole approach is different but somehow has the same important aspects. It works great! "
361
+
362
+ The focus feature is especially useful and I now include Squirrly on all my sites to get rankings on specific pages. Onboarding is a breeze as well and they have a step by step process to help you reach your SEO goals.
363
+
364
+ Muhammed Seitz (Web Developer)
365
+
366
+ (testimonial source: Product Hunt)
367
 
368
+ <h3>Reach the 1st Page of Google and actually have Fun getting there</h3>
369
 
370
+ You know SEO is important but just hearing the word optimize makes you want to gouge your eyes out? You're not alone.
371
 
372
+ Even if you have a clue of what you're doing and what you should be focusing on, Search Engine Optimization can still feel like a giant tedious ball of blah.
373
 
374
+ We wanted to change that, because if SEO feels like a repetitious chore - it's hard to stay consistent with your efforts.
375
 
376
+ Unlike other SEO tools that simply tell you to press this and that, Squirrly gamifies the SEO experience to help you turn SEO work into an exciting habit.
377
 
378
+ Every day, you'll get about 3 New, High-Priority SEO Goals that you have to accomplish to optimize your website - complete with step-by-step instructions on how to get the job done.
379
 
380
+ It's almost like playing a game.
381
 
382
+ And the prize?
383
 
384
+ Better rankings and increased organic traffic to your site. Consistently.
385
 
386
+ ★★★★★
387
+ " I had fun understanding what happens to my pages and posts. I had fun finding keywords and working with them inside the tool and the way squirrly teaches you what to improve is fantastic."
388
 
389
+ I discovered things I never quite understood under seopress because you don’t tweak it. Results, I had a boost for 12 keywords on first page and 7 of them number 1 on google.
390
 
391
+ Jean-Pierre Michael (testimonial source: Facebook)
392
 
393
+ <h3>Learn SEO as You're Doing it</h3>
394
 
395
+ While other SEO plugins leave you to fend for yourself, Squirrly has a strong educational component - helping you learn while doing.
396
 
397
+ Using Squirrly is like taking a beginner-friendly masterclass in SEO with all of the SEO tools you need to properly optimize your website.
398
 
399
+ You're not just going through the moves, you're also acquiring the knowledge and experience needed to become an SEO expert at your own pace.
400
 
401
+ By walking step by step through the Squirrly guides, tasks, and suggestions - the ins and outs of SEO will start to reveal themselves to you more and more.
402
 
403
+ With every task you complete inside the WordPress SEO plugin, you'll make significant progress while also learning more about how SEO works, how to optimize, and why it's important to perform certain actions.
404
 
405
+ ★★★★★
406
+ "Highly impressed with Squirrely SEO. Having used several SEO apps and platforms in the past, Squirrly SEO stands out as a must-install. I will be deleting Yoast and installing Squirrly SEO on all my sites."
407
 
408
+ Even while offering advanced features, Squirrely seems to be highly user-friendly and easy to use, even for those with no SEO experience. Squirrly SEO is by far the best I have seen.
409
 
410
+ The user interface is clean and informative. It educates while leading you through all aspects and features you will need to address on your website for peak SEO performance.
411
 
412
+ Simply turn red to green and your on your way to higher ranking.
413
 
414
+ Carlos Mandelaveitia (Sr Creative Director @ DIVI MEDIA)
415
 
416
+ (testimonial source: Product Hunt)
417
 
418
+ <h3>Add Precious Hours Back into Your Week</h3>
419
 
420
+ Using multiple SEO products scattered across tabs and spreadsheets doesn't just cost you time. It also makes it harder to stay focused and advance with your SEO efforts.
421
 
422
+ Not working on the SEO tasks that will generate the highest impact, or worse, working on tasks that are no longer relevant to how search engines work today also cuts into your hours.
423
+
424
+ With Squirrly, you'll be able to:
425
+
426
+ Do it all in one place. Squirrly covers all your SEO optimization needs, eliminating the need to juggle with a bunch of different products.
427
+
428
+ Not waste time figuring out which tools you should use for different pieces of the SEO puzzle. Squirrly's SEO tools all work as part of one big SEO optimization mechanism that's engineered to get you higher rankings.
429
+
430
+ Focus on the tasks that will put your site on the fastest track to improved rankings.
431
+
432
+ That means: it will be easier to optimize your entire website and get better results with less time input.
433
+
434
+ ★★★★★
435
+ " Squirrly SEO is an AI-powered online marketing and SEO tool that finds the best opportunities for your business and delivers you high-quality backlinks, content suggestions, and website optimization tools to grow your online presence."
436
+
437
+ It is the perfect choice for those who want to focus on achieving real business results and don’t have time to waste running around managing backlinks and content-related SEO activities.
438
+
439
+ With Squirrly SEO’s smart tool, you can finally kick the tires and drive away with business opportunities, traffic, and rankings.
440
+
441
+ You’ve worked hard to get the word out about your business. Now let Squirrly SEO do the heavy lifting and discover the most effective, the fastest path to success for your business online.
442
+
443
+ Robert Trif (SEO Specialist | Founder & CEO of BestSEO4u)
444
+
445
+ (testimonial source: AppSumo)
446
+
447
+ <h3>Innovative Features Powered by Proprietary Technology</h3>
448
+
449
+ ★★★★★
450
+ Spending over 2 Million USD over the years allowed our engineers to build amazing proprietary technology for the Squirrly Company.
451
+ ★★★★★
452
+ So, when you get Squirrly, you're getting access to a set of unique features that help you optimize and that ONLY WE OFFER.
453
+ - Keyword Research
454
+ - SERP Checker Tools
455
+ - Audit
456
+ - the A.I.
457
+
458
+ all of them are built and hosted by Squirrly Limited << it's our Intellectual Property.
459
+
460
+ <h3>SQUIRRLY SEO IS PERFECT FOR:</h3>
461
+
462
+ ✔Small business owners
463
+ ✔Bloggers
464
+ ✔Agencies
465
+ ✔Local businesses
466
+ ✔Startups
467
+ ✔Freelancers
468
+ ✔Content creators
469
+ ✔Marketing teams
470
+ ✔anyone with a WordPress site
471
+
472
+ Right for all levels: both SEO experts and SEO beginners can successfully use Squirrly SEO to optimize for better Rankings.
473
+
474
+ Ability to configure Squirrly SEO for your level during onboarding;
475
+
476
+ Ability to switch between SEO beginner and Advanced Mode with a single click.
477
+
478
+ - Switch off Advanced SEO to have the simplified version of the settings, intended for Non-SEO Experts. By switching off, you'll let our AI select the best possible settings and to coordinate our 650 SEO features for your website.
479
+
480
+ - By activating Advanced SEO and Tweaking all Advanced SEO settings, you can start customizing the SEO experience for every single kind of Post_Type inside your WordPress site.
481
+
482
+ Switch from automatic to manual (fine-tune and see everything under the hood - change everything based on your needs and preferences).
483
+
484
+ <h3>WordPress SEO: All SEO Tools Included for Free</h3>
485
+
486
+ With a plethora of features to optimize and the option to test them out for free, giving Squirrly SEO a try is a risk-free option that will help you unlock SEO growth for your site.
487
+
488
+ The free SEO plugin is limited in terms of feature usage (volume-based usage), it doesn’t cut features.
489
+
490
+ - Some features might be found in the Lite version, instead of PRO, Web Dev Kit, or Business version, but they aren’t cut off.
491
+
492
+ The Free SEO Plugin can easily be used together with Rank Math SEO, Yoast, SEOPress, SEO Framework, All in One and more, in compatibility mode.
493
+
494
+ Or, as a user, you can decide to import all settings from the other SEO plugins, and use only Squirrly SEO moving forward. It’s your choice based on how you want to optimize and you can use them in any way you want.
495
+
496
+ ★★★★★
497
+
498
+ > Leading Experts in Marketing and SEO Recommend the Squirrly SEO Plugin:
499
  >
500
+ > * Neil Patel
501
+ > * Brian Dean
502
+ > * Ann Handley
503
+ > * Ibrahim Evsan
504
+ > * Search Engine Watch
505
+ > * Search Engine Journal
506
+
507
+ > SQUIRRLY SEO HAS BEEN FEATURED IN SOME OF THE WORLD'S MOST RENOWNED PUBLICATIONS:
508
+ >
509
+ > * Search Engine Watch
510
+ > * Search Engine Journal
511
+ > * QuickSprout
512
+ > * Backlinko
513
+ > * WP Engine
514
+ > * Business Insider
515
+ > * Kinsta
516
+ > * Elegant Themes
517
+ > * WP Mayor
518
+ > * Theme Expert
519
+ > * Tech Crunch
520
+ > * SEO Hacker
521
+ > * Forbes
522
+ > * Wall Street Journal
523
+ > * Clickz.com
524
+ > * Innovation Labs
525
+ > * Delivering Happiness
526
+ > * Boston.com
527
+ > * Manage WP
528
+ > * TechNation.io
529
+ > * TechHub.com
530
+ > * Spotify
531
+ > * Gartner
532
+ > * EDB-GOV-Singapore
533
+
534
+ = Branding Guideline =
535
+
536
+ SQUIRRLY&reg; is a registered trademark of <a title="Squirrly Company" href="https://www.squirrly.co/more/">Squirrly Limited</a>. When writing about the WordPress SEO plugin by Squirrly, please use the following format.
537
+
538
+ * Squirrly SEO (correct)
539
+ * SEO by Squirrly (incorrect)
540
+ * SEO Squirrly (incorrect)
541
+ * Squirrel SEO (incorrect)
542
+ * Squirrely SEO (incorrect)
543
+ * Squirrelly SEO (incorrect)
544
+ * Squirly SEO (incorrect)
545
+
546
+ = What's Next =
547
+
548
+ If you like our WordPress SEO plugin, then consider checking out our other projects:
549
+
550
+ * <a title="Squirrly Social" href="https://www.squirrly.co/social-media/tools-for-digital-marketing/">Squirrly Social</a> - One Year of Social Media Posts in a Flash.
551
+ * <a title="Starbox PRO" href="https://starbox.squirrly.co/">Starbox PRO</a> - Your Authors Will Shine Like Stars.
552
+ * <a title="Squirrly SPY" href="https://www.squirrly.co/seo/spy/">Squirrly SPY</a> - Your Competitor’s SEO Growth. In Your Hands..
553
+ * <a title="Education Cloud PLUS" href="https://www.squirrly.co/learning/education-cloud/">Education Cloud PLUS</a> - It's like Netflix for Marketing Education.
554
+ * <a title="RankJumps" href="https://www.squirrly.co/rankjumps/">RankJumps</a> - Managed SEO. Done-for-you by Experts from Squirrly.
555
+ * <a title="Learning Solutions" href="https://www.squirrly.co/learning/solutions/">Learning Solutions by Squirrly</a> - Teach Online. Starting Tomorrow.
556
+ * <a title="Hide My WP Ghost" href="https://www.squirrly.co/wordpress/plugins/hide-my-wp/">Hide My WP Ghost</a> - WordPress Security Layer and Security Enhancements.
557
+ * <a title="For Developers who use this CMS" href="https://www.squirrly.co/wordpress/">WordPress Developers Page</a> - Innovations and Partnerships.
558
+ * <a title="Plugins for WordPress" href="https://www.squirrly.co/wordpress/plugins/">Plugins</a> - Other Plugins created by Squirrly.
559
+
560
+
561
+ <h3>Need Help Getting Started?</h3>
562
 
563
+ <a title="How to Install SEO Plugin by Squirrly?" href="https://howto.squirrly.co/kb/install-squirrly-seo-plugin/">How to Install Squirrly</a>
564
+
565
+ <a title="First Steps" href="https://howto.squirrly.co/wordpress-seo/first-steps-to-setup-squirrly-seo-plugin/">First steps to set up the Squirrly SEO plugin.</a>
566
+
567
+ How to Start Using the Non-Human SEO Consultant for Advanced WordPress SEO Marketing - <a title="Watch Video" href="https://www.youtube.com/watch?v=drRVRBFYUKA">play VIDEO</a>
568
+
569
+ <a title="How to Use Squirrly SEO" href="https://howto.squirrly.co/">Complete Knowledge Base</a> - A-Z tutorials on how to use every feature from the Squirrly SEO plugin.
570
+
571
+ <a title="More FAQ resources" href="https://howto.squirrly.co/faq/">Frequently Asked Questions</a> - Find answers to common questions about the Squirrly SEO plugin.
572
+
573
+ <a title="Facebook Group" href="https://www.facebook.com/groups/SquirrlySEOCustomerService">JourneyTeam</a> - A Facebook group where members of our community can ask questions, share knowledge, and learn from one another as they progress on their SEO Journey.
574
+
575
+ Excellent Customer Support - even on the free plan. Our dedicated support team is ready to help you with all your technical issues or questions regarding the Squirrly SEO plugin, and can be reached by live chat (Facebook Messenger), email, and support form.
576
+
577
+ <h3>MORE</h3>
578
+
579
+ <a title="WP SEO News" href="https://www.squirrly.co/digital-marketing/wordpress/">Squirrly Blog</a>. Get the latest news on Squirrly SEO.
580
+
581
+ <a title="Roadmap of WordPress SEO Plugin by Squirrly" href="https://squirrly.feedbear.com/roadmap">Official Roadmap</a>. See what we're working on and share feedback on how we can make Squirrly SEO even better for you.
582
+
583
+ <a title="Compare with Other Plugins: Yoast, AIOSEO, RankMath, SEOpress" href="https://plugin.squirrly.co/compare/">Compare</a>. See how the Squirrly SEO stacks up against its competitors, other WordPress SEO plugins: including Rank Math, Yoast SEO, SEOPress, and All in One SEO.
584
+
585
+ <a title="Full List of Features" href="https://www.squirrly.co/wordpress/plugins/seo/">Full List of Features.</a> Complete feature list. Learn more about all SEO Tools within Squirrly SEO - the complete SEO plugin for WordPress.
586
+
587
+ ★★★★★
588
  We've truly made SEO Uncomplicated.
589
 
590
 
654
  9. Squirrly SEO - Progress & Achievements
655
 
656
  == Changelog ==
657
+ = 11.1.07- 08/05/2021 =
658
+ Update - Added compatibility with UiPress plugin
659
+ Update - Add Google Analytics property option select in Squirrly SEO plugin
660
+ Update - Added the mark for frontend Elementor editor
661
+ Update - Compatibility with WP 5.8
662
+ Fix - Author URL warning in the profile page
663
+ Fix - Remove Noindex and Nofollow for empty terms as it doesn't work on all situations. Will be added as a plugin option on the new UX.
664
+
665
  = 11.1.06- 07/13/2021 =
666
  Update - Compatibility with Divi and Fusion plugins
667
  Update - Update Readme file and plugin description
1060
 
1061
  == Frequently Asked Questions ==
1062
 
1063
+ = Can I use Squirrly together with Rank Math? Could I replace Rank Math altogether with Squirrly? =
1064
+ Yes, you can use Squirrly SEO alongside Rank Math if you want to, as Squirrly enables you to deactivate certain settings or modules so that Squirrly SEO and Rank Math can work in compatibility mode.
1065
+
1066
+ If Squirrly stops handling source code changes, then it works with Rank Math, SEOpress, All In One SEO SEO, Yoast, and others. Regarding whether you could replace Rank Math altogether with Squirrly SEO, this graphic linked below shows you a side-by-side comparison of Squirrly SEO vs. Rank Math.
1067
+
1068
+ There are around 650 features in Squirrly SEO, most of which can’t be found in Rank Math, given that Rank Math does not offer a duality between plugin and cloud services.
1069
+
1070
+ https://howto.squirrly.co/wordpress-seo/use-squirrly-in-compatibility-mode-with-other-seo-plugins/
1071
+
1072
+ https://plugin.squirrly.co/compare/#vsrankmath
1073
+
1074
+ = Can we import data from Rank Math into Squirrly SEO? =
1075
+ Yes, you can easily import all settings and all page optimizations made with Rank Math, using our import features. This provides step-by-step documentation on how to migrate your data from Rank Math so that you don’t lose your previous SEO optimization.
1076
+
1077
+ https://howto.squirrly.co/wordpress-seo/how-to-switch-from-rank-math-to-squirrly-seo/
1078
+
1079
+ = Are Focus Pages similar to Pillar Content in Rank Math? =
1080
+ You can search for “focus pages” on this page:
1081
+
1082
+ https://www.squirrly.co/wordpress/plugins/second-seo-features-page/
1083
+
1084
+ You will see there all that it offers. It is incredibly valuable for SEO and does everything required for SEO, unlike the pillar feature in Rank Math. It offers more than even Moz or Ahrefs does in terms of content analysis.
1085
+
1086
+ Side by side comparison: Squirrly SEO versus Rank Math
1087
+
1088
+ https://plugin.squirrly.co/compare/#vsrankmath
1089
+
1090
+ Powered by advanced cloud servers owned by the Squirrly Company, the MarketIntelligence big data analysis we do, and data sources like: Moz, Majestic, Alexa, Semrush, Google Analytics, ContentLook, crawlers owned by Squirrly: we are in a unique position that allows us to do in-depth content analysis and see each page the same way that Google’s algorithms see it.
1091
+
1092
+ = How does Squirrly, marketing and marketshare wise, compete with SEOPress, Rank Math, All in One SEO? =
1093
+ We have been around since 2012 and we’ve validated over 17 products already with money paid by customers. There are few startups that could show the same results.
1094
+
1095
+ Get a more detailed response here.
1096
+
1097
+ https://howto.squirrly.co/faq/how-does-squirrly-marketing-and-marketshare-wise-compete/
1098
+
1099
+ = Can the Squirrly SEO plugin be used together with Yoast, SEOPress, Rank Math, Premium SEO Pack, All in One SEO, SEO Framework? =
1100
+ Yes, you can use Squirrly SEO alongside other SEO plugins like Yoast, Rank Math, SEO Press, Premium SEO Pack, All in One SEO, or SEO Framework in compatibility mode.
1101
+
1102
+ You can learn more about how to use Squirrly SEO in compatibility mode here.
1103
+
1104
+ https://howto.squirrly.co/wordpress-seo/use-squirrly-in-compatibility-mode-with-other-seo-plugins/
1105
+
1106
+ If Squirrly stops handling source code changes, then it works with Rank Math, SEOpress, SEO Pressor, All in One SEO, Yoast, SEO Framework, and others.
1107
+
1108
+ Basically, you can use Squirrly SEO to power up WP on top of everything that is already handled by the other WordPress SEO plugin you’re using. Of course, you can also decide to switch to Squirrly, as it offers the complete SEO funnel.
1109
+
1110
+ Check out these graphics
1111
+
1112
+ https://plugin.squirrly.co/compare/
1113
+
1114
+ to see how Squirrly compares to other SEO plugins such as Yoast, Rank Math, SEOPress, SEO Framework, and All in One SEO.
1115
+
1116
+ = How does Squirrly compare with plugins like SEO Framework, SEO Press, Rank Math, All in one SEO, or Yoast in terms of site speed and pagespeed? =
1117
+ Most of the processing, data storage, and other things that only Squirrly SEO can do, are actually things that happen on our Cloud Servers. The duality between plugin and Cloud Services (APIs, crawlers, big data, A.I., MarketIntelligence services) allows us to load the plugin’s code very fast.
1118
+
1119
+ The duality between SEO plugin and Cloud Services gives us an advantage over other WordPress SEO plugins like SEO Framework, SEO Press, Rank Math, All in One SEO, Rank Math, and Yoast.
1120
+
1121
+ More about this here.
1122
+
1123
+ https://howto.squirrly.co/faq/how-does-squirrly-compare-site-speed/
1124
+
1125
+ = Does Squirrly SEO Have a Redirection feature? =
1126
+ Yes, Squirrly does provide redirection functionality. Squirrly SEO has a 301 Redirect option. The 301 Redirection Option can now be found in All Snippets in the Visibility section of Squirrly SEO.
1127
+
1128
+ Snippets in All Snippet Bulk SEO
1129
+ Snippet when Editing Page
1130
+ Snippet on the Front-End
1131
+
1132
+ It’s a new way of doing re-directs and complements our automatic redirection feature.
1133
+
1134
+ https://howto.squirrly.co/kb/seo-links/
1135
+
1136
+ = Is there a Way to Remove the no-index Pages from the XML Sitemap? =
1137
+ Yes, you can use Squirrly SEO to remove the no-index pages from the XML sitemap.
1138
+
1139
+ You can do this by post type using the SEO Settings > Automation functionality. Simply select the post type and switch off: “Include In XML Sitemap”.
1140
+
1141
+ More details about how to remove no-index pages from the XML sitemap can be seen here.
1142
+
1143
+ https://howto.squirrly.co/kb/seo-automation/#send_to_sitemap
1144
+
1145
+ Or you can remove the no-index pages from the xml sitemap at an URL level by editing the SEO Snippet and then selecting “Visibility”.
1146
+
1147
+ More details about this xml sitemap option can be seen here.
1148
+
1149
+ https://howto.squirrly.co/kb/bulk-seo/#bulk_seo_visibility
1150
+
1151
+ = Does WordPress SEO Plugin by Squirrly Have an Option for submitting new URLs to Google Search Console to be Indexed? =
1152
+ Yes, Squirrly has an option that helps with submitting new URLs to Google Search Console, namely the: Ping New Posts to Search Engine option.
1153
+
1154
+ More details about this here.
1155
+
1156
+ https://howto.squirrly.co/kb/sitemap-xml-settings/
1157
+
1158
+ = What Special Features Does SEO Plugin by Squirrly Offer for Local SEO? =
1159
+ Squirrly provides Schema for Local Business. Coordinates, hours, menus, etc. are available. You can learn more about this here.
1160
+
1161
+ https://howto.squirrly.co/kb/json-ld-structured-data/
1162
+
1163
+ Meta Data for GEO and Location Especially helpful for Local SEO and Knowledge Graph
1164
+
1165
+ Add Coordinates for Local SEO and add the address of your main location.
1166
+ This will be used for your Organization and for Publisher details within your WordPress site.
1167
+
1168
+ Schema for Local SEO can now be built directly from WordPress – Squirrly – SEO Settings – JSON-LD.
1169
+
1170
+ For multiple locations, you can build the Schema using the Editor we give access to and the Custom Code option for Schema.
1171
+
1172
+ We’ve even added KML files recently so you can easily add your local business to Google Earth and our integration actually works.
1173
+
1174
+ = What Dedicated Features Does Squirrly Offer for News Websites? =
1175
+ - Build XML Sitemap for Google News (you can learn more about this here)
1176
+ - XML Sitemap Settings: Blogging Frequency. You have the option to select Every Day as your blogging frequency or even Every Hour.
1177
+ - Ping New Posts to Search Engines. Pinging is a process by which Squirrly SEO can notify search engines that your xml sitemap has been updated.
1178
+ - Open Graph Type for Google News NewsArticle
1179
+ - Schema for Google News
1180
+
1181
+ https://howto.squirrly.co/kb/sitemap-xml-settings/#news_sitemap
1182
+
1183
+ = With Squirrly, can specific pictures for social media shares of pages and posts be used? =
1184
+ Yes, you can customize the Open Graph and Twitter Card image for every page and post using Bulk SEO or the Squirrly SEO Snippet.
1185
+
1186
+ You can learn more about these features here.
1187
+
1188
+ https://howto.squirrly.co/kb/bulk-seo/
1189
+
1190
+ = How is Squirrly Addressing the Core Web Vitals SEO Scoring Method? =
1191
+ Squirrly is addressing them with Focus Pages.
1192
+
1193
+ Page experience has been one of the main reasons we’ve created Focus Pages and it goes a little beyond just pagespeed and coding propriety.
1194
+
1195
+ Time on page, bounce rates, number of pages visited are also very important and we’re getting clear signals that their importance is shifting.
1196
+
1197
+ We already address pagespeed and https and give resources to our users, so they are prepared for the update.
1198
+
1199
+ https://howto.squirrly.co/kb/focus-pages-page-audits/
1200
+
1201
+ = What is the advantage of using Squirrly’s keyword research tool instead of using an external tool for this? =
1202
+ Squirrly’s built-in keyword research tool allows you to perform keyword research without leaving WordPress.
1203
+
1204
+ Furthermore, Squirrly also provides access to features like Briefcase, which means you can not only find keywords but also organize them into tighter groups for a better strategy. Furthermore, our keyword research data is fresh, since we don’t use caching (cached databases).
1205
+
1206
+ Maximum caching time is about 48 hours, not a whole year or two years like you find in other tools.
1207
+
1208
+ As we use Google API for search volume, Social Media for discussions, the data should be fresh every time and this is why it is different from others – and also why the data we show is different from what you may find in other keyword research tools who use caching for their data. (caching time can be extremely high for some of those tools).
1209
+
1210
+ https://howto.squirrly.co/kb/keyword-research-and-seo-strategy/
1211
+
1212
+ = Can you guarantee SEO results? =
1213
+ If you follow what we outline here, then yes. We will guarantee (please read the following resource):
1214
+
1215
+ https://plugin.squirrly.co/squirrly-seo-pro-results-guarantee/
1216
 
1217
  = Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies? =
1218
 
squirrly.php CHANGED
@@ -8,7 +8,7 @@
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly SEO
10
  * Author URI: https://plugin.squirrly.co
11
- * Version: 11.1.06
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
@@ -17,9 +17,9 @@
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
- define('SQ_VERSION', '11.1.06');
21
  //The last stable version
22
- define('SQ_STABLE_VERSION', '11.1.05');
23
  // Call config files
24
  try {
25
  require_once(dirname(__FILE__) . '/config/config.php');
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly SEO
10
  * Author URI: https://plugin.squirrly.co
11
+ * Version: 11.1.07
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
+ define('SQ_VERSION', '11.1.07');
21
  //The last stable version
22
+ define('SQ_STABLE_VERSION', '11.1.06');
23
  // Call config files
24
  try {
25
  require_once(dirname(__FILE__) . '/config/config.php');
view/Blocks/Account.php CHANGED
@@ -1,19 +1,7 @@
1
  <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
  <?php
3
  $whole = $decimal = 0;
4
- if (isset($view->checkin->subscription_devkit) && $view->checkin->subscription_devkit) {
5
- ?>
6
- <div class="card-text col-12 p-0 m-0 border-0">
7
- <div class="author">
8
- <i class="avatar sq_icons sq_icon_package"></i>
9
- </div>
10
- <div class="title mt-4 mb-0 text-center">
11
- <h6><?php echo esc_html__("Account Info Unavailable", _SQ_PLUGIN_NAME_) ?></h6>
12
- </div>
13
- </div>
14
- <?php
15
- return;
16
- }
17
  if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
18
  list($whole, $decimal) = explode('.', number_format($view->checkin->product_price, 2, '.', ','));
19
  }
1
  <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
  <?php
3
  $whole = $decimal = 0;
4
+
 
 
 
 
 
 
 
 
 
 
 
 
5
  if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
6
  list($whole, $decimal) = explode('.', number_format($view->checkin->product_price, 2, '.', ','));
7
  }
view/Connect/GoogleAnalytics.php CHANGED
@@ -36,7 +36,7 @@ $connect = json_decode(wp_json_encode(SQ_Classes_Helpers_Tools::getOption('conne
36
  <input type="hidden" name="action" value="sq_seosettings_ga_save"/>
37
  <select name="property_id" class="d-inline-block m-0 p-1" onchange="if(confirm('Do you select this property?')){jQuery('form#sq_ga_property_form').submit();}">
38
  <?php foreach ($properties as $property) { ?>
39
- <option <?php echo(($property->property_id == $property_id) ? 'selected="selected"' : '') ?> value="<?php echo $property->property_id ?>"><?php echo $property->website_url; ?></option>
40
  <?php } ?>
41
  </select>
42
  </form>
36
  <input type="hidden" name="action" value="sq_seosettings_ga_save"/>
37
  <select name="property_id" class="d-inline-block m-0 p-1" onchange="if(confirm('Do you select this property?')){jQuery('form#sq_ga_property_form').submit();}">
38
  <?php foreach ($properties as $property) { ?>
39
+ <option <?php echo(($property->property_id == $property_id) ? 'selected="selected"' : '') ?> value="<?php echo $property->property_id ?>"><?php echo $property->website_url; ?> (<?php echo $property->ga_id ?>)</option>
40
  <?php } ?>
41
  </select>
42
  </form>