Title: unfinishedcode's Replies | WordPress.org

---

# unfinishedcode

  [  ](https://wordpress.org/support/users/unfinishedcode/)

 *   [Profile](https://wordpress.org/support/users/unfinishedcode/)
 *   [Topics Started](https://wordpress.org/support/users/unfinishedcode/topics/)
 *   [Replies Created](https://wordpress.org/support/users/unfinishedcode/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/unfinishedcode/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/unfinishedcode/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/unfinishedcode/engagements/)
 *   [Favorites](https://wordpress.org/support/users/unfinishedcode/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 69 total)

1 [2](https://wordpress.org/support/users/unfinishedcode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/unfinishedcode/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/unfinishedcode/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/unfinishedcode/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/unfinishedcode/replies/page/2/?output_format=md)

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [wp cron, admin and updates](https://wordpress.org/support/topic/wp-cron-admin-and-updates/)
 *  Thread Starter [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/wp-cron-admin-and-updates/#post-13398058)
 * I guess, I could try running the function on the front end, while not logged 
   in, to be certain. I’m testing for dependant functions, and including files when
   necessary anyways. Thanks for your insight dude.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [WP Admin bar – Adding notification counter bubble](https://wordpress.org/support/topic/wp-admin-bar-adding-notification-counter-bubble/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-bar-adding-notification-counter-bubble/#post-13398056)
 * Awesome, thanks dude. Will do so in the future.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [wp cron, admin and updates](https://wordpress.org/support/topic/wp-cron-admin-and-updates/)
 *  Thread Starter [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/wp-cron-admin-and-updates/#post-13397581)
 * Yes. I am speaking of WP Cron, hence my title.
 * My problem with the native automatic update system, is you cannot schedule it.
   Furthermore, not all plugins can have auto update enabled, a good example of 
   this is Wordfence. It has it’s own auto update system.
 * Thank you for answering one of my questions. The other? Does wp cron load/require
   admin files?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [WP Admin bar – Adding notification counter bubble](https://wordpress.org/support/topic/wp-admin-bar-adding-notification-counter-bubble/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-bar-adding-notification-counter-bubble/#post-13393589)
 * I would count the number of users that registered than an hour ago. Then display
   it to the admin bar.
 * Count users –
 *     ```
       <?php 
       	$arrUsers = get_users();
       	$strDate = date("Y-m-d H:i:s", strtotime('-1 hour'));
       	$intNewUsers = 0;
       	if(is_array($arrUsers)) {
       		foreach ($arrUsers as $key => $value) {
       			if($key == "user_registered" && $value > $strDate) {
       				$intNewUsers++;
       			}
       		}
       	}
       	echo $intNewUsers." New Users Since ".$strDate;
       ?>
       ```
   
 * My code might not be accurate, but its a good start:)
    Alter the admin bar – 
   [https://www.isitwp.com/add-links-to-wordpress-3-3-new-toolbar/](https://www.isitwp.com/add-links-to-wordpress-3-3-new-toolbar/)
    -  This reply was modified 5 years, 8 months ago by [bcworkz](https://wordpress.org/support/users/bcworkz/).
      Reason: code fixed
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [SSL and navigation in admin](https://wordpress.org/support/topic/ssl-and-navigation-in-admin/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/ssl-and-navigation-in-admin/#post-9655697)
 * Take a look at this [https://codex.wordpress.org/Changing_The_Site_URL](https://codex.wordpress.org/Changing_The_Site_URL)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [getting rid of extra spaces in widget area](https://wordpress.org/support/topic/getting-rid-of-extra-spaces-in-widget-area/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/getting-rid-of-extra-spaces-in-widget-area/#post-9655676)
 * I don’t see any extra spaces. I’m not sure that you mean by ‘I’d also like the
   paypal link to pop up in another tab’.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dashboard missing after login](https://wordpress.org/support/topic/dashboard-missing-after-login/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/dashboard-missing-after-login/#post-9640757)
 * Without providing a link to the troublesome site it’s very hard to properly diagnose
   the issue, you would only be getting guesses.
 * Even though your hosting plan is unlimited as far a space and bandwidth, there
   would be a limit on other resources like processing.
 * If everything was fine one day, then isn’t the next, I would look into a hack
   as the culprit.
 * Again, without a working link, it’s very hard to properly diagnose.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [Text widget accepts invalid media URL](https://wordpress.org/support/topic/text-widget-accepts-invalid-media-url/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/text-widget-accepts-invalid-media-url/#post-9640640)
 * Did previous versions not let you post invalid media based on URL?
    -  This reply was modified 8 years, 6 months ago by [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Wrong file path (css …)](https://wordpress.org/support/topic/wrong-file-path-css/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/wrong-file-path-css/#post-9640629)
 * In the database the root is listed. Update the options table, specifically the
   siteurl and home fields. Alternatively, you can update the in wp-config.php by
   adding the following…
 *     ```
       define('WP_HOME','http://example.com');
       define('WP_SITEURL','http://example.com');
       ```
   
 * More information is found here: [https://codex.wordpress.org/Changing_The_Site_URL](https://codex.wordpress.org/Changing_The_Site_URL)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Postback URLs in WordPress](https://wordpress.org/support/topic/postback-urls-in-wordpress/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/postback-urls-in-wordpress/#post-9640584)
 * You can look at the value of $_SERVER[‘HTTP_REFERER’], but you cannot count on
   the browser sending it, so your page should not depend on it being set.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [wpdb get_var not working](https://wordpress.org/support/topic/wpdb-get_var-not-working/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/wpdb-get_var-not-working/#post-9580557)
 * Do you have error reporting turned on?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Is Web Designer a new WP role?](https://wordpress.org/support/topic/is-web-designer-a-new-wp-role/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/is-web-designer-a-new-wp-role/#post-9580543)
 * Both of your sites are not the same. Install the theme or plugin that enables
   the web designer role, on the one without it. Adding a new role to WordPress 
   is pretty simple, adding/modifying the capabilities is where it gets a little
   trickier.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Delete option gone from Themes](https://wordpress.org/support/topic/delete-option-gone-from-themes/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/delete-option-gone-from-themes/#post-9482884)
 * If you can’t locate the delete button, you can delete the theme via FTP then 
   just visit the themes page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Badly set page header](https://wordpress.org/support/topic/badly-set-page-header/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/badly-set-page-header/#post-9482789)
 * `background-repeat: no-repeat;` is missing from the CSS
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drop Files To Upload – infuriating!](https://wordpress.org/support/topic/drop-files-to-upload-infuriating/)
 *  [unfinishedcode](https://wordpress.org/support/users/unfinishedcode/)
 * (@unfinishedcode)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/drop-files-to-upload-infuriating/#post-9482784)
 * Usually there it is optional. There is the drop files OR select files. If you
   are using windows, you can just drag the file to the start bar, hover over the
   browser’s icon, and the browser will show up fullscreen. Hopefully this helps.
 * Alternatively you can use the browser uploader by navigating to [http://yoursite.com/wp-admin/media-new.php](http://yoursite.com/wp-admin/media-new.php)
   
   Obviously change yoursite.com;)

Viewing 15 replies - 1 through 15 (of 69 total)

1 [2](https://wordpress.org/support/users/unfinishedcode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/unfinishedcode/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/unfinishedcode/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/unfinishedcode/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/unfinishedcode/replies/page/2/?output_format=md)