Hiroaki Miyashita
Forum Replies Created
-
Forum: Plugins
In reply to: [Dashboard Sticky Notes] Plugin has stopped showing notes on the dashboardOther plugins may cause the interference. Please try to deactivate other plugins.
Forum: Plugins
In reply to: [Dashboard Sticky Notes] Plugin has stopped showing notes on the dashboardThe data of notes still exist?
Please confirm the checkboxes in Screen Options in the right upper corner.Forum: Plugins
In reply to: [Dashboard Sticky Notes] German translationPlease send the .po and .mo files to the following address. ((at)) is @.
webmaster((at))wpgogo.com
Thank you so much.Forum: Plugins
In reply to: [Lightbox Gallery] Bug detecting custom cssPlease try to use the version 0.8.2. Thanks!
Forum: Plugins
In reply to: [Lightbox Gallery] load lightbox only in certain pagesIt is Page ID. Thanks.
Forum: Plugins
In reply to: [Custom Field Template] Where are my custom fields ?How do you make custom post types? Using any plugins or write down codes in functions.php?
I am testing with the Custom Post Type UI plugin and I think it works with the custom post type setting of the custom field template plugin.
Please also check whether you are selecting
Both
in thePost Type
section.Please try to use the
[cft]
shortcode to output custom field values.[cft forma=0]
You can edit how it outputs in the
[cft] and [cftsearch] Shortcode Format
in the custom field template option page.Auto Hook of the_content()
option may be also useful.Forum: Plugins
In reply to: [Custom Field Template] does not display the values in to the postIn order to use the
[cft]
shortcode, you need to specify theoutput
attribute in each field.[test] type = text output = true
Or you can use the
format
attribute for the[cft]
shortcode.[cft format=0]
You can edit how it outputs in the
[cft] and [cftsearch] Shortcode Format
in the custom field template option page.Forum: Plugins
In reply to: [Custom Field Template] Am I missing something?In order to output the custom fields, you need to use the shortcode or php code directly. It is easy to use the shortcode in the post content like this.
[cft key="gallery-text"] [cft key="hotel-list"]
Try the
mediaRemove
attribute.[file1] type = file mediaPicker = true mediaRemove = true
Thank you for translating into Farsi.
I will include it in the next release.
If you have your site, I will link to it from the plugin page.
Tell me the url of the site. Thanks.Forum: Plugins
In reply to: [Lightbox Gallery] Don't worksCheck out your theme has wp_head() in the header and wp_footer() in ther footer. Other plugins may conflict with this plugin. Try to deactivate other plugins one by one.
Forum: Plugins
In reply to: [Custom Field Template] CSS Float Issue in UIADMIN CSS may be old because you have been using the plugin from the old version. Please try to do the option reset or relace by the following code.
.cft { overflow:hidden; } .cft:after { content:" "; clear:both; height:0; display:block; visibility:hidden; } .cft dl { margin:10px 0; } .cft dl:after { content:" "; clear:both; height:0; display:block; visibility:hidden; } .cft dt { width:20%; clear:both; float:left; display:inline; font-weight:bold; text-align:center; } .cft dt .hideKey { visibility:hidden; } .cft dd { margin:0 0 0 21%; } .cft dd p.label { font-weight:bold; margin:0; } .cft_instruction { margin:10px; } .cft fieldset { border:1px solid #CCC; margin:5px; padding:5px; } .cft .dl_checkbox { margin:0; }
Forum: Plugins
In reply to: [Custom Field Template] Custom fields for uploading a image?Use the
file
type.[image_value] type = file relation = true
Also, you can output the image easily.
[cft key=image_value image_size=thumbnail]
Forum: Plugins
In reply to: [Custom Field Template] PHP code to use in templatesUse the `do_shortcode()’ function.
<?php echo do_shortcode('[cft format=0]'); ?>