フォーラムへの返信

10件の返信を表示中 - 1 - 10件目 (全10件中)
  • フォーラム: 使い方全般
    返信が含まれるトピック: カスタム投稿タイプページのリダイレクト
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    ありがとうございます。最初に投稿したソースがカスタム投稿タイプを全てリダイレクトする内容だったようで、ご連絡いただいたソースでリダイレクトは行えるようにはなったのですが自動削除した内容ではなく、投稿したものが全てリダイレクトになりました。イベント投稿した内容に対してなので404で返してあげる方がSEO的にはいいようですのでそのようにしていこうと思います。お忙しい中、ありがとうございました。

    フォーラム: プラグイン
    返信が含まれるトピック: ACFの日付時刻ピッカーを日本語表示にしたい
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    ありがとうございます!

    ACFにJavaScript APIがあったのですね。ACFのサイトをもう少し確認してみます。

    ありがとうございました。

    フォーラム: プラグイン
    返信が含まれるトピック: The Event Calendarのオーバーライド階層について
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    こんにちわ。

    なんとか、moファイルをpoに変換してTranslating WordPressからダウンロードしたmoファイルのソースを使って翻訳を反映することが出来ました。

    Translating WordPressからダウンロードしたmoファイルを活かさないとうまくいきませんでした。
    ありがとうございました。

    フォーラム: プラグイン
    返信が含まれるトピック: The Event Calendarのオーバーライド階層について
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    ありがとうございました。

    フォーラム: プラグイン
    返信が含まれるトピック: The Event Calendarのオーバーライド階層について
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    こんにちわ。

    ありがとうございます。
    こちらのように入れてみましたが
    <?php
    /**
    * View: Top Bar – Date Picker
    *
    * Override this template in your own theme by creating a file at:
    * [your-theme]/tribe/events/v2/list/top-bar/datepicker.php
    *
    * See more documentation about our views templating system.
    *
    * @link {INSERT_ARTCILE_LINK_HERE}
    *
    * @version 5.0.1
    *
    * @var bool $is_now Whether the date selected in the datepicker is “now” or not.
    * @var bool $show_now Whether to show the “Now” label as range start or not.
    * @var string $now_label The “Now” text label.
    * @var string $now_label_mobile The “Now” text label for mobile.
    * @var bool $show_end Whether to show the end part of the range or not.
    * @var string $selected_start_datetime The selected start date and time in the localized Y-m-d format.
    * @var string $selected_start_date_mobile The formatted date that will show in the datepicker mobile version.
    * @var string $selected_start_date_label The label of the datepicker interval start.
    * @var string $selected_end_datetime The selected end date and time in the localized Y-m-d format.
    * @var string $selected_end_date_mobile The formatted date that will show in the datepicker mobile version.
    * @var string $selected_end_date_label The label of the datepicker interval end.
    * @var string $datepicker_date The datepicker selected date, in the Y-m-d format.
    */

    ?>
    <div class=”tribe-events-c-top-bar__datepicker”>
    <button
    class=”tribe-common-h3 tribe-common-h–alt tribe-events-c-top-bar__datepicker-button”
    data-js=”tribe-events-top-bar-datepicker-button”
    type=”button”
    aria-label=”<?php esc_attr_e( ‘Click to toggle datepicker’, ‘the-events-calendar’ ); ?>”
    title=”<?php esc_attr_e( ‘Click to toggle datepicker’, ‘the-events-calendar’ ); ?>”
    >
    <time
    datetime=”<?php echo esc_attr( $selected_start_datetime ); ?>”
    class=”tribe-events-c-top-bar__datepicker-time”
    >
    <?php if ( $show_now ) : ?>
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( str_replace( ‘onwards’, ‘以降’, $now_label_mobile ) ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( str_replace( ‘onwards’, ‘以降’, $now_label ) ); ?>
    </span>
    <?php else : ?>
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( $selected_start_date_mobile ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( $selected_start_date_label ); ?>
    </span>
    <?php endif; ?>
    </time>
    <?php if ( $show_end ) : ?>
    <span class=”tribe-events-c-top-bar__datepicker-separator”> – </span>
    <time
    datetime=”<?php echo esc_attr( $selected_end_datetime ); ?>”
    class=”tribe-events-c-top-bar__datepicker-time”
    >
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( $selected_end_date_mobile ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( $selected_end_date_label ); ?>
    </span>
    </time>
    <?php endif; ?>
    </button>
    <label
    class=”tribe-events-c-top-bar__datepicker-label tribe-common-a11y-visual-hide”
    for=”tribe-events-top-bar-date”
    >
    <?php esc_html_e( ‘Select date.’, ‘the-events-calendar’ ); ?>
    </label>
    <input
    type=”text”
    class=”tribe-events-c-top-bar__datepicker-input tribe-common-a11y-visual-hide”
    data-js=”tribe-events-top-bar-date”
    id=”tribe-events-top-bar-date”
    name=”tribe-events-views[tribe-bar-date]”
    value=”<?php echo esc_attr( $datepicker_date ); ?>”
    tabindex=”-1″
    autocomplete=”off”
    readonly=”readonly”
    />
    <div class=”tribe-events-c-top-bar__datepicker-container” data-js=”tribe-events-top-bar-datepicker-container”></div>
    </div>

    サイト上から項目が消えてしまいました。
    https://03.naturetest.net/events/
    お手数お掛けして申し訳ありません。

    よろしくお願いいたします。

    フォーラム: プラグイン
    返信が含まれるトピック: The Event Calendarのオーバーライド階層について
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    /src/Tribe/Views/V2/Views/Traits/List_Behavior.php
    にある

    $now_label = sprintf(
    // translators: the placeholder is for the date range start, e.g. “Now” or “October 23”.
    _x( ‘%s onwards’, ‘The datepicker range definition when no events are found.’, ‘the-events-calendar’ ),
    $onwards_label_start
    );

    $now_label_mobile = sprintf(
    // translators: the placeholder is for the date range start, e.g. “Now” or “1/1/2020”.
    _x( ‘%s onwards’, ‘The datepicker range definition when no events are found (for mobile).’, ‘the-events-calendar’ ),
    $onwards_label_start_mobile
    );

    を呼び出して
    /tribe/events/v2/list/top-bar/datepicker.php
    で表示させるということだと思いますが
    /src/Tribe/Views/V2/Views/Traits/List_Behavior.phpは%s onwardsのテキストを置き換えてのオーバーライドは行えないということですかね。

    フォーラム: プラグイン
    返信が含まれるトピック: The Event Calendarのオーバーライド階層について
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    ご連絡ありがとうございます。
    moファイルへの編集の仕方がイマイチわからず、The Event Calendarからもmoファイルの編集ではうまくいかなかったと連絡があって別の方法を考えていたのですが。
    >テンプレートファイルは、
    >子テーマ/tribe/events/v2/list/top-bar/datepicker.php
    は以下の内容ですが%s onwardsに関連するところがなさそうなのですが

    <?php
    /**
    * View: Top Bar – Date Picker
    *
    * Override this template in your own theme by creating a file at:
    * [your-theme]/tribe/events/v2/list/top-bar/datepicker.php
    *
    * See more documentation about our views templating system.
    *
    * @link {INSERT_ARTCILE_LINK_HERE}
    *
    * @version 5.0.1
    *
    * @var bool $is_now Whether the date selected in the datepicker is “now” or not.
    * @var bool $show_now Whether to show the “Now” label as range start or not.
    * @var string $now_label The “Now” text label.
    * @var string $now_label_mobile The “Now” text label for mobile.
    * @var bool $show_end Whether to show the end part of the range or not.
    * @var string $selected_start_datetime The selected start date and time in the localized Y-m-d format.
    * @var string $selected_start_date_mobile The formatted date that will show in the datepicker mobile version.
    * @var string $selected_start_date_label The label of the datepicker interval start.
    * @var string $selected_end_datetime The selected end date and time in the localized Y-m-d format.
    * @var string $selected_end_date_mobile The formatted date that will show in the datepicker mobile version.
    * @var string $selected_end_date_label The label of the datepicker interval end.
    * @var string $datepicker_date The datepicker selected date, in the Y-m-d format.
    */

    ?>
    <div class=”tribe-events-c-top-bar__datepicker”>
    <button
    class=”tribe-common-h3 tribe-common-h–alt tribe-events-c-top-bar__datepicker-button”
    data-js=”tribe-events-top-bar-datepicker-button”
    type=”button”
    aria-label=”<?php esc_attr_e( ‘Click to toggle datepicker’, ‘the-events-calendar’ ); ?>”
    title=”<?php esc_attr_e( ‘Click to toggle datepicker’, ‘the-events-calendar’ ); ?>”
    >
    <time
    datetime=”<?php echo esc_attr( $selected_start_datetime ); ?>”
    class=”tribe-events-c-top-bar__datepicker-time”
    >
    <?php if ( $show_now ) : ?>
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( $now_label_mobile ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( $now_label ); ?>
    </span>
    <?php else : ?>
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( $selected_start_date_mobile ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( $selected_start_date_label ); ?>
    </span>
    <?php endif; ?>
    </time>
    <?php if ( $show_end ) : ?>
    <span class=”tribe-events-c-top-bar__datepicker-separator”> – </span>
    <time
    datetime=”<?php echo esc_attr( $selected_end_datetime ); ?>”
    class=”tribe-events-c-top-bar__datepicker-time”
    >
    <span class=”tribe-events-c-top-bar__datepicker-mobile”>
    <?php echo esc_html( $selected_end_date_mobile ); ?>
    </span>
    <span class=”tribe-events-c-top-bar__datepicker-desktop tribe-common-a11y-hidden”>
    <?php echo esc_html( $selected_end_date_label ); ?>
    </span>
    </time>
    <?php endif; ?>
    </button>
    <label
    class=”tribe-events-c-top-bar__datepicker-label tribe-common-a11y-visual-hide”
    for=”tribe-events-top-bar-date”
    >
    <?php esc_html_e( ‘Select date.’, ‘the-events-calendar’ ); ?>
    </label>
    <input
    type=”text”
    class=”tribe-events-c-top-bar__datepicker-input tribe-common-a11y-visual-hide”
    data-js=”tribe-events-top-bar-date”
    id=”tribe-events-top-bar-date”
    name=”tribe-events-views[tribe-bar-date]”
    value=”<?php echo esc_attr( $datepicker_date ); ?>”
    tabindex=”-1″
    autocomplete=”off”
    readonly=”readonly”
    />
    <div class=”tribe-events-c-top-bar__datepicker-container” data-js=”tribe-events-top-bar-datepicker-container”></div>
    </div>

    src/Tribe/Views/V2/Views/Traits/List_Behavior.phpのオーバーライドは
    子テーマ/tribe/events/v2/Views/Traits/List_Behavior.phpで行えるということでしょうか?

    フォーラム: プラグイン
    返信が含まれるトピック: Event Ticketsの¥表示による.00の削除方法
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    お気遣いいただきありがとうございます。
    function.phpにadd_filter( ‘tribe_format_amount_decimals’, ‘__return_zero’ );
    を追記したところ確かに変更されました!
    感謝いたします。
    ありがとうございました!

    フォーラム: プラグイン
    返信が含まれるトピック: Event Ticketsの¥表示による.00の削除方法
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    こんにちわ。

    ご連絡ありがとうございます。
    海外のサイトで質問していろいろ試みていたのですが解決に至らず悩んでいたところでした。

    ご連絡いただいた内容で
    $decimals = apply_filters( ‘tribe_format_amount_decimals’, 2 );
    の2の部分を0に変更したところ.00を無くすことができました。

    何とお礼を言っていいか、本当にありがとうございます!

    フォーラム: 使い方全般
    返信が含まれるトピック: Front Pageのタイトル削除
    トピック投稿者 hiro0913jp

    (@hiro0913jp)

    ありがとうございます!
    いま管理画面を開いたら理由は分からないのですがFront Pageから消したかった
    タイトルが消えてました。
    お騒がせ致しました。

10件の返信を表示中 - 1 - 10件目 (全10件中)