Enough info

WordPress theme Enough

この画面は、簡易表示です

未分類

バグレポート

カスタムメニューが表示できないという指摘がありました

原因は、テーマのスクリプトによるものです。

次回のアップデートで修正します。

表示するための方法を紹介します。

functions.php line:766
if ( ! 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:301 Moved Permanently

Thanks jbisonaroll



Bug report ver 0.26

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



Enough 0.26 ライブになりました

Enough0.26がライブになりました。

今回の変更は、コメントを許可している場合、タイトルの右脇にコメントボタンが表示されますが、その分タイトルの幅が、制約されていました。

コメントを許可していない場合には、制約をしないで、投稿幅いっぱいに表示できるように変更しました。



Enough 0.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");*/


bug report

コメントリンクの動作が正常に動作しないバグがありましたので、

修正方法を説明します

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 で修正予定です




top