Plugin Directory

Changeset 2581515


Ignore:
Timestamp:
08/11/2021 01:35:53 PM (5 years ago)
Author:
Dzynit
Message:
  • Removed Change default blogroll category name from "blogroll"
  • Removed all ADD footer: Remove footer info
  • Changed the blog description tagline to checked ON by default
  • Changed the default page name from "Sample Page" to checked ON by default
  • Changed Set the default page above as the front page to checked ON by default
Location:
seo-automatic-wp-core-tweaks
Files:
248 added
9 edited

Legend:

Unmodified
Added
Removed
  • seo-automatic-wp-core-tweaks/trunk/add-footer.php

    r542935 r2581515  
    11<?php
    22//Add footer info
    3 if ($_REQUEST['action'] != "changecore") {
    4     $options .= '<li><b>ADD footer:<br /><small>(Changes here are controlled through hooks, NOT through your themes footer.php.  You may control the exact styling look you want using the class .scauto-footer and .scauto-footer-login in your style.css, - OR - Just re-run core tweaks, deselect ALL options on this page, and then select the UNDO option here for the footer links.)</small></b></li>';
     3if ($_REQUEST['action'] != "changecore-removed") {
     4    $options .= '<!--<li><b>ADD footer:<br /><small>(Changes here are controlled through hooks, NOT through your themes footer.php.  You may control the exact styling look you want using the class .scauto-footer and .scauto-footer-login in your style.css, - OR - Just re-run core tweaks, deselect ALL options on this page, and then select the UNDO option here for the footer links.)</small></b></li>-->';
    55}
    6 if ($_REQUEST['action'] == "changecore") {
     6if ($_REQUEST['action'] == "changecore-removed") {
    77    if ($_REQUEST['add_footer_copy'] == "ON") {
    88        if (!update_option('seo_core_footer_copy', 'on')) {
     
    1515    }
    1616} else {
    17     $options .= "<li><input type=\"checkbox\" name=\"add_footer_copy\" value=\"ON\"> Add the copyright date to the footer.</li>";
     17    $options .= "<!--<li><input type=\"checkbox\" name=\"add_footer_copy\" value=\"ON\"> Add the copyright date to the footer.</li>-->";
    1818}
    1919
    2020
    21 if ($_REQUEST['action'] == "changecore") {
     21if ($_REQUEST['action'] == "changecore-removed") {
    2222    if ($_REQUEST['add_footer_login'] == "ON") {
    2323        if (!update_option('seo_core_footer_login', 'on')) {
     
    3030    }
    3131} else {
    32     $options .= "<li><input type=\"checkbox\" name=\"add_footer_login\" value=\"ON\"> Add an admin login to the footer.</li>";
     32    $options .= "<!--<li><input type=\"checkbox\" name=\"add_footer_login\" value=\"ON\"> Add an admin login to the footer.</li>-->";
    3333}
    3434
    35 if ($_REQUEST['action'] == "changecore") {
     35if ($_REQUEST['action'] == "changecore-removed") {
    3636    if ($_REQUEST['add_footer_sitemap'] == "ON") {
    3737        if (!update_option('seo_core_footer_sitemap', 'on')) {
     
    4444    }
    4545} else {
    46     $options .= "<li><input type=\"checkbox\" name=\"add_footer_sitemap\" value=\"ON\"> Add the static sitemap link to the footer.</li>";
     46    $options .= "<!--<li><input type=\"checkbox\" name=\"add_footer_sitemap\" value=\"ON\"> Add the static sitemap link to the footer.</li>-->";
    4747}
    4848
    49 if ($_REQUEST['action'] == "changecore") {
     49if ($_REQUEST['action'] == "changecore-removed") {
    5050    if ($_REQUEST['add_footer_privacy'] == "ON") {
    5151        if (!update_option('seo_core_footer_privacy', 'on')) {
     
    5858    }
    5959} else {
    60     $options .= "<li><input type=\"checkbox\" name=\"add_footer_privacy\" value=\"ON\"> Add the privacy policy link to the footer.</li>";
     60    $options .= "<!--<li><input type=\"checkbox\" name=\"add_footer_privacy\" value=\"ON\"> Add the privacy policy link to the footer.</li>-->";
    6161}
    6262
    6363//undo
    64 if ($_REQUEST['action'] != "changecore") {
    65     $options .= '<li><br /><b>UNDO footer additions:</b></li>';
     64if ($_REQUEST['action'] != "changecore-removed") {
     65    $options .= '<!--<li><br /><b>UNDO footer additions:</b></li>-->';
    6666}
    6767
     
    7777    }
    7878} else {
    79     $options .= "<li><input type=\"checkbox\" name=\"remove_footer_copy\" value=\"ON\"> Remove the copyright date from the footer. </li>";
     79    $options .= "<!--<li><input type=\"checkbox\" name=\"remove_footer_copy\" value=\"ON\"> Remove the copyright date from the footer. </li>-->";
    8080}
    8181
    82 if ($_REQUEST['action'] == "changecore") {
     82if ($_REQUEST['action'] == "changecore-removed") {
    8383    if ($_REQUEST['remove_footer_login'] == "ON") {
    8484        if (!update_option('seo_core_footer_login', 'off')) {
     
    9191    }
    9292} else {
    93     $options .= "<li><input type=\"checkbox\" name=\"remove_footer_login\" value=\"ON\"> Remove admin login from the footer. </li>";
     93    $options .= "<!--<li><input type=\"checkbox\" name=\"remove_footer_login\" value=\"ON\"> Remove admin login from the footer. </li>-->";
    9494}
    9595
    96 if ($_REQUEST['action'] == "changecore") {
     96if ($_REQUEST['action'] == "changecore-removed") {
    9797    if ($_REQUEST['remove_footer_sitemap'] == "ON") {
    9898        if (!update_option('seo_core_footer_sitemap', 'off')) {
     
    105105    }
    106106} else {
    107     $options .= "<li><input type=\"checkbox\" name=\"remove_footer_sitemap\" value=\"ON\"> Remove the static sitemap link from the footer. </li>";
     107    $options .= "<!--<li><input type=\"checkbox\" name=\"remove_footer_sitemap\" value=\"ON\"> Remove the static sitemap link from the footer. </li>-->";
    108108}
    109109
    110 if ($_REQUEST['action'] == "changecore") {
     110if ($_REQUEST['action'] == "changecore-removed") {
    111111    if ($_REQUEST['remove_footer_privacy'] == "ON") {
    112112        if (!update_option('seo_core_footer_privacy', 'off')) {
     
    119119    }
    120120} else {
    121     $options .= "<li><input type=\"checkbox\" name=\"remove_footer_privacy\" value=\"ON\"> Remove the privacy policy link from the footer. </li>";
     121    $options .= "<!--<li><input type=\"checkbox\" name=\"remove_footer_privacy\" value=\"ON\"> Remove the privacy policy link from the footer. </li>-->";
    122122}
    123123?>
  • seo-automatic-wp-core-tweaks/trunk/blogroll.php

    r908344 r2581515  
    22//Delete blogroll links
    33
    4 if ($_REQUEST['action'] == "changecore") {
    5 /*   if ($_REQUEST['empty_blogroll'] == "ON") {
     4if ($_REQUEST['action'] == "changecore-REMOVED") {
     5     if ($_REQUEST['empty_blogroll'] == "ON") {
    66        if ( (!$wpdb->query("DELETE FROM $wpdb->links WHERE link_id != ''")) ) {
    77            $fail .= "<li>Blogroll links could not be deleted.</li>";
     
    1111    } else {
    1212        $notused .= "<li>Blogroll has not been changed.</li>";
    13     }*/
     13    }
    1414} else {
    1515    $options .= '<!--<li><input name="empty_blogroll" type="checkbox" value="ON" /> Delete <b>all</b> links in blogroll. <small><b>(Cannot be undone.)</b></small></li>-->';
  • seo-automatic-wp-core-tweaks/trunk/cat-names.php

    r542935 r2581515  
    2626
    2727
    28 //Set the default blogroll name
    29 if ($_REQUEST['action'] == "changecore") {
     28//Set the default blogroll name - REMOVED IN VERSION 4.1
     29if ($_REQUEST['action'] == "changecore-removed") {
    3030    $cat_2 = $_REQUEST['cat_2'];
    3131    $cat_2_nice = str_replace(" ", "-", $cat_2);
     
    4646    }
    4747} else {
    48     $options .= "<li><input type=\"checkbox\" name=\"d_blogroll\" value=\"ON\" checked> Change default blogroll category name from \"blogroll\" to: <input type=\"text\" name=\"cat_2\" size=\"20\" value=\"Related\" /></li>";
     48    $options .= "<!--<li><input type=\"checkbox\" name=\"d_blogroll\" value=\"ON\" checked> Change default blogroll category name from \"blogroll\" to: <input type=\"text\" name=\"cat_2\" size=\"20\" value=\"Related\" /></li>-->";
    4949}
    5050?>
  • seo-automatic-wp-core-tweaks/trunk/edit-page-info.php

    r913396 r2581515  
    1919    }
    2020} else {
    21     $options .= '<li><input name="page_2" type="checkbox" value="ON" /> Change the default page name from "Sample Page" to: <input name="about_page" size="15" type="textbox" value="Home" /></li>';
     21    $options .= '<li><input name="page_2" type="checkbox" value="ON" checked /> Change the default page name from "Sample Page" to: <input name="about_page" size="15" type="textbox" value="Home" /></li>';
    2222}
    2323
     
    3737    }
    3838} else {
    39     $options .= '<li><input name="set_home" type="checkbox" value="ON" /> Set the default page above as the front page.</li>';
     39    $options .= '<li><input name="set_home" type="checkbox" value="ON" checked /> Set the default page above as the front page.</li>';
    4040}
    4141
  • seo-automatic-wp-core-tweaks/trunk/readme.txt

    r2366650 r2581515  
    44Tags: google, seo, permalinks, installation, common settings, post teaser, page link, page order, canonical, sitemap, h1, core tweaks, seo automatic, blog setup
    55Requires at least: 3.8
    6 Tested up to: 5.5
    7 Stable tag: 4.0.5
     6Tested up to: 5.8
     7Stable tag: 4.1
    88
    99Primarily for use in <b>new WP installations</b>, the steps are based on an employee checklist from Search Commander, Inc. for setting up sites.
     
    434317. Create the page to designate for displaying your blog posts, and name it:
    444418. Change the blog description tagline.
    45 19. Add a robots.txt file to your blog root.(This WILL overwrite any existing robots.txt file and cannot be undone.)
    46 20. Footer control
    47     *   Add a copyright date to the footer.
    48     *   Add an admin login to the footer.
    49     *   Add the static sitemap link to the footer.
    50     *   Add the privacy policy link to the footer.
    51 21. Advanced:
    52 22. Uploads Folder: You will need to have writable permission
    53 23. Attempt to create the uploads folder and set the permission to writable.
    54 24. Change H2 tags to H1
    55 25. Import / export your settings from another site. Once you set preferences the first time, just export. Then import that file on future domains, and you're done.
     4519. Advanced:
     4620. Uploads Folder: You will need to have writable permission
     4721. Attempt to create the uploads folder and set the permission to writable.
     4822. Import / export your settings from another site. Once you set preferences the first time, just export. Then import that file on future domains, and you're done.
    5649
    5750Notes:
     
    6962After activation, go to the  Core Tweaks admin page and either use the default selections, or make choices of your own.
    7063
    71 Designed as a new setup assistant, this plug-in is usually installed before any others. If you've added other plugins and have them actice, deactivate them first to avoid potential conflicts, then REactivvate them after you run the setup process.
     64Designed as a new setup assistant, this plug-in is usually installed before any others. If you've added other plugins and have them actice, deactivate them first to avoid potential conflicts, then REactivate them after you run the setup process.
    7265
    7366[youtube https://www.youtube.com/watch?v=lbU5SXa4Ih8]
     
    114107
    115108== Changelog ==
     109
     110= 4.1 =
     111
     112* Removed Change default blogroll category name from "blogroll"
     113* Removed all ADD footer: Remove footer info
     114* Changed the blog description tagline to checked ON by default
     115* Changed the default page name from "Sample Page" to checked ON by default
     116* Changed Set the default page above as the front page to checked ON by default
    116117
    117118= 4.0.5 =
  • seo-automatic-wp-core-tweaks/trunk/sc-core-tweak.php

    r2366650 r2581515  
    44Plugin URI: http://www.seoautomatic.com/plugins/wp-core-tweaks/
    55Description: The Search Commander, Inc. automated setup saves 20 to 40 minutes of post-install time, and does what your other SEO plugin won't. All of the "little things", from changing permalink structure to deleting the Hello World post, to enabling XML, and more, are all accessible from the <a href="admin.php?page=seo-automatic-wp-core-tweaks/settings.php">admin page</a>.
    6 Version: 4.0.5
     6Version: 4.1
    77Author: cyber49
    88Author URI: http://www.searchcommander.com/contact/
  • seo-automatic-wp-core-tweaks/trunk/seoauto-sidebar.php

    r1955288 r2581515  
    5353<a href="https://www.searchcommander.com/rec/brightlocal/?utm_source=coretweaksplugin" target="_blank" rel="nofollow"><img src="<?php echo plugins_url().$thisplugin; ?>/images/affiliates/BrightLocal.jpg" alt="Bright Local" /></a>
    5454<br /><br />
    55 <a href="https://www.searchcommander.com/rec/raven/?utm_source=coretweaksplugin" target="_blank" rel="nofollow"><img src="<?php echo plugins_url().$thisplugin; ?>/images/affiliates/Raventools.png" alt="Raven Tools" /></a>
    56 <br /><br />
    5755<a href="https://www.searchcommander.com/rec/wpengine/?utm_source=coretweaksplugin" target="_blank">
    5856<img src="<?php echo plugins_url().$thisplugin; ?>/images/affiliates/wpengine.jpeg" alt="WPEngine" /></a>
  • seo-automatic-wp-core-tweaks/trunk/settings.php

    r2074201 r2581515  
    4646
    4747//Set category names
     48//REMOVED BLOGROLL CATEGORY NAME OPTION, BUT INCLUDED HIDDEN TO ALLOW IMPORT TO CONTINUE WORKING
    4849include('cat-names.php');
    4950
     
    9899}
    99100
    100 //Change blog email and admin user email
     101//Change page info
    101102include('edit-page-info.php');
    102103
     
    134135
    135136//Add footer info
     137//REMOVED, BUT INCLUDED HIDDEN TO ALLOW IMPORT TO CONTINUE WORKING
    136138include('add-footer.php');
    137139
  • seo-automatic-wp-core-tweaks/trunk/sitemap-page.php

    r661718 r2581515  
    3939    }
    4040} else {
    41     $options .= '<li><input name="add_sitemap" type="checkbox" value="ON" /> Add the page and shortcode for the integrated <a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/" target="_blank">DDSiteMap Generator</a>, giving you a static sitemap that changes as you add content. Look under WP Admin > Settings for additional DDSiteMap options.<br /><small><b>(Not an XML sitemap)</b></small></li>';
     41    $options .= '<li><input name="add_sitemap" type="checkbox" value="ON" /> Add the page and shortcode for the integrated sitemap, giving you a static sitemap that changes as you add content. Look under WP Admin > Settings for additional sitemap options. Our sitemap function is somewhat limited, but a lot better than nothing. Instead, we highly recommend using Sitemap by <a href="https://wordpress.org/plugins/sitemap-by-click5/" target="_blank">click5</a>.<br /><small><b>(Our sitemap is not an XML sitemap)</b></small></li>';
    4242}
    4343?>
Note: See TracChangeset for help on using the changeset viewer.