Title: 9steps's Replies | WordPress.org

---

# 9steps

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

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

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My WP Customize Admin/Frontend] Notice: login_headertitle is deprecated since version 5.2.0!](https://wordpress.org/support/topic/notice-login_headertitle-is-deprecated-since-version-5-2-0/)
 *  Thread Starter [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/notice-login_headertitle-is-deprecated-since-version-5-2-0/#post-11636545)
 * Thank you for the update!!!
    It works fine on WordPress 5.2.1.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My WP Customize Admin/Frontend] Notice: login_headertitle is deprecated since version 5.2.0!](https://wordpress.org/support/topic/notice-login_headertitle-is-deprecated-since-version-5-2-0/)
 *  Thread Starter [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/notice-login_headertitle-is-deprecated-since-version-5-2-0/#post-11606085)
 * hi,
 * Thanks for your reply.
    I really appreciate your hard work and update for the
   plugins.
 * Hope you keep up the good work and life 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IP Geo Block] Notice: Use of undefined constant](https://wordpress.org/support/topic/notice-use-of-undefined-constant-3/)
 *  Thread Starter [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/notice-use-of-undefined-constant-3/#post-9713878)
 * お返事をいただき、どうもありがとうございます。真摯なサポートに感謝です。
 * 他のプラグインをすべて停止して試してみたところ、Noticeが出なくなりました。もしか
   したら、キャッシュ系かセキュリティ系のプラグインあたりに要因があるかもしれません。
 * 引き続き調査してみて、もし具体的な原因が分かるようでしたら、改めてご報告いたし
   ます。
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lightning] モバイル時のスライドメニューの検索フォームを非表示にするには？](https://wordpress.org/support/topic/%e3%83%a2%e3%83%90%e3%82%a4%e3%83%ab%e6%99%82%e3%81%ae%e3%82%b9%e3%83%a9%e3%82%a4%e3%83%89%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e3%81%ae%e6%a4%9c%e7%b4%a2%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0%e3%82%92/)
 *  Thread Starter [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/%e3%83%a2%e3%83%90%e3%82%a4%e3%83%ab%e6%99%82%e3%81%ae%e3%82%b9%e3%83%a9%e3%82%a4%e3%83%89%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e3%81%ae%e6%a4%9c%e7%b4%a2%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0%e3%82%92/#post-7538543)
 * 早速のご教授をありがとうございます。
    実際に試してみたところ、無事表示されなく
   なりました。 助かりました。ありがとうございました。
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Snippets - Custom WordPress Code Snippets Customizer] [Plugin: Post Snippets] PHP code snippet doesn't work on get_post_snippet in the theme](https://wordpress.org/support/topic/plugin-post-snippets-php-code-snippet-doesnt-work-on-get_post_snippet-in-the-theme/)
 *  Thread Starter [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-post-snippets-php-code-snippet-doesnt-work-on-get_post_snippet-in-the-theme/#post-2921029)
 * I made a little hack for the problem.
 * added this code in post-snippets.php(line 690 between the function “get_snippet”):
 *     ```
       public function get_snippet( $snippet_name, $snippet_vars = '' )
       	{
       		$snippets = get_option( self::PLUGIN_OPTION_KEY );
   
       		for ($i = 0; $i < count($snippets); $i++) {
       			if ($snippets[$i]['title'] == $snippet_name) {
       				parse_str( htmlspecialchars_decode($snippet_vars), $snippet_output );
       				$snippet = $snippets[$i]['snippet'];
       				$var_arr = explode(",",$snippets[$i]['vars']);
   
       				if ( !empty($var_arr[0]) ) {
       					for ($j = 0; $j < count($var_arr); $j++) {
       						$snippet = str_replace("{".$var_arr[$j]."}", $snippet_output[$var_arr[$j]], $snippet);
       					}
       				}
   
       /* ---- added this code  */
       				if ($snippets[$i][php] == TRUE) {
       					$snippet = stripslashes($snippet);
       					ob_start();
       					eval ($snippet);
       					$snippet = ob_get_clean();
       					$snippet = addslashes( $snippet );
       				}
       /* ---- added this code  */
   
       			}
       		}
       		return $snippet;
       	}
       ```
   
 * and now, get_post_snippet function with php code option in a theme works OK.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sniplets] [Plugin: Sniplets] New post bug](https://wordpress.org/support/topic/plugin-sniplets-new-post-bug/)
 *  [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-sniplets-new-post-bug/#post-1894959)
 * Hi,
 * I have the same problem on WP3.3 with Sniplets. I’ve tried the fix but does not
   work unfortunately.
 * I suppose that jQuery and jQuery UI update on WP3.3 make this problem happened.
   Anyone knows how to fix this?
 * Regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Collapsing Categories] Include / Exclude Categories](https://wordpress.org/support/topic/include-exclude-categories/)
 *  [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/include-exclude-categories/#post-2234834)
 * I’ve tested ver. 2.0.2 on WP3.2.1 for the same purpose to show just 2 categories
   from 24 of them. Unfortunately, the include option does not work at all while
   the exclude option works fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: User Photo] Can’t see photos properly in users.php](https://wordpress.org/support/topic/plugin-user-photo-cant-see-photos-properly-in-usersphp/)
 *  [9steps](https://wordpress.org/support/users/9steps/)
 * (@9steps)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-user-photo-cant-see-photos-properly-in-usersphp/#post-1228930)
 * What I did was this to see thumbnails on /wp-admin/users.php under the administrative
   settings.
 * change user-photo.php(line 79):
 *     ```
       if(get_option("userphoto_override_avatar") && !is_admin())
       ```
   
 * to
 *     ```
       if(get_option("userphoto_override_avatar"))
       ```
   
 * and then add a line for adding an action on admin_head(line 85):
 *     ```
       add_action("init", "userphoto__init");
       add_action("admin_head", "userphoto__init", 1); // add this line
       ```
   
 * Of course, you need to set “Override Avatar with User Photo” option “on” with
   User Photo plugin.

Viewing 8 replies - 1 through 8 (of 8 total)