tnomi
Forum Replies Created
-
Forum: Plugins
In reply to: [Online Lesson Booking] admin viewHi,
Sorry for my late reply.
Is it like this?
https://olbsys.com/extensions/codes/olb-addon-all-schedule/However, this is a paid module, we will better to avoid talking about it here.
I think we should change the place where we talk.Regards
Forum: Plugins
In reply to: [Attendance Manager] 日にちの設置以下のようなスタイルを設定してみてはどうでしょうか。
<style> form#attmgr_admin_scheduler { height: 100vh; overflow: scroll; } .attmgr_admin_scheduler tr:first-child th { background-color: #000; color: #fff; position: sticky; top: 0; z-index: 1; } </style>
Forum: Plugins
In reply to: [Attendance Manager] match scheduleSorry for the late reply.
Unfortunately, only one schedule per day can be registered with this plugin.Forum: Plugins
In reply to: [Attendance Manager] Week beginning on MondayI’m sorry. I couldn’t do that.
I think about it.Forum: Plugins
In reply to: [Online Lesson Booking] 講師が管理画面に入らずに、投稿する方法。Forum: Plugins
In reply to: [Online Lesson Booking] TranslationOLB is possible localization.
Default language is “Site Language” of your WordPress.
(See “Settings: General : Site Language”)Localisation languages are “English” and “Japanese”.
You can localize it by other plugin “Loco Translate”.
https://www.ads-software.com/plugins/loco-translate/Forum: Plugins
In reply to: [Online Lesson Booking] Time zone different for student and tutorIt can not do that.
Sorry.Forum: Plugins
In reply to: [Online Lesson Booking] editschedule dosen’t work.Hello,
Are you using “Zerif Lite” or “Llorix One Lite” or “ZBlackbeard” theme?
If so, is this page a solution?
https://olbsys.com/problems-with-theme/That page is written in Japanese. Please try translate it.
Forum: Plugins
In reply to: [Attendance Manager] メンバーの写真が表示されません。ver 0.5.2 でアバターに対応しました。
https://attmgr.com/ver-0-5-2/管理画面「Attendance Manager:一般」の「スタッフ画像」で「アバターを使う」を選択できます。
Forum: Plugins
In reply to: [Attendance Manager] メンバーの写真が表示されません。次のバージョンアップは時期未定ですが、アバター表示の件は考えてみます。
それまでの間は、以下の手順でメンバーの画像を表示することができます。
https://attmgr.com/#staff_info- 各スタッフの紹介記事を投稿します
- その記事に、ショートコード [attmgr_weekly id=”xx”] を挿入します
- その記事に「アイキャッチ画像」を付けて記事を公開します
アイキャッチ画像が表示されるかどうかはお使いのテーマによりますので、表示されない場合はテーマを調整されてみてください。
Forum: Plugins
In reply to: [Online Lesson Booking] Limiting the number of appointmentsI’m relieved to hear that. Thank you.
Forum: Plugins
In reply to: [Online Lesson Booking] Limiting the number of appointmentsDid you tried ticket system?
https://olbsys.com/en/setup/members/#update_ticketOLB has a payment module, but it is necessary to purchase.
Please try to see also here.
https://olbsys.com/extensions/Forum: Plugins
In reply to: [Attendance Manager] PHP ErrorThank you for advice.
Forum: Plugins
In reply to: [Attendance Manager] PHP ErrorI will update it sometime this week or next week.
Forum: Plugins
In reply to: [Attendance Manager] PHP ErrorThank you for your feedback.
Please try to change like the following code for now.
/attendance-manager/class/class-attmgr.php on line 239Before:
public function current_user() { // Current operator get_currentuserinfo(); ...
After:
public function current_user() { global $current_user; // Current operator if( function_exists( 'wp_get_current_user' ) ){ $current_user = wp_get_current_user(); } else{ get_currentuserinfo(); } ...
And I would like to correct it in the next version.