Created
May 3, 2024 15:38
-
-
Save lazarinastoy/f7616b8e6bc82cc94bfa494f0bbebe23 to your computer and use it in GitHub Desktop.
Reddit scraping - JSON input to CSV.ipynb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "nbformat": 4, | |
| "nbformat_minor": 0, | |
| "metadata": { | |
| "colab": { | |
| "provenance": [], | |
| "authorship_tag": "ABX9TyNox3+mXRQMoIlz3VryKRkZ", | |
| "include_colab_link": true | |
| }, | |
| "kernelspec": { | |
| "name": "python3", | |
| "display_name": "Python 3" | |
| }, | |
| "language_info": { | |
| "name": "python" | |
| } | |
| }, | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "metadata": { | |
| "id": "view-in-github", | |
| "colab_type": "text" | |
| }, | |
| "source": [ | |
| "<a href=\"https://colab.research.google.com/gist/lazarinastoy/f7616b8e6bc82cc94bfa494f0bbebe23/reddit-scraping-json-input-to-csv.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "source": [ | |
| "This code scrapes the content from a reddit URL from a JSON version of the URL via copy-paste.\n", | |
| "\n", | |
| "Go to any Reddit URL, and append to it \".json\" like below:\n", | |
| "\n", | |
| "https://www.reddit.com/r/SEO/.json\n", | |
| "\n", | |
| "Then, copy-paste the content from the JSON you see on the screen, into the script when prompted.\n", | |
| "\n", | |
| "The function will return a CSV file with the author name and the text of their reddit post.\n" | |
| ], | |
| "metadata": { | |
| "id": "ox_eKgMqF31A" | |
| } | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 8, | |
| "metadata": { | |
| "colab": { | |
| "base_uri": "https://localhost:8080/" | |
| }, | |
| "id": "WkQeFaPmDRe0", | |
| "outputId": "f6b8ead9-7ac1-45a4-8c02-724df4d0d64c" | |
| }, | |
| "outputs": [ | |
| { | |
| "output_type": "stream", | |
| "name": "stdout", | |
| "text": [ | |
| "Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (2.31.0)\n", | |
| "Requirement already satisfied: pandas in /usr/local/lib/python3.10/dist-packages (2.0.3)\n", | |
| "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests) (3.3.2)\n", | |
| "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests) (3.7)\n", | |
| "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests) (2.0.7)\n", | |
| "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests) (2024.2.2)\n", | |
| "Requirement already satisfied: python-dateutil>=2.8.2 in /usr/local/lib/python3.10/dist-packages (from pandas) (2.8.2)\n", | |
| "Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas) (2023.4)\n", | |
| "Requirement already satisfied: tzdata>=2022.1 in /usr/local/lib/python3.10/dist-packages (from pandas) (2024.1)\n", | |
| "Requirement already satisfied: numpy>=1.21.0 in /usr/local/lib/python3.10/dist-packages (from pandas) (1.25.2)\n", | |
| "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.8.2->pandas) (1.16.0)\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "#install libraries\n", | |
| "!pip install requests pandas\n" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "source": [ | |
| "The code is a Python script that facilitates the conversion of JSON data into a CSV file format. It comprises two primary functions:\n", | |
| "\n", | |
| "extract_components(json_data): This function takes JSON data as input and extracts specific components from it. It expects the JSON data to be in a certain structure, where the desired components (selftext and author) are nested under the keys data and children. For each child object under children, it retrieves the selftext and author fields and stores them in a list of dictionaries.\n", | |
| "json_to_csv(json_input, output_file): This function orchestrates the conversion process. It takes two parameters: json_input, which represents the JSON data input as a string, and output_file, which specifies the filename for the resulting CSV file. Inside this function, it first calls extract_components() to extract the relevant components from the JSON input. Then, it converts the extracted components into a Pandas DataFrame and saves it to a CSV file using the to_csv() function provided by Pandas.\n", | |
| "In the main body of the script:\n", | |
| "\n", | |
| "The user is prompted to paste JSON content.\n", | |
| "The JSON input is read as a string.\n", | |
| "The json_to_csv() function is called with the JSON input and the desired output file name.\n", | |
| "Upon execution, the script saves the extracted selftext and author components from the JSON data into a CSV file named output.csv, providing feedback to the user upon completion.\n", | |
| "\n" | |
| ], | |
| "metadata": { | |
| "id": "AlBOpEFnGWBj" | |
| } | |
| }, | |
| { | |
| "cell_type": "code", | |
| "source": [ | |
| "import pandas as pd\n", | |
| "import json\n", | |
| "\n", | |
| "def extract_components(json_data):\n", | |
| " data = json.loads(json_data)\n", | |
| " components = []\n", | |
| " for child in data['data']['children']:\n", | |
| " selftext = child['data']['selftext']\n", | |
| " author = child['data']['author']\n", | |
| " components.append({'selftext': selftext, 'author': author})\n", | |
| " return components\n", | |
| "\n", | |
| "def json_to_csv(json_input, output_file):\n", | |
| " components = extract_components(json_input)\n", | |
| " df = pd.DataFrame(components)\n", | |
| " df.to_csv(output_file, index=False)\n", | |
| " print(f\"Data saved to {output_file}\")\n", | |
| "\n", | |
| "# Prompt the user to paste the JSON content\n", | |
| "print(\"Please paste the JSON content and press Enter:\")\n", | |
| "json_input = input()\n", | |
| "\n", | |
| "# Define the output file name\n", | |
| "output_file = 'output.csv'\n", | |
| "\n", | |
| "# Call the function with the pasted JSON content\n", | |
| "json_to_csv(json_input, output_file)\n", | |
| "\n" | |
| ], | |
| "metadata": { | |
| "colab": { | |
| "base_uri": "https://localhost:8080/" | |
| }, | |
| "id": "rg5SdwbODrn0", | |
| "outputId": "19e79c15-d391-477b-c2c8-b2110e055590" | |
| }, | |
| "execution_count": 7, | |
| "outputs": [ | |
| { | |
| "output_type": "stream", | |
| "name": "stdout", | |
| "text": [ | |
| "Please paste the JSON content and press Enter:\n", | |
| "{ \"kind\": \"Listing\", \"data\": { \"after\": \"t3_1cj3lxq\", \"dist\": 26, \"modhash\": \"z4k8sg2tp725232288c4157893c12543379f1c9e74694bbeac\", \"geo_filter\": null, \"children\": [ { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"I see a lot from SGE taking over, AI-based search engines (e.g. OpenAI), some really odd ones that PR=Future of SEO (???) - any good predictions, weird ones, ones to look out for, ones to avoid?\\n\\nWho are the best commentators and predictors?\\n\\n* Future of SEO and AI\\n* HCU and March updates\\n* SEO best practices\\n\\n&#x200B;\\n\\n&#x200B;\\n\\n&#x200B;\", \"author_fullname\": \"t2_3622nj09\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"{Weekly Discussion} What SEO predictions or predictors are you watching in 2024?\", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Meta\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cc6se4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.89, \"author_flair_background_color\": \"#8accff\", \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": \"977bd948-a5df-11ee-9025-ae94a8ec6e63\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Meta\", \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [ { \"a\": \":Success:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/vb8wvajjwq6c1_t5_2qhbx/Success\" }, { \"e\": \"text\", \"t\": \" Verified - Weekly Contributor \" } ], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1713985910, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>I see a lot from SGE taking over, AI-based search engines (e.g. OpenAI), some really odd ones that PR=Future of SEO (???) - any good predictions, weird ones, ones to look out for, ones to avoid?</p>\\n\\n<p>Who are the best commentators and predictors?</p>\\n\\n<ul>\\n<li>Future of SEO and AI</li>\\n<li>HCU and March updates</li>\\n<li>SEO best practices</li>\\n</ul>\\n\\n<p>&#x200B;</p>\\n\\n<p>&#x200B;</p>\\n\\n<p>&#x200B;</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"cd536870-0049-11e8-a028-0ece3e2b806a\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \":Success: Verified - Weekly Contributor \", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cc6se4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WebLinkr\", \"discussion_type\": null, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/SEO/comments/1cc6se4/weekly_discussion_what_seo_predictions_or/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/SEO/comments/1cc6se4/weekly_discussion_what_seo_predictions_or/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1713985910, \"num_crossposts\": 2, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"So.. I know a bit about SEO. I suppose it’s mainly creating very good content for the right market, getting backlinks and a bit of on-page and technicalities… my question is:\\n\\nHaving all that done well, is SEO still a great strategy to start today?\\n\\nI personally barely use google anymore to search, but I shouldn’t think my persona is like me.\\n\\nThe frustrating thing on subreddits is that every sub about digital marketing seems to be black-pilled and filled with “nothing works” mindset. It’s hard to know what’s true \\n\\n\", \"author_fullname\": \"t2_9qw0zx15\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Too late to start SEO?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj12i7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714714512, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>So.. I know a bit about SEO. I suppose it’s mainly creating very good content for the right market, getting backlinks and a bit of on-page and technicalities… my question is:</p>\\n\\n<p>Having all that done well, is SEO still a great strategy to start today?</p>\\n\\n<p>I personally barely use google anymore to search, but I shouldn’t think my persona is like me.</p>\\n\\n<p>The frustrating thing on subreddits is that every sub about digital marketing seems to be black-pilled and filled with “nothing works” mindset. It’s hard to know what’s true </p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj12i7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Lanky-Football857\", \"discussion_type\": null, \"num_comments\": 74, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj12i7/too_late_to_start_seo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj12i7/too_late_to_start_seo/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714714512, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"According to GS Statcounter, Google's market share is now 86.94%, the lowest percentage since they started recording search engine share in 2009. That equates to a more than 4% decline from the previous month, **the largest single-month drop recorded**, by far.\\n\\nEven more impressive is the collapse in market share in their most important market, the United States. In April, Google had 77.46 of U.S. searches across all devices, **a massive drop of almost 10% from the previous month.** Over the same period, Bing has climbed to 13% market share in the U.S. and 5.8% globally (their highest market share since entering the search engine game in 2009).\\n\\nYahoo Search also seems to be doing surprisingly well out of all this with their share almost tripling to 3.09% worldwide (highest since July 2015).\\n\\nWhile there is never going to be 100% consensus among the wider SEO community, I think many of us can agree that Google's search results have grown objectively worse over the past few years, a process of - potentially deliberate - enshitification that, in my opinion, has accelerated exponentially since the latest update. It has gotten so bad that for the first time in my over 10 years working in SEO, I am hearing average-joe internet users complain about the state of their search results on a daily basis.\\n\\nIt would seem that Sundar Pichai and his cronies believe Google's market dominance to be unassailable, regardless of how rotten their core product continues to grow, how many long-time employees they give the boot or jobs they ship overseas. As long as the stock continues to pump and Pichai can add himself to Billionaire row, that's what matters.\\n\\nFor all of you who have, up to now, believed that showing Google the middle finger is a gesture in futility, **these latest statistics prove that we can make our voices heard.** Imagine if the same happens this month (not an unreasonable idea) and Google loses a further 10% market share in its primary market. 90% market dominance might look invincible; shrink that to <70% and Google might find themselves quickly regretting their near-sighted approach.\\n\\nWe have an opportunity now to send a message to Google. To tell them that we will not sit by idly while they destroy businesses and livelihoods; while they play the blame game and accuse *us* of being the ones who are producing a poor product that doesn't align with user intent; while they scrape our content to feed their AI machine and simultaneously lock us out from the SERPS; while well-researched, labor-intensive, and passion-infused blogs and articles are not even ranking in the top 100 but a generic Forbes article that mentions the KW once, a Reddit thread with single-digit upvotes and Quora spam dominates the top spots.\\n\\nSo tell your friends, tell your family, tell everyone you know that there are alternatives to Google. Bing, Yahoo, DuckDuckGo, it doesn't matter. Even if we only switch temporarily, to show that we will not accept this new status quo that they are trying to force upon us. Despite what their recent stock performance might lead you to believe, **Google has never been more vulnerable.** I, for one, am very interested to see what happens if Google loses as much market share in May as they did in April...\", \"author_fullname\": \"t2_upod3itd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Google market share falls to lowest point in over 15 years...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cidnwe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 345, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 345, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714650554, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>According to GS Statcounter, Google&#39;s market share is now 86.94%, the lowest percentage since they started recording search engine share in 2009. That equates to a more than 4% decline from the previous month, <strong>the largest single-month drop recorded</strong>, by far.</p>\\n\\n<p>Even more impressive is the collapse in market share in their most important market, the United States. In April, Google had 77.46 of U.S. searches across all devices, <strong>a massive drop of almost 10% from the previous month.</strong> Over the same period, Bing has climbed to 13% market share in the U.S. and 5.8% globally (their highest market share since entering the search engine game in 2009).</p>\\n\\n<p>Yahoo Search also seems to be doing surprisingly well out of all this with their share almost tripling to 3.09% worldwide (highest since July 2015).</p>\\n\\n<p>While there is never going to be 100% consensus among the wider SEO community, I think many of us can agree that Google&#39;s search results have grown objectively worse over the past few years, a process of - potentially deliberate - enshitification that, in my opinion, has accelerated exponentially since the latest update. It has gotten so bad that for the first time in my over 10 years working in SEO, I am hearing average-joe internet users complain about the state of their search results on a daily basis.</p>\\n\\n<p>It would seem that Sundar Pichai and his cronies believe Google&#39;s market dominance to be unassailable, regardless of how rotten their core product continues to grow, how many long-time employees they give the boot or jobs they ship overseas. As long as the stock continues to pump and Pichai can add himself to Billionaire row, that&#39;s what matters.</p>\\n\\n<p>For all of you who have, up to now, believed that showing Google the middle finger is a gesture in futility, <strong>these latest statistics prove that we can make our voices heard.</strong> Imagine if the same happens this month (not an unreasonable idea) and Google loses a further 10% market share in its primary market. 90% market dominance might look invincible; shrink that to &lt;70% and Google might find themselves quickly regretting their near-sighted approach.</p>\\n\\n<p>We have an opportunity now to send a message to Google. To tell them that we will not sit by idly while they destroy businesses and livelihoods; while they play the blame game and accuse <em>us</em> of being the ones who are producing a poor product that doesn&#39;t align with user intent; while they scrape our content to feed their AI machine and simultaneously lock us out from the SERPS; while well-researched, labor-intensive, and passion-infused blogs and articles are not even ranking in the top 100 but a generic Forbes article that mentions the KW once, a Reddit thread with single-digit upvotes and Quora spam dominates the top spots.</p>\\n\\n<p>So tell your friends, tell your family, tell everyone you know that there are alternatives to Google. Bing, Yahoo, DuckDuckGo, it doesn&#39;t matter. Even if we only switch temporarily, to show that we will not accept this new status quo that they are trying to force upon us. Despite what their recent stock performance might lead you to believe, <strong>Google has never been more vulnerable.</strong> I, for one, am very interested to see what happens if Google loses as much market share in May as they did in April...</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cidnwe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Altruistic_Angle5908\", \"discussion_type\": null, \"num_comments\": 169, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cidnwe/google_market_share_falls_to_lowest_point_in_over/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cidnwe/google_market_share_falls_to_lowest_point_in_over/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714650554, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Google updates seem to be all the rage at the moment. Using some publicly accessible data on day-today search volatility, I thought I'd have some fun and share some useless tidbits I discovered in the data. \\n \\nIn no particular order: \\n\\n* **Total days in data set**: 2,470 days\\n* **Unique Years Covered**: 8 years, from 2017 to 2024.\\n* **Most volatile day of the week**: Thursdays, closely followed by Friday, just in time to ruin your weekend.\\n* **Least volatile day**: You experts can take Tuesdays off.\\n* **Most volatile month of the year**: August, followed by January. New year new Google. Interestingly too the most volatile holiday is New Years Eve, so Google likes to finish and start the year with a bang!\\n* **Least volatile month of the year**: Book your holidays for May.\\n* **Can you relax on weekends:** No of course not, weekends were slightly more volatile than weekdays. \\n* **December 29th, 2023:** Most volatile day recorded. \\n\\nTheory - Google is being more reactive than ever as it tries to keep up with the evolving landscape we now live in thanks to AI advancements...\\n\\n* **Volatility Changes**:\\n * **Before ChatGPT (pre-November 30, 2022)**:\\n * Average volatility: **1.81**\\n * **After ChatGPT (post-November 30, 2022)**:\\n * Average volatility: **2.35**\\n * This indicates a **29.25% increase** in average volatility after the launch of ChatGPT.\\n\\nLastly, how the years are stacking up:\\n\\n* **Yearly Volatility Comparison**:\\n * **2024**:\\n * Has the highest average volatility with a mean of **2.54**.\\n * The values in this year ranged between **2.01** and **3.11**.\\n * Standard deviation (variability) of **0.28**.\\n * **2023**:\\n * The second most volatile year, with an average volatility of **2.33**.\\n * Range of values between **1.29** and **3.92**.\\n * Standard deviation of **0.50**.\\n * **2017**:\\n * The third most volatile year, with an average volatility of **2.21**.\\n * Range of values between **1.74** and **2.86**.\\n * Standard deviation of **0.22**.\\n\\nThis is all pointless data that doesn't help anyone, but just don't take Thursdays, Fridays, weekends, or New Years Eve off. If you're interested in how I got this data ping me, it's straight forward and free. Peace and love, happy SEOing. \", \"author_fullname\": \"t2_akdrp9lz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Google Volatility Data You 100% DIDN'T Need to Know!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cj8laj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.71, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714742623, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Google updates seem to be all the rage at the moment. Using some publicly accessible data on day-today search volatility, I thought I&#39;d have some fun and share some useless tidbits I discovered in the data. </p>\\n\\n<p>In no particular order: </p>\\n\\n<ul>\\n<li><strong>Total days in data set</strong>: 2,470 days</li>\\n<li><strong>Unique Years Covered</strong>: 8 years, from 2017 to 2024.</li>\\n<li><strong>Most volatile day of the week</strong>: Thursdays, closely followed by Friday, just in time to ruin your weekend.</li>\\n<li><strong>Least volatile day</strong>: You experts can take Tuesdays off.</li>\\n<li><strong>Most volatile month of the year</strong>: August, followed by January. New year new Google. Interestingly too the most volatile holiday is New Years Eve, so Google likes to finish and start the year with a bang!</li>\\n<li><strong>Least volatile month of the year</strong>: Book your holidays for May.</li>\\n<li><strong>Can you relax on weekends:</strong> No of course not, weekends were slightly more volatile than weekdays. </li>\\n<li><strong>December 29th, 2023:</strong> Most volatile day recorded. </li>\\n</ul>\\n\\n<p>Theory - Google is being more reactive than ever as it tries to keep up with the evolving landscape we now live in thanks to AI advancements...</p>\\n\\n<ul>\\n<li><strong>Volatility Changes</strong>:\\n\\n<ul>\\n<li><strong>Before ChatGPT (pre-November 30, 2022)</strong>:\\n\\n<ul>\\n<li>Average volatility: <strong>1.81</strong></li>\\n</ul></li>\\n<li><strong>After ChatGPT (post-November 30, 2022)</strong>:\\n\\n<ul>\\n<li>Average volatility: <strong>2.35</strong></li>\\n</ul></li>\\n<li>This indicates a <strong>29.25% increase</strong> in average volatility after the launch of ChatGPT.</li>\\n</ul></li>\\n</ul>\\n\\n<p>Lastly, how the years are stacking up:</p>\\n\\n<ul>\\n<li><strong>Yearly Volatility Comparison</strong>:\\n\\n<ul>\\n<li><strong>2024</strong>:\\n\\n<ul>\\n<li>Has the highest average volatility with a mean of <strong>2.54</strong>.</li>\\n<li>The values in this year ranged between <strong>2.01</strong> and <strong>3.11</strong>.</li>\\n<li>Standard deviation (variability) of <strong>0.28</strong>.</li>\\n</ul></li>\\n<li><strong>2023</strong>:\\n\\n<ul>\\n<li>The second most volatile year, with an average volatility of <strong>2.33</strong>.</li>\\n<li>Range of values between <strong>1.29</strong> and <strong>3.92</strong>.</li>\\n<li>Standard deviation of <strong>0.50</strong>.</li>\\n</ul></li>\\n<li><strong>2017</strong>:\\n\\n<ul>\\n<li>The third most volatile year, with an average volatility of <strong>2.21</strong>.</li>\\n<li>Range of values between <strong>1.74</strong> and <strong>2.86</strong>.</li>\\n<li>Standard deviation of <strong>0.22</strong>.</li>\\n</ul></li>\\n</ul></li>\\n</ul>\\n\\n<p>This is all pointless data that doesn&#39;t help anyone, but just don&#39;t take Thursdays, Fridays, weekends, or New Years Eve off. If you&#39;re interested in how I got this data ping me, it&#39;s straight forward and free. Peace and love, happy SEOing. </p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj8laj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ptadisbanded\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj8laj/google_volatility_data_you_100_didnt_need_to_know/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj8laj/google_volatility_data_you_100_didnt_need_to_know/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714742623, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"I am new to SEO. This site is 8+ years old. Backlinks has been neglected. Last time I checked, the toxic backlink % reached 20%. Is that a pretty dangerous number? When I look at each domain/URL, they are all spammy and irrelevant to the business. I added fist ever disavow list (70ish) to Google and got the % down to 16%. It did hurt little bit of the number of good backlinks too.\\n\\nAm I doing the right thing? Should I do this regularly until it drops to an acceptable range? What is that range? Below 5%?\\n\\nBtw. I only use 5-10% of my time do SEO, so I won't have time to reach out to those site owners and ask them to remove the links. Plus those are really shady websites. Do people really try to reach out to them?\", \"author_fullname\": \"t2_dnmd6jg2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toxic backlink % keeps going up. Do you regularly add toxic domains/urls to disavow list?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj5kdi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1714733263, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714733078, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>I am new to SEO. This site is 8+ years old. Backlinks has been neglected. Last time I checked, the toxic backlink % reached 20%. Is that a pretty dangerous number? When I look at each domain/URL, they are all spammy and irrelevant to the business. I added fist ever disavow list (70ish) to Google and got the % down to 16%. It did hurt little bit of the number of good backlinks too.</p>\\n\\n<p>Am I doing the right thing? Should I do this regularly until it drops to an acceptable range? What is that range? Below 5%?</p>\\n\\n<p>Btw. I only use 5-10% of my time do SEO, so I won&#39;t have time to reach out to those site owners and ask them to remove the links. Plus those are really shady websites. Do people really try to reach out to them?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj5kdi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ok-Rule7537\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj5kdi/toxic_backlink_keeps_going_up_do_you_regularly/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj5kdi/toxic_backlink_keeps_going_up_do_you_regularly/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714733078, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Last September, our blog got hit with the hcu. That was a low blow already, but now we're practically dead after the last core update. The content we do is not in a niche and even if it was seeing that every single one of our good rankings fell into oblivion, I don't think it would have changed that much. We're back at the point from 6 years ago in a matter of 6 Months.\\n\\nAll of our income is generated by affiliate links, and since the fall of our SERPs we lost a very good chunk of that. Google Search Console also shows us, that clicks dropped off significantly. \\n\\nAny Idea why we got pushed into a chasm? The content itself is not bad at all. We follow every guideline google communicates, show authors, make the website accessible for blind people, good structure, fast solutions for problems. Only thing that is not super great are backlinks. \\n\\nI've reached the end of my SEO Knowledge.\", \"author_fullname\": \"t2_172ivj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Site lost >90% of Sistrix index in 6 Months - Don't know what to do anymore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj6mie\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.8, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714736730, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Last September, our blog got hit with the hcu. That was a low blow already, but now we&#39;re practically dead after the last core update. The content we do is not in a niche and even if it was seeing that every single one of our good rankings fell into oblivion, I don&#39;t think it would have changed that much. We&#39;re back at the point from 6 years ago in a matter of 6 Months.</p>\\n\\n<p>All of our income is generated by affiliate links, and since the fall of our SERPs we lost a very good chunk of that. Google Search Console also shows us, that clicks dropped off significantly. </p>\\n\\n<p>Any Idea why we got pushed into a chasm? The content itself is not bad at all. We follow every guideline google communicates, show authors, make the website accessible for blind people, good structure, fast solutions for problems. Only thing that is not super great are backlinks. </p>\\n\\n<p>I&#39;ve reached the end of my SEO Knowledge.</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj6mie\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Krollwut\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj6mie/site_lost_90_of_sistrix_index_in_6_months_dont/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj6mie/site_lost_90_of_sistrix_index_in_6_months_dont/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714736730, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Key information:\\n\\n•\\tRumors suggest an announcement event on May 9, 2024, at 10 a.m., with significant activity observed since last week, including hiring for events staff since January.\\n•\\tOpenAI's search engine might debut before Google I/O, potentially making Perplexity AI having more competitors. It is also noted that Microsoft banned its employees from using Perplexity AI due to security concerns.\\n•\\tThe search engine is expected to compete with Google, partially powered by Bing, aiming not to replicate Google's format but to offer a better way to find, act on, and synthesize information.\\n•\\tOpenAI's CEO Sam Altman expressed interest in revolutionizing search by leveraging large language models (LLMs) but emphasized the goal isn't to copy Google's approach.\\n\\nOther Sources: OpenAI To Launch Search Engine (seroundtable.com)\", \"author_fullname\": \"t2_n3lgm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"OpenAI is rumoured to be launching a search engine next week\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cilskr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.95, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 58, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 58, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714671695, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Key information:</p>\\n\\n<p>• Rumors suggest an announcement event on May 9, 2024, at 10 a.m., with significant activity observed since last week, including hiring for events staff since January.\\n• OpenAI&#39;s search engine might debut before Google I/O, potentially making Perplexity AI having more competitors. It is also noted that Microsoft banned its employees from using Perplexity AI due to security concerns.\\n• The search engine is expected to compete with Google, partially powered by Bing, aiming not to replicate Google&#39;s format but to offer a better way to find, act on, and synthesize information.\\n• OpenAI&#39;s CEO Sam Altman expressed interest in revolutionizing search by leveraging large language models (LLMs) but emphasized the goal isn&#39;t to copy Google&#39;s approach.</p>\\n\\n<p>Other Sources: OpenAI To Launch Search Engine (seroundtable.com)</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cilskr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Maslakovic\", \"discussion_type\": null, \"num_comments\": 29, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cilskr/openai_is_rumoured_to_be_launching_a_search/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cilskr/openai_is_rumoured_to_be_launching_a_search/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714671695, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"how do we do this? if the entire website is on wasm? is there any hope for SEO on this one? the site is made with Unity, basically think of it as a game\", \"author_fullname\": \"t2_7rb4m0g8d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SEO with wasm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cjb8vn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714749527, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>how do we do this? if the entire website is on wasm? is there any hope for SEO on this one? the site is made with Unity, basically think of it as a game</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cjb8vn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheRealDrNeko\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cjb8vn/seo_with_wasm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cjb8vn/seo_with_wasm/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714749527, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hey guys!\\n\\n I have had a Weebly website since 2013 (yes, I know :-) Thankfully, I'm ranking very well for most keywords on page 1. I own a remodeling business in Chicago and want to migrate my website to WordPress to improve the design, functionality, speed, and overall structure. The website has 165 pages, as I'm targeting a big area. I have SEO knowledge, but I'm looking for someone with more experience who can help me with 301 redirects to maintain ranking. and website design simultaneously for home,about us, services, blog and contact us. (Im keeping the same content) \\n\\nPlease recommend someone in the group who can help me with this task. I am looking for someone who can do both tasks. I'm happy to share the URL via DM.\", \"author_fullname\": \"t2_mtceg8p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need Help with SEO \", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cjapo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714748180, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hey guys!</p>\\n\\n<p>I have had a Weebly website since 2013 (yes, I know :-) Thankfully, I&#39;m ranking very well for most keywords on page 1. I own a remodeling business in Chicago and want to migrate my website to WordPress to improve the design, functionality, speed, and overall structure. The website has 165 pages, as I&#39;m targeting a big area. I have SEO knowledge, but I&#39;m looking for someone with more experience who can help me with 301 redirects to maintain ranking. and website design simultaneously for home,about us, services, blog and contact us. (Im keeping the same content) </p>\\n\\n<p>Please recommend someone in the group who can help me with this task. I am looking for someone who can do both tasks. I&#39;m happy to share the URL via DM.</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cjapo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"squad1984\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cjapo9/need_help_with_seo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cjapo9/need_help_with_seo/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714748180, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"What do you think the consultant is trying to do? In the beginning i explained the goals. Therefore expected them to suggest me keywords. But why do they ask me? Is it a normal practice? What you suggest i should do? \", \"author_fullname\": \"t2_z3io2c2zv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"My SEO consultant keeps asking for keywords in batches of 3-4 keywords \", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Help\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cjanhs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Help\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714748026, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>What do you think the consultant is trying to do? In the beginning i explained the goals. Therefore expected them to suggest me keywords. But why do they ask me? Is it a normal practice? What you suggest i should do? </p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"925f10f2-0049-11e8-9509-0ebba09be652\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cjanhs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Saiyyidi\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cjanhs/my_seo_consultant_keeps_asking_for_keywords_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cjanhs/my_seo_consultant_keeps_asking_for_keywords_in/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714748026, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Suppose we have to publish more that 15 blogs in a month and the developer said you should publish each blogs using **elementor** not with **classis editor.**\", \"author_fullname\": \"t2_jcbifl5xc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \" is posting blogs using page builders like elementor a good for seo? \", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Help\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj5nr8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Help\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714733424, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Suppose we have to publish more that 15 blogs in a month and the developer said you should publish each blogs using <strong>elementor</strong> not with <strong>classis editor.</strong></p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"925f10f2-0049-11e8-9509-0ebba09be652\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj5nr8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aashirvad_seo\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj5nr8/is_posting_blogs_using_page_builders_like/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj5nr8/is_posting_blogs_using_page_builders_like/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714733424, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hi everyone! I just want to ask for any tips on how to write meta descriptions for sellers or manufacturers on an e-commerce website. Should I add our keywords to it or not? Any tips would be greatly appreciated \", \"author_fullname\": \"t2_lunxbhfp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Meta Description For Seller Page in E-commerce website\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cj9my6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714745422, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi everyone! I just want to ask for any tips on how to write meta descriptions for sellers or manufacturers on an e-commerce website. Should I add our keywords to it or not? Any tips would be greatly appreciated </p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj9my6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hookages\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj9my6/meta_description_for_seller_page_in_ecommerce/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj9my6/meta_description_for_seller_page_in_ecommerce/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714745422, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hello, \\nI own 2 websites mainly related to tech news, one of the websites is more on geek topics (Video Games, Streaming, AI, Hardware) and one website is on gadgets, mobile phones, and mobile software. Both sites are currently using Foxiz from ThemeForest, and I'm completely satisfied with the design, but in terms of performance and SEO, I don't know what to say, as if we're losing a lot because we're using this theme. \\nWe are thinking of changing the themes with something that is more optimized for SEO and in terms of loading speed. The website on geekier topics is also hit by the HCU update from September, maybe a change now would help us, even if we know that the wordpress theme does not matter much. \\nI want to change the theme to something modern but also easy to customize and optimize. I am thinking of the following solutions.\\n\\n* SmartMag by ThemeSphere\\n* Newspaper by TagDiv\\n* Jannah by Tielabs\\n* Jnews by jegtheme\\n* Zeen by Codetipi\\n\\nThere are many sites that use Newspaper by TagDiv, but the design is very outdated. SmartMag is very fast and has some interesting settings, Jannah as well as Newspaper, outdated. I was thinking about Kadence or Astra WP, but both themes come in a bare version and need a lot of plugins to add review articles, sort articles by popularity and so on. We kept changing themes, we want something of the future and very well optimized, with so many options on the market it is certainly very difficult, but I would also like to know your opinion, what have you changed and brought you notable improvements? I am waiting with great interest for an answer!\", \"author_fullname\": \"t2_e3hnwmgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the best seo wordpress theme for tech news?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cj97vb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714744351, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hello,<br/>\\nI own 2 websites mainly related to tech news, one of the websites is more on geek topics (Video Games, Streaming, AI, Hardware) and one website is on gadgets, mobile phones, and mobile software. Both sites are currently using Foxiz from ThemeForest, and I&#39;m completely satisfied with the design, but in terms of performance and SEO, I don&#39;t know what to say, as if we&#39;re losing a lot because we&#39;re using this theme.<br/>\\nWe are thinking of changing the themes with something that is more optimized for SEO and in terms of loading speed. The website on geekier topics is also hit by the HCU update from September, maybe a change now would help us, even if we know that the wordpress theme does not matter much.<br/>\\nI want to change the theme to something modern but also easy to customize and optimize. I am thinking of the following solutions.</p>\\n\\n<ul>\\n<li>SmartMag by ThemeSphere</li>\\n<li>Newspaper by TagDiv</li>\\n<li>Jannah by Tielabs</li>\\n<li>Jnews by jegtheme</li>\\n<li>Zeen by Codetipi</li>\\n</ul>\\n\\n<p>There are many sites that use Newspaper by TagDiv, but the design is very outdated. SmartMag is very fast and has some interesting settings, Jannah as well as Newspaper, outdated. I was thinking about Kadence or Astra WP, but both themes come in a bare version and need a lot of plugins to add review articles, sort articles by popularity and so on. We kept changing themes, we want something of the future and very well optimized, with so many options on the market it is certainly very difficult, but I would also like to know your opinion, what have you changed and brought you notable improvements? I am waiting with great interest for an answer!</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj97vb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Marian_97c\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj97vb/what_is_the_best_seo_wordpress_theme_for_tech_news/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj97vb/what_is_the_best_seo_wordpress_theme_for_tech_news/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714744351, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Google Search Console was, earlier today, loading very slowly or not fully resolving for me. Now it appears to be loading relatively quickly but is only showing full (fresh) data from Tuesday April 30. Is anyone else experiencing GSC weirdness this morning?\", \"author_fullname\": \"t2_2ejgrom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone else experiencing Search Console lag today\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_1cj96ln\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714744253, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Google Search Console was, earlier today, loading very slowly or not fully resolving for me. Now it appears to be loading relatively quickly but is only showing full (fresh) data from Tuesday April 30. Is anyone else experiencing GSC weirdness this morning?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj96ln\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DAMJim\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj96ln/anyone_else_experiencing_search_console_lag_today/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj96ln/anyone_else_experiencing_search_console_lag_today/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714744253, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"I regularly use Mailchimp when doing outreach to build links. Sometimes editors will copy bits from the email to add to their piece, which is great. However, when the links are copied and pasted, the link shows up as a MailChimp tracking link when published. Although it does redirect to our site, how do I prevent this from happening?\", \"author_fullname\": \"t2_vj9co3y4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone used MailChimp for outreach?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj8ikq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714742412, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>I regularly use Mailchimp when doing outreach to build links. Sometimes editors will copy bits from the email to add to their piece, which is great. However, when the links are copied and pasted, the link shows up as a MailChimp tracking link when published. Although it does redirect to our site, how do I prevent this from happening?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj8ikq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ExplanationSuper209\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj8ikq/has_anyone_used_mailchimp_for_outreach/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj8ikq/has_anyone_used_mailchimp_for_outreach/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714742412, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hi all,\\n\\nFirst of all, thank you for taking the time to read my post. I am the owner of the brand and not a SEO specialist, I need help of you guys.\\n\\n**Drop in traffic** \\nAs you might know Google has rolled out the last HCU (Helpful content update) and our Ecommerce site has been dropped significantly in traffic. We went from averaging 1000 clicks to somewhere between 500-600 in one day. Still decreasing. Our site continuedly collected 1000 clicks per day for more than 1 year now.\\n\\nThis drop we saw happening from the 25^(th) of April.\\n\\n**Some background information about our site:** \\nMarket: sneakers \\nDomain Rating (Ahref): 12 \\nBacklink strategy: we do not actively build links \\nContent strategy: basic product content (we did not change anything regarding this)\\n\\n**Did we change anything shortly before the drop has happened?**\\n\\n* No content changes\\n* No technical changes\\n* No backlinks added / removed\\n* Overall online reputation is the same\\n\\nAs we did a deepdive into the data, we saw that generally speaking our positions weren’t hit, but the strange part is that our impressions has been hit very hard.\\n\\n**My question:** \\nHow is it possible that the impressions has been hit so hard, yet our positions aren’t hit that hard. Also if the problem was position, we should have see a decrease in clicks and not in impressions right? In the market we did not see any change regarding content.\\n\\nI also have some hypothese that on or more competitors are investing in backlinks, but it is strange that drop has been happened in one day. If the hypothese is correct, it should decrease over time right?\\n\\nHope to hear from you guys!\\n\\nThanks in advance.\", \"author_fullname\": \"t2_3fufvxfn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ecommerce site has been hit significantly (100%+) since 25th of April, please help!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj7yw4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.6, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714740865, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi all,</p>\\n\\n<p>First of all, thank you for taking the time to read my post. I am the owner of the brand and not a SEO specialist, I need help of you guys.</p>\\n\\n<p><strong>Drop in traffic</strong><br/>\\nAs you might know Google has rolled out the last HCU (Helpful content update) and our Ecommerce site has been dropped significantly in traffic. We went from averaging 1000 clicks to somewhere between 500-600 in one day. Still decreasing. Our site continuedly collected 1000 clicks per day for more than 1 year now.</p>\\n\\n<p>This drop we saw happening from the 25<sup>th</sup> of April.</p>\\n\\n<p><strong>Some background information about our site:</strong><br/>\\nMarket: sneakers<br/>\\nDomain Rating (Ahref): 12<br/>\\nBacklink strategy: we do not actively build links<br/>\\nContent strategy: basic product content (we did not change anything regarding this)</p>\\n\\n<p><strong>Did we change anything shortly before the drop has happened?</strong></p>\\n\\n<ul>\\n<li>No content changes</li>\\n<li>No technical changes</li>\\n<li>No backlinks added / removed</li>\\n<li>Overall online reputation is the same</li>\\n</ul>\\n\\n<p>As we did a deepdive into the data, we saw that generally speaking our positions weren’t hit, but the strange part is that our impressions has been hit very hard.</p>\\n\\n<p><strong>My question:</strong><br/>\\nHow is it possible that the impressions has been hit so hard, yet our positions aren’t hit that hard. Also if the problem was position, we should have see a decrease in clicks and not in impressions right? In the market we did not see any change regarding content.</p>\\n\\n<p>I also have some hypothese that on or more competitors are investing in backlinks, but it is strange that drop has been happened in one day. If the hypothese is correct, it should decrease over time right?</p>\\n\\n<p>Hope to hear from you guys!</p>\\n\\n<p>Thanks in advance.</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj7yw4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Can19977\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj7yw4/ecommerce_site_has_been_hit_significantly_100/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj7yw4/ecommerce_site_has_been_hit_significantly_100/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714740865, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hello everyone,\\n\\nI have an online business in a travel niche, and during the years I bought 2 domains of competitive businesses.\\n\\nWithout any knowledge what to do with these domains, I just thought that it would better if I would own them myself instead of having someone else owning them. These domains have quite a lot of backlinks. I don't have the content that used to belong to these domains, but i do own the domains. Right now the only thing I did is to redirect these 2 domains to my own domain.\\n\\nEDIT: I forgot to mention that my main domain has focus on the Dutch speaking market, and the competitors used to be an English website and a German website.\\n\\nWhat do you guys recommend? Does this all make any sense, or does all this not have any positive implications for SEO? \\nWould be great to hear your thoughts! Let me know if anything is unclear!\", \"author_fullname\": \"t2_k9n4eara\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I bought some domains of competitors in the same niche, what to do with it?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj7p85\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.6, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1714743738, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714740054, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hello everyone,</p>\\n\\n<p>I have an online business in a travel niche, and during the years I bought 2 domains of competitive businesses.</p>\\n\\n<p>Without any knowledge what to do with these domains, I just thought that it would better if I would own them myself instead of having someone else owning them. These domains have quite a lot of backlinks. I don&#39;t have the content that used to belong to these domains, but i do own the domains. Right now the only thing I did is to redirect these 2 domains to my own domain.</p>\\n\\n<p>EDIT: I forgot to mention that my main domain has focus on the Dutch speaking market, and the competitors used to be an English website and a German website.</p>\\n\\n<p>What do you guys recommend? Does this all make any sense, or does all this not have any positive implications for SEO?<br/>\\nWould be great to hear your thoughts! Let me know if anything is unclear!</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj7p85\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ancient_Bathroom9312\", \"discussion_type\": null, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj7p85/i_bought_some_domains_of_competitors_in_the_same/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj7p85/i_bought_some_domains_of_competitors_in_the_same/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714740054, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"As the title says, we have a website and would like to change the design a little. It is a very simple website (5 pages). All the content will be the same. This is purely a design change.\\n\\n \\nThanks\", \"author_fullname\": \"t2_odfmjcswc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will giving my website a facelift effect SEO?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj76u8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714738510, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>As the title says, we have a website and would like to change the design a little. It is a very simple website (5 pages). All the content will be the same. This is purely a design change.</p>\\n\\n<p>Thanks</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj76u8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Obvious_Substance131\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj76u8/will_giving_my_website_a_facelift_effect_seo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj76u8/will_giving_my_website_a_facelift_effect_seo/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714738510, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"anybody know about this ?\", \"author_fullname\": \"t2_vlzvplpa9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to indexed my seo-offpage activity link ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj3j42\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714724702, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>anybody know about this ?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj3j42\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacoob_john\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj3j42/how_to_indexed_my_seooffpage_activity_link/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj3j42/how_to_indexed_my_seooffpage_activity_link/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714724702, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Im having trouble getting some of my pseo pages indexed. \\nThe site structure is the same for all of them. Some are getting indexed while others show a page with redirect error in gsc. \\nDoing a live url test shows that the page can be indexed and no error. So im confused on whats the problem here, is it just some crawl budget issue which is displayed incorrectly? \\nAny support on how to fix that is much appreciated.\", \"author_fullname\": \"t2_a1ktynli\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GSC falsely showing page with redirect issue\", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Help\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj68ee\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Help\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714735391, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Im having trouble getting some of my pseo pages indexed.<br/>\\nThe site structure is the same for all of them. Some are getting indexed while others show a page with redirect error in gsc.<br/>\\nDoing a live url test shows that the page can be indexed and no error. So im confused on whats the problem here, is it just some crawl budget issue which is displayed incorrectly?<br/>\\nAny support on how to fix that is much appreciated.</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"925f10f2-0049-11e8-9509-0ebba09be652\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj68ee\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_bobbyfischer\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj68ee/gsc_falsely_showing_page_with_redirect_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj68ee/gsc_falsely_showing_page_with_redirect_issue/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714735391, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hi all,\\n\\nI recently launched my new website and indexed around 200 pages using indexer api, but those pages do not show up in the google search console. I only see one page on the google search console which i indexed manually in the console.a\\n\\nAll pages show up when i search for site:mysite\\n\\nIt's been 3-4 days now since I did the indexing, will those pages never show up on the console?\", \"author_fullname\": \"t2_57szs2hh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Indexed 200 pages using google indexer api but they do not show up in search console\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj5dvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714732402, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi all,</p>\\n\\n<p>I recently launched my new website and indexed around 200 pages using indexer api, but those pages do not show up in the google search console. I only see one page on the google search console which i indexed manually in the console.a</p>\\n\\n<p>All pages show up when i search for site:mysite</p>\\n\\n<p>It&#39;s been 3-4 days now since I did the indexing, will those pages never show up on the console?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj5dvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GiniMiniManeMo\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj5dvu/indexed_200_pages_using_google_indexer_api_but/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj5dvu/indexed_200_pages_using_google_indexer_api_but/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714732402, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hi, I've created a Woocommerce webshop where I've been trying to do some dropshipping. All was good and development is going great, however I've made the mistake to setup an easy password for my webshops admin login (really dumb, i know). I've cleared all the malware by rolling back to a version where the malware was not present. The malware had only been around for about \\\\~20 hours, so I've cleared the issue pretty quick in my opinion.\\n\\nMy current issue is that Google Search Console crawls 80% of the malware generated URL's and only 20% of actual existing URL's. I'm still in the early stages, so I don't want Google focussing on the wrong pages. I have no clue why Google is so focussed on those URL's since they:\\n\\n1. Don't exist, they had a 404 statuscode however I've exported all of those URL's from GSC and replaced it with a 410 statuscode hoping that Google will get the message that they don't exist.\\n2. They get 0 inlinks from pages or existing XML sitemaps.\\n\\nAs I've said, I've rolled back to the version where the malware was not present yet through my hosting provider's back-ups about two months ago. Is there something I'm missing? Is the 410 statuscode the right approach in this case? I just want Google to focus on my actual existing pages, instead of the malware injected pages. I don't get how they are still being found/crawled despite only having been up for one day and having 0 inlinks. My other pages have been up way longer, but Google crawls my website, but not the right pages which is frustrating.\\n\\nThanks in advance for any help or advise given. \", \"author_fullname\": \"t2_yhuqqp935\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Malware generated URL's still being crawled by Google after two months despite the pages not existing\", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Help\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj4ted\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Help\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714730224, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi, I&#39;ve created a Woocommerce webshop where I&#39;ve been trying to do some dropshipping. All was good and development is going great, however I&#39;ve made the mistake to setup an easy password for my webshops admin login (really dumb, i know). I&#39;ve cleared all the malware by rolling back to a version where the malware was not present. The malware had only been around for about ~20 hours, so I&#39;ve cleared the issue pretty quick in my opinion.</p>\\n\\n<p>My current issue is that Google Search Console crawls 80% of the malware generated URL&#39;s and only 20% of actual existing URL&#39;s. I&#39;m still in the early stages, so I don&#39;t want Google focussing on the wrong pages. I have no clue why Google is so focussed on those URL&#39;s since they:</p>\\n\\n<ol>\\n<li>Don&#39;t exist, they had a 404 statuscode however I&#39;ve exported all of those URL&#39;s from GSC and replaced it with a 410 statuscode hoping that Google will get the message that they don&#39;t exist.</li>\\n<li>They get 0 inlinks from pages or existing XML sitemaps.</li>\\n</ol>\\n\\n<p>As I&#39;ve said, I&#39;ve rolled back to the version where the malware was not present yet through my hosting provider&#39;s back-ups about two months ago. Is there something I&#39;m missing? Is the 410 statuscode the right approach in this case? I just want Google to focus on my actual existing pages, instead of the malware injected pages. I don&#39;t get how they are still being found/crawled despite only having been up for one day and having 0 inlinks. My other pages have been up way longer, but Google crawls my website, but not the right pages which is frustrating.</p>\\n\\n<p>Thanks in advance for any help or advise given. </p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"925f10f2-0049-11e8-9509-0ebba09be652\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj4ted\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kitchen_Knee_7408\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj4ted/malware_generated_urls_still_being_crawled_by/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj4ted/malware_generated_urls_still_being_crawled_by/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714730224, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"My keyword is best jewellery store in this keyword my hosting (vercel.app) site is ranking instead of my domain. What is the reason behind this?\", \"author_fullname\": \"t2_edx23ibn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"My vercel site is ranking instead of my main domain website what should i do?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj4osy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714729673, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>My keyword is best jewellery store in this keyword my hosting (vercel.app) site is ranking instead of my domain. What is the reason behind this?</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj4osy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vijaydigi07\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj4osy/my_vercel_site_is_ranking_instead_of_my_main/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj4osy/my_vercel_site_is_ranking_instead_of_my_main/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714729673, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"I help develop and run a tool on GitHub and I started a website for it in order to make the tool easier to share instead of having people send each other long GitHub links and hopefully so people would be able to search the site up.\\n\\nUnfortunately, our site has not been showing up on Google, and taking its place is a website that has downloaded my html files from GitHub and changed the download link to malware. It’s now above our actual GitHub on google and it’s resulted on a ton of people coming into our discord server, wondering why our “program” doesn’t work, to then realize they just got their information logged.\\n\\nI’m currently rewording whatever the google descriptions are called to see if that does anything, but is there anything else I can do to at least get my website listed and hopefully on the first rank? I don’t know anything about SEO.\\n\\nSome information: we use a .dev domain and host our website on GitHub pages. Our website’s external links are to our GitHub and our Discord.\", \"author_fullname\": \"t2_cfed391o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Website not showing up on Google but malicious clone is in first rank, help?\", \"link_flair_richtext\": [ { \"e\": \"text\", \"t\": \"Help\" } ], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ciyl1w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": \"Help\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714705983, \"link_flair_type\": \"richtext\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>I help develop and run a tool on GitHub and I started a website for it in order to make the tool easier to share instead of having people send each other long GitHub links and hopefully so people would be able to search the site up.</p>\\n\\n<p>Unfortunately, our site has not been showing up on Google, and taking its place is a website that has downloaded my html files from GitHub and changed the download link to malware. It’s now above our actual GitHub on google and it’s resulted on a ton of people coming into our discord server, wondering why our “program” doesn’t work, to then realize they just got their information logged.</p>\\n\\n<p>I’m currently rewording whatever the google descriptions are called to see if that does anything, but is there anything else I can do to at least get my website listed and hopefully on the first rank? I don’t know anything about SEO.</p>\\n\\n<p>Some information: we use a .dev domain and host our website on GitHub pages. Our website’s external links are to our GitHub and our Discord.</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"925f10f2-0049-11e8-9509-0ebba09be652\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1ciyl1w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"N4riN4ri\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1ciyl1w/website_not_showing_up_on_google_but_malicious/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1ciyl1w/website_not_showing_up_on_google_but_malicious/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714705983, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Last week, our team attended brightonSEO, one of Europe’s biggest SEO conferences, and we’re thrilled to pass along the insights we gathered. While most of the event’s discussions revolved around SGE, we included additional notes on other topics. We hope you discover something intriguing in our findings. This year’s speakers were a joy to listen to, each offering a glimpse into the future of SEO. Off we go!\\n\\n**SGE**\\n\\nAll speakers were on the same page about SGE. Google’s new search experience is not ready for the rollout and probably won’t be released on Google I/O (May 14th, 2024). Meanwhile, the speakers (and many other experts) compared SGE snippets to featured snippets, highlighting that the industry had already experienced a similar shift (when Google started to provide more information directly in the search). \\n\\nSEOs believe the main SEO principles will remain the same in the new search (SGE). But the industry doesn’t currently have SGE performance tracking tools (only manual checks).\\n\\nAlso, one speaker (Marcus Tober) had quite a fresh opinion on this: It’s easier for Google to grow revenue through ecommerce rather than through the development of AI. For example, today’s lack of diversity in ecommerce organic search results on SERPs helps Google get more clicks on ads (Google wants to become the catch-all solution for ecommerce).\\n\\nHere are some of the speakers’ main points:\\n\\n* SGE still looks like it’s in its preliminary stages. It should not be rolled out in its current form, but investors may exert pressure on its launch. \\n* SEOs should expect a less radical departure from traditional search. Expect evolution, not revolution.\\n* Traffic erosion may unfortunately occur, with a potential traffic decline of up to 30-70%. Meanwhile, organic traffic will become more valuable as organic results space in SERPs shrinks.\\n* The highest satisfaction in SGE usage is among users 18-24 years old (based on Google’s report).\\n* Paywall content appearing in SGE results might cause legal issues.\\n* Open AI and Perplexity aren’t a threat to Google’s search business.\\n* Some sites with low domain trust/weak backlink profiles/no organic traffic can be found in SGE.\\n* Google is forced to grow revenue, which is easier in ecommerce than through AI. Search currently gives less diversity in ecommerce results -> people click on ads more \\n* There’s no need to target easy informational searches. But this already started with featured snippets.\\n\\n**Limits to SGE**\\n\\n* Potential legal issues like stolen content (cases like these also occurred with featured snippets) and unsourced materials, misleading info, non-EU data centers, etc\\n* UX issues: SGE often has little benefit over the regular search, and Bing has already been backtracked\\n* Spam and misinformation\\n* Commercial limitations and a need to find a new monetization method (Google might incorporate a paid-only feature)\\n* Computation might be the biggest problem\\n\\n**Ranking factors that likely will not change for SGE:** \\n\\n* Text relevance & content quality (AI content can be a threat to websites)\\n* Backlinks (it’s easier to produce content than getting good links)\\n* User experience\\n* User signals (might become the most important ranking factor)\\n\\n**Other observations (on the topics):**\\n\\n* Trending topics: There was much discussion around content production with AI (ChatGPT), plus talks on brand building, PR, and alternative traffic channels.\\n* AI Content & ChatGPT: Focus on prompt generation and improving the quality of generated content (and humanizing it). Creating & training your own ChatGPT chat appears to be a trend.\\n* Technical SEO: There were fewer talks on speed and Core Web Vitals (or even no talks). There were more talks (and interest) on log file analysis.\\n\\nAnd finally, kudos to all the great speakers for their hard work! Here are some of my favorite talks (though there are many more ones I’d love to pick up on):\\n\\n* Malcolm Coles (Creating a dashboard for keyword tracking)\\n* Neil Barnes (Storytelling)\\n* Jonjo Rowlands (ChatGPT for content creation)\", \"author_fullname\": \"t2_uhf0wrxd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"brightonSEO April 2024 notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cifvag\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.91, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714657009, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Last week, our team attended brightonSEO, one of Europe’s biggest SEO conferences, and we’re thrilled to pass along the insights we gathered. While most of the event’s discussions revolved around SGE, we included additional notes on other topics. We hope you discover something intriguing in our findings. This year’s speakers were a joy to listen to, each offering a glimpse into the future of SEO. Off we go!</p>\\n\\n<p><strong>SGE</strong></p>\\n\\n<p>All speakers were on the same page about SGE. Google’s new search experience is not ready for the rollout and probably won’t be released on Google I/O (May 14th, 2024). Meanwhile, the speakers (and many other experts) compared SGE snippets to featured snippets, highlighting that the industry had already experienced a similar shift (when Google started to provide more information directly in the search). </p>\\n\\n<p>SEOs believe the main SEO principles will remain the same in the new search (SGE). But the industry doesn’t currently have SGE performance tracking tools (only manual checks).</p>\\n\\n<p>Also, one speaker (Marcus Tober) had quite a fresh opinion on this: It’s easier for Google to grow revenue through ecommerce rather than through the development of AI. For example, today’s lack of diversity in ecommerce organic search results on SERPs helps Google get more clicks on ads (Google wants to become the catch-all solution for ecommerce).</p>\\n\\n<p>Here are some of the speakers’ main points:</p>\\n\\n<ul>\\n<li>SGE still looks like it’s in its preliminary stages. It should not be rolled out in its current form, but investors may exert pressure on its launch. </li>\\n<li>SEOs should expect a less radical departure from traditional search. Expect evolution, not revolution.</li>\\n<li>Traffic erosion may unfortunately occur, with a potential traffic decline of up to 30-70%. Meanwhile, organic traffic will become more valuable as organic results space in SERPs shrinks.</li>\\n<li>The highest satisfaction in SGE usage is among users 18-24 years old (based on Google’s report).</li>\\n<li>Paywall content appearing in SGE results might cause legal issues.</li>\\n<li>Open AI and Perplexity aren’t a threat to Google’s search business.</li>\\n<li>Some sites with low domain trust/weak backlink profiles/no organic traffic can be found in SGE.</li>\\n<li>Google is forced to grow revenue, which is easier in ecommerce than through AI. Search currently gives less diversity in ecommerce results -&gt; people click on ads more </li>\\n<li>There’s no need to target easy informational searches. But this already started with featured snippets.</li>\\n</ul>\\n\\n<p><strong>Limits to SGE</strong></p>\\n\\n<ul>\\n<li>Potential legal issues like stolen content (cases like these also occurred with featured snippets) and unsourced materials, misleading info, non-EU data centers, etc</li>\\n<li>UX issues: SGE often has little benefit over the regular search, and Bing has already been backtracked</li>\\n<li>Spam and misinformation</li>\\n<li>Commercial limitations and a need to find a new monetization method (Google might incorporate a paid-only feature)</li>\\n<li>Computation might be the biggest problem</li>\\n</ul>\\n\\n<p><strong>Ranking factors that likely will not change for SGE:</strong> </p>\\n\\n<ul>\\n<li>Text relevance &amp; content quality (AI content can be a threat to websites)</li>\\n<li>Backlinks (it’s easier to produce content than getting good links)</li>\\n<li>User experience</li>\\n<li>User signals (might become the most important ranking factor)</li>\\n</ul>\\n\\n<p><strong>Other observations (on the topics):</strong></p>\\n\\n<ul>\\n<li>Trending topics: There was much discussion around content production with AI (ChatGPT), plus talks on brand building, PR, and alternative traffic channels.</li>\\n<li>AI Content &amp; ChatGPT: Focus on prompt generation and improving the quality of generated content (and humanizing it). Creating &amp; training your own ChatGPT chat appears to be a trend.</li>\\n<li>Technical SEO: There were fewer talks on speed and Core Web Vitals (or even no talks). There were more talks (and interest) on log file analysis.</li>\\n</ul>\\n\\n<p>And finally, kudos to all the great speakers for their hard work! Here are some of my favorite talks (though there are many more ones I’d love to pick up on):</p>\\n\\n<ul>\\n<li>Malcolm Coles (Creating a dashboard for keyword tracking)</li>\\n<li>Neil Barnes (Storytelling)</li>\\n<li>Jonjo Rowlands (ChatGPT for content creation)</li>\\n</ul>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cifvag\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SE_Ranking\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cifvag/brightonseo_april_2024_notes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cifvag/brightonseo_april_2024_notes/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714657009, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } }, { \"kind\": \"t3\", \"data\": { \"approved_at_utc\": null, \"subreddit\": \"SEO\", \"selftext\": \"Hey everyone! I have an idea to create an online directory where you can pretty much find people with websites in the same niche as you with similar DA/DR and you’d be able to connect and exchange backlinks.\\n\\nWould save a ton of time searching for prospects and then having to find their contact info and reaching out to them as it’ll all be there already.\\n\\nThoughts on this idea? \\n\\nThanks\", \"author_fullname\": \"t2_78myp56n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Backlinks Exchange Directory Idea?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/SEO\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cj3lxq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.66, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": { }, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": { }, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": { }, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1714725047, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.SEO\", \"allow_live_comments\": false, \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hey everyone! I have an idea to create an online directory where you can pretty much find people with websites in the same niche as you with similar DA/DR and you’d be able to connect and exchange backlinks.</p>\\n\\n<p>Would save a ton of time searching for prospects and then having to find their contact info and reaching out to them as it’ll all be there already.</p>\\n\\n<p>Thoughts on this idea? </p>\\n\\n<p>Thanks</p>\\n</div><!-- SC_ON -->\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhbx\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1cj3lxq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Diligent_Response_30\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/SEO/comments/1cj3lxq/backlinks_exchange_directory_idea/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/SEO/comments/1cj3lxq/backlinks_exchange_directory_idea/\", \"subreddit_subscribers\": 284471, \"created_utc\": 1714725047, \"num_crossposts\": 0, \"media\": null, \"is_video\": false } } ], \"before\": null } }\n", | |
| "Data saved to output.csv\n" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment