Posts: 6
Threads: 0
Joined: Jul 2011
Connie Wrote:debug-mode adds error messages at the top of the page which help to identify the problems
did you see the screenshot above from the deug mode?
it doesnt show a error for the custom field plugin. or i am wrong?
Posts: 2,928
Threads: 195
Joined: Feb 2011
I saw the screenshot and it does not show something for your problem indeed
I just wanted to explain the purpose of the debug mode
Posts: 1,204
Threads: 30
Joined: Jun 2010
Is there a way to use customfields (along with dynpages plugin) to load content of other pages ?
Let's assume there are 3 pages which contain different content.
When I create or edit a page, I'd like to embed content of one (or more) pages by choosing it from dropdown list or by marking a checkbox.
I'm using currently dynpages, but it would be nice to have a bit more automated solution to place content from other pages using customfields, which would be more pleasant to use instead of components.
It would need some changes in CF plugin of course, but maybe there's an other solution than CF+dynpages ?
Addons: blue business theme, Online Visitors, Notepad
Posts: 524
Threads: 48
Joined: Mar 2011
I'm testing the 3.1 beta right now, haven't touched any .htaccess. I'm having problems accessing the page browser from within a custom field "link" (plugin version is 1.7). A window opens, but I'm getting a 403 error in there. I know it's a beta, any idea though?
Can't replicate this on my 3.0 test install, works there as expected
Posts: 2,094
Threads: 54
Joined: Jan 2011
ronatgetsimple Wrote:i can configure the plugin - all ok
the custom fields show in page options
but when values are added and page is saved - nothing is in the field anymore.
Are you using any other plugins? Which? Maybe there is a conflict.
Posts: 2,094
Threads: 54
Joined: Jan 2011
2011-09-03, 23:44:18
(This post was last modified: 2011-09-03, 23:49:20 by nime.)
I18N Custom Fields version 1.8: - allows to search for text in custom fields (with I18N Search 2.0+) - just check the checkbox in the custom fields configuration to add a field's content to the search index
- added french language (unknown author)
Posts: 36
Threads: 3
Joined: Sep 2011
Thanks for this great plugin! Could you add a textarea as an input type? I'm using the "Long Text" field type now, but I'd like to be able to enter text on multiple lines. I can't use the WYSIWYG type because the editor adds HTML that I don't want.
Posts: 2,094
Threads: 54
Joined: Jan 2011
filupn Wrote:Thanks for this great plugin! Could you add a textarea as an input type? I'm using the "Long Text" field type now, but I'd like to be able to enter text on multiple lines. I can't use the WYSIWYG type because the editor adds HTML that I don't want.
I'll add it to the TODOs for the next version.
Posts: 36
Threads: 3
Joined: Sep 2011
mvlcek Wrote:filupn Wrote:Thanks for this great plugin! Could you add a textarea as an input type? I'm using the "Long Text" field type now, but I'd like to be able to enter text on multiple lines. I can't use the WYSIWYG type because the editor adds HTML that I don't want.
I'll add it to the TODOs for the next version.
Great, thanks!
Posts: 5
Threads: 1
Joined: Oct 2011
Got a Problem with Custom Fields on Get_simple 3.0.
The Field "Image" creates an Server Error when i try to select an image:
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log."
There is no information in the Server error Log
Does anybody know how to get it to work?
Posts: 2,928
Threads: 195
Joined: Feb 2011
peter Wrote:Please contact the server administrator, [no address given]
Peter, maybe you ask your hoster's support?
Posts: 5
Threads: 1
Joined: Oct 2011
Ok thanks, i asked my hoster and he told to change all the rights of the folders to chmod 755 and all the files to chmod 644. somhow this was mixed up. So i worked.
Posts: 2
Threads: 0
Joined: Oct 2011
How can i specify template for my custom fields? At the moment for example my custom contact fields phone, email, adress show up on every page in the page management.
Posts: 2,094
Threads: 54
Joined: Jan 2011
arde Wrote:How can i specify template for my custom fields? At the moment for example my custom contact fields phone, email, adress show up on every page in the page management.
That's how it is. You cannot show a custom field on specific pages only.
Posts: 2
Threads: 0
Joined: Oct 2011
mvlcek Wrote:arde Wrote:How can i specify template for my custom fields? At the moment for example my custom contact fields phone, email, adress show up on every page in the page management.
That's how it is. You cannot show a custom field on specific pages only.
Ok. Now it is bit too complicated when site updater sees maybe even dozens of different custom boxes on every page that does not necessarily even affect that page, simple becomes a rather complicated. I think that this is one of the most important plugin for this CMS, so it would be great to see further development of this.
Posts: 48
Threads: 4
Joined: Jun 2011
Would really like a tutorial for stupid people like me. Can't figure out this plugin...
Posts: 13
Threads: 2
Joined: Nov 2011
Can I add one custom field to all pages ?
Posts: 45
Threads: 5
Joined: Feb 2011
arde Wrote:mvlcek Wrote:arde Wrote:How can i specify template for my custom fields? At the moment for example my custom contact fields phone, email, adress show up on every page in the page management.
That's how it is. You cannot show a custom field on specific pages only.
Ok. Now it is bit too complicated when site updater sees maybe even dozens of different custom boxes on every page that does not necessarily even affect that page, simple becomes a rather complicated. I think that this is one of the most important plugin for this CMS, so it would be great to see further development of this.
I second this. Would deffinately donate to your plugin development fund to make this happen sooner rather than later...
Posts: 1
Threads: 0
Joined: Dec 2011
Hi... I've looked for solution, but didn;t find...
I have plugins: PageXML and i18n custom field. And when I get standard fields for ex. title i want get my custom field to: "category":
if($strona=="portfolio") {
$childlist = getChildren(return_page_slug());
$subpagelist = array();
foreach($childlist as $child) {
if (returnPageField($child, 'private') != 'Y')
$subpagelist[] = array($child, returnPageField($child,'title'), returnPageField($child,'menuOrder'), returnPageField($child,'category'));
}
/* sort children my menuorder subval_sort is built in to GS2.1+ */
$subpagelist = subval_sort($subpagelist ,2);
foreach($subpagelist as $subpage) {
$thumb = '/data/uploads/' . $subpage[0] . '_thumb.jpg';
$link = $subpage[0] . '/';
$title = $subpage[1];
$cat = $subpage[3];
echo 'check: '.$cat.' '.$title.' / ';
}
}?>
I tried to return_custom_field('') but didn't work... anybody has some advice for me?
Posts: 3,491
Threads: 106
Joined: Mar 2010
2011-12-30, 01:45:58
(This post was last modified: 2011-12-30, 01:47:45 by fotothink.)
@macu
Try this (not tested):
Edit the PagesXML/PageCaching plugin (v2.3) pages.php file, line 304:
Code: if (isset($plugin_info['customfields'])){
and change it to this:
Code: if (isset($plugin_info['i18n_customfields'])){
(Note that when GS 3.1 is available, the Pages plugin will not be needed.)
Posts: 66
Threads: 6
Joined: Feb 2011
@mvlcek: small feature request:
change edit.php, line 102 Code: echo '<tr><td><h2>Custom Fields</h2>...
to
Code: echo '<tr><td><h2>'.i18n_r('i18n_customfields/CUSTOMFIELDS_TITLE').'</h2>...
It's the title of the custom fields section in page options. I'd like it translated too.
Posts: 3,491
Threads: 106
Joined: Mar 2010
Spanish language for I18N Custom Fields available in Extend
Posts: 2,094
Threads: 54
Joined: Jan 2011
I18N Custom Fields version 1.8.1: - some cosmetic changes displaying the fields
- spanish language (thanks @Carlos)
Posts: 1
Threads: 0
Joined: Feb 2012
Just a quick heads-up. If you're running suPHP, this plugin will give "HTTP Error 500: Internal Server error" on some pages (notably, the 'browse' button for custom fields of the "Link" type). You may see something like this in your error log:
Code: SoftException in Application.cpp:249: File "--snip--/plugins/i18n_customfields/browser/pagebrowser.php" is writeable by group
This is caused by the file permissions in the .zip file, which unpack all files and directories writable by the group and world (permissions 777 for directories, 666 for files). To fix this on unix machines, run the following commands from the root of your GS installation:
Code: # find ./plugins/i18n_customfields -type d -exec chmod 755 '{}' \;
and
Code: # find ./plugins/i18n_customfields -type f -exec chmod 644 '{}' \;
Posts: 58
Threads: 9
Joined: Jan 2012
mvlcek Wrote:filupn Wrote:Thanks for this great plugin! Could you add a textarea as an input type? I'm using the "Long Text" field type now, but I'd like to be able to enter text on multiple lines. I can't use the WYSIWYG type because the editor adds HTML that I don't want.
I'll add it to the TODOs for the next version. I have the same problem with WYSIWYG (CKEditor 3.6.2 in GS 3.1) changing some code lines I like to edit in the backend. Would also like to see a "Text Area" field type in Custom Fields (1.8.1 in use). Thx.
Advanced HTML5 & CSS3 coder. Simple JS & PHP hacker (not enough for new function coding). Build one webpage with GS (late 2012). Focusing on Theme customizing/Template files. Experience with WP.
|