Hiroaki Miyashita
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Another Advanced Feature RequestHi pampfelimetten,
I tried it as a non-admin account, but it seems to work properly. Could you tell me the account level and any addditional information about your situation. Thanks.Forum: Plugins
In reply to: [Plugin: Custom Field Template] HTML view in the TinyMCE custom fields?In the version 1.0.4, I added the attribute of HTML Editor in the textarea. Please set
htmlEditor = true
in the textarea field. Thanks.Forum: Plugins
In reply to: [Plugin: Custom Field Template] Default values not picked upThe default value is only set in the new post and until saving data. I should modify this…. I may add a button to set default values. Please be patient for some more time. Thanks.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Another Advanced Feature RequestI released the version 1.0.3. If you set the category ID to the custom field template, it is only shown in the case that you check the category you set. The title of the template is shown if you set multiple templates. Thank you.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Another Advanced Feature RequestI released the version 1.0.1. In the setting page, I added the category sections in each template. If you set Category ID (comma-deliminated) in the field, in the edit post page, templates will be switched when you check the categories. About page-template-specific fields, if you save the post once, the last template you selected before saving will be shown in the next time. So I think it is not necessary to interlock with the page custom field template and page template. Hmmm, I will keep thinking. Anyway, please try out the category switching. Thanks.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Ajax template loading a problemI added the save button and the auto save option. If you check
Use the auto save in switching templates
in the setting page of the custom field template, the values are automatically saved when you switch templates. I hope this will work for you. Thanks.Thank you for letting me know the bug. I fixed it in the latest version of the custom field template. Please try it out. Thanks.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] german translation – downloadThank you for translating into German. I really appreciate it. I will include it in the next release. I will explain the usage and show some examples in the near future. Thanks.
Forum: Fixing WordPress
In reply to: [Plugin: Custom Field Template] need helpFormat
is only for the frontend. You can not use [cft] shortcode format for the custom field template of post/page edit in admin panel. You can use any html tags and css in the [cft] shortcode format. CFT just do convert [key] to the value of [key]. If the value is empty, the value is blank. About your code, the loop seems to be redundant but I do not have time to check it now. Sorry….Forum: Plugins
In reply to: Add custom field to each postThis is an example by use of the custom field template plugin.
TEMPLATE #0
[Contact] type = text size = 35 [Phone] type = text size = 35
[cft] Shortcode Format
FORMAT #0Contact: [Contact] phone: [Phone]
In the post, you have to add this:
[cft format=0]
That’s it:)
Forum: Fixing WordPress
In reply to: [Plugin: Custom Field Template] need helpI fixed this bug in the version 0.9.2. Please try to use it.
[cft] has two display option. One is just a listing based on
output = true
like [cft template=1]. This is limited to a certain template. The default istemplate = 0
. The other is based on the shortcode format like [cft format=1]. This is not limited to a certain template.If you set
post_id
in the shortcode like [cft post_id=3], the custom fields related to post_id=3 are displayed. If you do not specify the post_id like [cft], the custom fields of the current post will be shown.Do you want to show all custom fileds in posts within a certain category? You have to write some scripts with a loop. This is an example.
<?php while (have_posts()) : the_post(); echo $custom_field_template->output_custom_field_values(array('post_id' => $post->ID, 'format'=>1)); endwhile; ?>
Forum: Fixing WordPress
In reply to: [Plugin: Custom Field Template] Usage?The way like following code is already supported.
[Favorite Fruits] type = checkbox value = apple # orange # banana # grape default = orange # grape
I added the sort option like
sort = asc
orsort = desc
, but I will consider the free sort option. Thanks.Forum: Plugins
In reply to: [Plugin: Custom Field Template] small requestI made the option list table styled in the latest version. It may be only for WordPress 2.7….
Forum: Plugins
In reply to: [Plugin: Custom Field Template] 2.7’s post quick editAt last, I added the Quick Edit functionality. TinyMCE and medhiaButton are not supported yet. I will keep developing. Thanks.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] 2.7’s post quick editQuick Edit is a vert good idea. I would like to add this functionality. I am looking at the WP core files, and it seems a little difficult. I will keep developing, but it may take more time. Thank you for your patience.