9steps
Forum Replies Created
-
Thank you for the update!!!
It works fine on WordPress 5.2.1.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
In reply to: [IP Geo Block] Notice: Use of undefined constantお返事をいただき、どうもありがとうございます。真摯なサポートに感謝です。
他のプラグインをすべて停止して試してみたところ、Noticeが出なくなりました。もしかしたら、キャッシュ系かセキュリティ系のプラグインあたりに要因があるかもしれません。
引き続き調査してみて、もし具体的な原因が分かるようでしたら、改めてご報告いたします。
Forum: Themes and Templates
In reply to: [Lightning] モバイル時のスライドメニューの検索フォームを非表示にするには?早速のご教授をありがとうございます。
実際に試してみたところ、無事表示されなくなりました。
助かりました。ありがとうございました。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
In reply to: [Sniplets] [Plugin: Sniplets] New post bugHi,
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
In reply to: [Collapsing Categories] Include / Exclude CategoriesI’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
In reply to: [Plugin: User Photo] Can’t see photos properly in users.phpWhat 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.