Advertisement:

Author Topic: [osclasswizard] how to move custom field position in item-post?  (Read 531 times)

arie1st

  • Newbie
  • *
  • Posts: 3
hi all,

how to move custom field position in item-post.php
i've been looking everywhere but cant find it.

and how to make the radio button on custom field arranged vertically?

thanks for your help

m6mmi

  • Jr. Member
  • **
  • Posts: 72
Re: [osclasswizard] how to move custom field position in item-post?
« Reply #1 on: July 10, 2018, 10:16:27 am »
Sortable plugin from market, works perfectly.

BritWeb

  • Hero Member
  • *****
  • Posts: 770
  • If it ain't broke, don't fix it.
Re: [osclasswizard] how to move custom field position in item-post?
« Reply #2 on: July 10, 2018, 10:26:29 am »
hi all,

how to move custom field position in item-post.php
i've been looking everywhere but cant find it.

and how to make the radio button on custom field arranged vertically?

thanks for your help

There is a thread where 'teseo' had written some code for this. Search for 'custom fields position'

Regards

arie1st

  • Newbie
  • *
  • Posts: 3
Re: [osclasswizard] how to move custom field position in item-post?
« Reply #3 on: July 10, 2018, 10:34:58 am »
thank you i finally solved it

line 230 to 238 will be looki like this
<?php
                        }

                      //    if($edit) {
                      //      ItemForm::plugin_edit_item();
                      //  } else {
                      //      ItemForm::plugin_post_item();
                      //  }
                        ?>

and line 100 to line 107 will be look like this
</div>
            <?php
              if($edit) {
                ItemForm::plugin_edit_item();
            } else {
                ItemForm::plugin_post_item();
            }
            ?>

==========================================================

i still need to make custom field for radio button become horizontal
and maybe set up the size of text field too and give placeholder text

arie1st

  • Newbie
  • *
  • Posts: 3
Re: [osclasswizard] how to move custom field position in item-post?
« Reply #4 on: July 10, 2018, 10:36:05 am »
Sortable plugin from market, works perfectly.

will try it later. thanks