Forum Replies Created

Viewing 15 replies - 196 through 210 (of 316 total)
  • Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    他のプラグインとの競合や WP 標準のログイン・コメントフォームではない等が考えられます。
    ご使用のプラグインや表示している場所(URL など)をお知らせください。

    Plugin Author ishitaka

    (@ishitaka)

    はい、MySQL 5.6以上であれば、Mroonga エンジンがなくても動作します。
    ※ パフォーマンスの観点から、おすすめは Mroongaエンジンですが… (^^♪

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    現段階の MariaDB では日本語(分かち書きなし)に対応した全文検索はできないと思います(たぶん)。なお、MariaDB でも Mroonga エンジンが使用できる環境であれば使用できます。
    このプラグインの全文検索はデータベースの機能に委ねているので、MariaDB(Mroonga なし)への対応は難しいです。m(__)m

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    プラグインに、そのような機能はありません。カスタマイズやプラグイン本体に実装することも考えてみましたが、簡単な方法を思いつきませんでした。m(__)m

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    There is no function to give feedback on comments.
    Thank you for the suggestion. I will consider it.
    As for the ability to add a blacklist of user registration emails, there is a great Ban Hammer plugin that specializes in this, so we are not looking to add that feature at this time.

    Plugin Author ishitaka

    (@ishitaka)

    新規にページを作成頂きありがとうございます。おかげで原因が分かりました。
    JavaScript がヘッダーに移動されていて、プラグインが移動することを考慮していなかったのが原因でした。
    プラグインを修正(バージョン3.3.1)しましたので、更新して試してみてください。

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    スライド設定の「コンテンツ」パラメーターをオフにすると .slide-content のタグは出力されなくなりますが、これではダメなのでしょうか?

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    All In One SEO Pack、SEO SIMPLE PACK プラグイン共に現象を再現することができませんでした。
    テーマや他のプラグインの影響(キャッシュなど)かもしれません。もう少し状況(使用テーマ・プラグイン、動作を確認できるページの URL など)を教えていただけませんか?

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    イベント投稿は xo_event カスタム投稿、イベント開始日は event_start_date カスタムフィールド、イベント終了日は event_end_date カスタムフィールドに格納されています。

    2020年のイベント投稿は下記のようなコードで取得することができます。

    $year = 2020;
    
    $args = array(
    	'post_type' => 'xo_event',
    	'post_status' => 'publish',
    	'orderby' => array( 'event_start_date' => 'ASC', 'event_end_date' => 'DESC' ),
    	'meta_query' => array(
    		'event_start_date' => array( 'key' => 'event_start_date', 'value' => "$year-12-31", 'compare' => '<=', 'type' => 'DATE' ),
    		'event_end_date' => array( 'key' => 'event_end_date', 'value' => "$year-01-01", 'compare' => '>=', 'type' => 'DATE' ),
    	),
    	'posts_per_page' => -1,
    );
    
    $the_query = new WP_Query( $args );
    if ( $the_query->have_posts() ) {
    	while ( $the_query->have_posts() ) {
    		$the_query->the_post();
    
    		// イベント開始日を取得
    		$start_date = get_post_meta( $post->ID, 'event_start_date', true );
    
    		// イベント終了日を取得
    		//$end_date = get_post_meta( $post->ID, 'event_end_date', true ); 
    
    		echo '<a href="' . get_permalink() . '">' . get_the_title() . '</a> イベント日: ' . esc_html( date_i18n( 'Y年n月j日', strtotime( $start_date ) ) );
    	}
    	wp_reset_postdata();
    }
    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    Unfortunately, I don’t have ajax events. Sorry for not living up to your expectations.

    To display the month specified by the URL parameter, the code would look like the following.

    add_action( "xo_event_calendar_args", function( $args ) {
    	if ( isset( $_GET['month'] ) ) {
    		$months = array( 'january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december' );
    		$reg = implode( '|', $months );
    		$month = sanitize_text_field( $_GET['month'] );
    		if ( preg_match( '/(' . implode( '|', $months ) . ')\s([0-9]{4})/', $month, $matchs ) ) {
    			$args['month'] = array_search( $matchs[1], $months ) + 1;
    			$args['year'] = $matchs[2];
    		}
    	}
    	return $args;
    } );
    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    Unfortunately, there is no ability to add custom text or title names to thumbnails and generate them automatically.

    This is a good suggestion and we will consider it in the future. Thank you very much.

    Plugin Author ishitaka

    (@ishitaka)

    CAPTCHA only works in environments where the PHP session module is available. 🙇

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    Can I add an option to log only login failures in the login log?

    You cannot prevent the login log success from being recorded because you are using it. However, you can filter success on the login log screen. Also, you can now select the status to display by default in the new version (3.1.2).

    the login log does not display the filtering function on the mobile terminal.

    I would like to consider implementing this in the future.

    Thank you very much for your valuable suggestion.

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    For this HTML, the image with media ID 12216 is the target.
    Does the image with media ID 12216 exist?
    (Your Site Address)/?attachment_id=12216

    • This reply was modified 5 years ago by ishitaka.
    Plugin Author ishitaka

    (@ishitaka)

    解決したようでよかったです。こちら「解決済み」とマークさせてもらいます。

    ・・と共に、知り合いにも教えます。

    ありがとうございます😊

Viewing 15 replies - 196 through 210 (of 316 total)