Enough 0.28 テーマがライブになりました
この画面は、簡易表示です
Enough 0.28 テーマがライブになりました
カスタムメニューが表示できないという指摘がありました
原因は、テーマのスクリプトによるものです。
次回のアップデートで修正します。
表示するための方法を紹介します。
functions.php line:766if ( ! jQuery('.menu-header ul li').is('li.page_item') ) { jQuery('div.menu-header').css("display","none"); }
上のコードを以下のようにコメントアウトしてください
/* if ( ! jQuery('.menu-header ul li').is('li.page_item') ) { jQuery('div.menu-header').css("display","none"); } */
see:[Theme: Enough] Menus Not Working | WordPress.org
Thanks jbisonaroll
Widget area right margin issue
Please change style rule
skin-example.css line:105
.widget_categories, .widget_recent_entries, .widget_pages, .widget_nav_menu, .widget_recent_comments, .widget_archive, nav .widget_meta{ border:1px solid #ccc; margin:.6em 0; }
Please change from above to below.
.widget_categories, .widget_recent_entries, .widget_pages, .widget_nav_menu, .widget_recent_comments, .widget_archive, nav .widget_meta{ border:1px solid #ccc; margin-top:-1px; }
This will fixed ver 0.27
Enough0.26がライブになりました。
今回の変更は、コメントを許可している場合、タイトルの右脇にコメントボタンが表示されますが、その分タイトルの幅が、制約されていました。
コメントを許可していない場合には、制約をしないで、投稿幅いっぱいに表示できるように変更しました。
Enough0.26を本日レビュー審査に提出しました。
本日、0.25が、ライブになっていますが、0.25では、CSSファイルの再構成を行いました。
article.cssは、box-modules.cssという名前に変更しました。
フォントサイズや、フォントファミリーなど、フォント周りのスタイルを、fonts.cssに集約したりリファクタリングが中心ですが、スタイルの細かな指定も見直しました。
サイズ関係で、em,rem(CSS3)を試していましたが、マージンなどは、pxに戻した部分もあります。
全体として、安定した表示になっていると思います。
新しい、Enoughを楽しんでください
Enough 0.23がレビュー審査を通過しました
今回の変更では、みた目の変更がありますご注意ください
ライブになるまで、しばらくかかると思いますが、お楽しみに
Enough 0.23をレビュー審査に提出しました。
今回は、コメントリンクが有効に働いていなかったバグの修正
見た目の、変更を含みます。
ver 0.22の見た目を維持したい場合は、以下のように、カスタマイズしてくださいstyle.css
変更前
/* Theme Name: Enough Theme URI: https://www.tenman.info/wp3/enough/ Description: Default template is only index.php and comments.php. Responsive theme. Enough is simple but if you can add a template and template part file whenever if you want. IE browser ? , Yes Responsive. Author: Tenman Author URI: https://www.tenman.info/wp3/ Version: 0.23 Tags:white,two-columns,custom-colors, custom-header, custom-background, custom-menu, editor-style, threaded-comments, sticky-post License: GNU General Public License v2.0 License URI: http://www.gnu.org/licenses/gpl-2.0.html */ @import url("css/normalize.css"); @import url("css/articles.css"); @import url("css/comment.css"); @import url("css/ua.css"); @import url("css/colors.css"); @import url("css/base.css"); @import url("css/layout-fluid.css"); @import url("css/skin-example.css");
以下のように修正していただければ、ヘッダー画像以外は、ver.2.2の表示になります。
変更後
/* Theme Name: Enough Theme URI: https://www.tenman.info/wp3/enough/ Description: Default template is only index.php and comments.php. Responsive theme. Enough is simple but if you can add a template and template part file whenever if you want. IE browser ? , Yes Responsive. Author: Tenman Author URI: https://www.tenman.info/wp3/ Version: 0.23 Tags:white,two-columns,custom-colors, custom-header, custom-background, custom-menu, editor-style, threaded-comments, sticky-post License: GNU General Public License v2.0 License URI: http://www.gnu.org/licenses/gpl-2.0.html */ @import url("css/normalize.css"); @import url("css/articles.css"); @import url("css/comment.css"); @import url("css/ua.css"); @import url("css/colors.css"); @import url("css/base.css"); @import url("css/layout-fluid.css"); /*@import url("css/skin-example.css");*/
コメントリンクの動作が正常に動作しないバグがありましたので、
修正方法を説明します
comments.phpを開いてください
htmlコードは以下のようになっています
<?php /** * Comments template file for WordPress theme Enough * * * License: GNU General Public License v2.0 * License URI: http://www.gnu.org/licenses/gpl-2.0.html * @package Enough */ ?> <ul class="wp-list-comments"><?php wp_list_comments(); ?></ul> <br class="clear vspacer-3" /> <div class="pagenate-comment-links"> <?php paginate_comments_links();?> </div> <?php comment_form();?>
以下のように、div要素を追加してください
<?php /** * Comments template file for WordPress theme Enough * * * License: GNU General Public License v2.0 * License URI: http://www.gnu.org/licenses/gpl-2.0.html * @package Enough */ ?> <div id="comments"> <ul class="wp-list-comments"><?php wp_list_comments(); ?></ul> <br class="clear vspacer-3" /> <div class="pagenate-comment-links"> <?php paginate_comments_links();?> </div> <?php comment_form();?> </div>
このバグは、次回 ver 0.23 で修正予定です
Enough 0.22がライブになりました。
新しい Enough お楽しみください 🙂
本日、Enough 0.22をレビュー審査に提出しました。
PHP5.3環境での、バグやエラーの除去
テーマオプション画面の不具合
ヘッダー テキストの表示不具合
レイアウトの調整を行っています。
お楽しみに 🙂