• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Position of Custom Fields in Detail View

Position of Custom Fields in Detail View 8 years 6 months ago #33025

  • info8717
  • info8717's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
I made a custom field called "kontakt-anschrift" and connected it to a form.
The field is displayed below the description but I want it above.
So I tried something like this:
<?php
    $kontakt_field = RSDirectoryHelper::findFormField('kontakt-anschrift', $form_fields); 
    echo $kontakt_field;    
?>

That doesn't work. Is it possible to call a specific custom field and how to do that?

Regards,
Stefan Wobbe
The administrator has disabled public write access.

Position of Custom Fields in Detail View 8 years 4 months ago #33496

Did you find a solution for this? I would like to do something similar. Thanks
The administrator has disabled public write access.

Position of Custom Fields in Detail View 8 years 4 months ago #33506

  • Fastserv
  • Fastserv's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Unfortunately not
The administrator has disabled public write access.

Position of Custom Fields in Detail View 8 years 3 months ago #33925

  • js0
  • js0's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
  • Thank you received: 1
Try this:
$kontakt_field = RSDirectoryHelper::findFormField(array('form_field_name' => 'kontakt_anschrift'), $form_fields);

You can find the the form_field_name if you var_dump the form_fields object.
var_dump($form_fields);
The administrator has disabled public write access.
The following user(s) said Thank You: Fredone

Position of Custom Fields in Detail View 6 years 6 months ago #37533

  • Fredone
  • Fredone's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
It worked for me! thank you so much!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!