Forum Replies Created

Viewing 15 replies - 241 through 255 (of 316 total)
  • Plugin Author ishitaka

    (@ishitaka)

    「トップページ第6ブロック」というのが分かりません。テーマ固有のブロックでしょうか?
    たぶんですが、このブロックはショートコードに対応していないと思われます。
    直ぐ下に、ショートコードブロックを追加するのではダメなのでしょうか?

    Plugin Author ishitaka

    (@ishitaka)

    「デザインテーマ」というのが分かりません。テーマ固有の機能でしょうか?ここで、ショートコードは有効なのでしょうか?

    ちなみに、テンプレートの場合は、
    <?php echo do_shortcode( '[xo_event_calendar]' ); ?>
    このように記述する必要があります。

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    テーマ名と記述したブロック名 (ショートコードブロック、クラシックブロック?)、記述したショートコードをお知らせください。

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    I looked at the site. I couldn’t find the problem.
    Sorry for the inconvenience, but could you please check the error in debug mode?
    Thank you.

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    In the next version, we’ll decide to display an example date format near the field where you enter the date.
    Think positively about how to enter a date range.
    Thank you very much for the useful suggestions.

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

    (@ishitaka)

    Hi, thanks.
    Released modified version (3.1.2).
    Fixed an issue where all images were automatically deleted.
    The delay in the content of the first view was made less noticeable. Please wait for a while to make a fundamental correction.
    Please try it out.

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

    (@ishitaka)

    同じ ID の場合、最初にある ID のスライダーのみ動作するみたいです。
    ページ内に同じ ID が存在するのも違和感あります…
    とりあえず自動で連番をふるいい方法が思いつかないので、ユーザーが ID を指定できるようにしようと思います。ユーザー任せです。(^^♪
    また、何かありましたら宜しくお願い致します。

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    PHP のバージョンが5.3以下の場合に表示されるエラーです。このプラグインは、PHP 5.6以上が必要です。
    今回は、バージョン2.2.4で対応しましたが、将来的には対応できないかもしれません。バージョンアップアップが可能であればバージョンを5.6以上 (できれば WordPress 推奨の7.2以上) にアップデートしてください。

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    現状は、設定順で最後の休日のクラス名 (holiday-xxx) のみです。
    これを、すべての休日のクラス名を追加するショートコードのオプションを追加したバージョン2.2.2をリリースしました。デフォルトはオフなので、下記のように xo_event_calendar ショートコードの multiple_holiday_classs オプションで true を指定してください。

    [xo_event_calendar holidays="all,public" multiple_holiday_classs="true"]

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    報告ありがとうございます。

    ここ気になっていた場所なんです。(^^;
    ページ内で連番をふるいい方法が思いつかず、悩んでいたところだったりします。あの、最も人気のあるスライダープラグインも同じ問題を抱えていたので放置してしまいました。
    再考してみようと思います。

    Plugin Author ishitaka

    (@ishitaka)

    フィールド名 link

    フィールド名が「link」なので、下記のように変更してください。

    get_field( 'リンク', $event['post']->ID );

    get_field( 'link', $event['post']->ID );

    Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    イベント投稿に複数のイベント日を登録することは難しいです。カスタムフィールドにリンク先を追加して、カレンダーの表示のリンクをカスタムフィールドのリンクへ変更するのはどうでしょうか?

    下記は、Advanced Custom Fields プラグインを使用してリンク (Link URL) カスタムフィールドをイベント投稿に追加した場合の例です。

    テーマの functions.php に、

    function my_xo_event_calendar_events( $events, $args, $month_index ) {
    	foreach( $events as &$event) {
    		$url = get_field( 'リンク', $event['post']->ID );
    		$event['permalink'] = esc_url( $url );
    	}
    	return $events;
    }
    
    if ( function_exists( 'get_field' ) ) {
    	add_filter( 'xo_event_calendar_events', 'my_xo_event_calendar_events', 10, 3 );
    }
    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    xo_event_calendar_events filter hooks allow you to change the event data in the calendar.
    See this page for more information on how to use the xo_event_calendar_events filter hook.

    Example: In the functions.php of the theme,

    function my_xo_event_calendar_events( $events, $args, $month_index ) {
    	if ( 'xo-event-calendar-1' === $args['id'] ) {
    		foreach( $events as &$event) {
    			$cats = get_the_terms( $event['post']->ID, 'xo_event_cat' );
    			if ( $cats ) {
    				$event['permalink'] = get_term_link( $cats[0] );
    			}
    		}
    	}
    	return $events;
    }
    add_filter( 'xo_event_calendar_events', 'my_xo_event_calendar_events', 10, 3 );
    Plugin Author ishitaka

    (@ishitaka)

    This plugin only sets the Featured image. Nothing else will be changed.

    Plugin Author ishitaka

    (@ishitaka)

    Hi,

    I have 100,000 Posts. Many of which are missing featured image. Can you tell me how much RAM will this plugin use?

    Since it is processed by Ajax one by one, I think that it works even if the number of cases is large. However, the processing speed is slow. In my test environment, processing 2000 out of 100,000 took about 76 minutes.

    Can I run some posts every hour? Using cron or something else? Because I am sure the server will crash if I run this on 100000 posts.

    I don’t use wp-cron. There is no function to run hourly.

    Do the feature images stay when the plugin is removed?

    This plugin only sets the featured image. Even if you delete the plugin, the image of interest in the post will remain the same.

    And Does it work fine with cache plugins?

    I think it works, though it depends on the cache plugin.
    Testing with the WP Super Cache plugin worked fine.

Viewing 15 replies - 241 through 255 (of 316 total)