• 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: Form not showing, only code {rsform #}

Form not showing, only code {rsform #} 10 years 7 months ago #28713

  • rbush
  • rbush's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 18
  • Thank you received: 1
Hi there,

I have tested my forms on a test site and have now copied the same information to a live site. The forms will not show up though, all I get is the code: {rsform #}. Maybe I am forgetting something, but it looks the same to me as my test site does.

Could someone take a second look for me and tell me why I am only seeing code and no form?
{source}
<style type="text/css">
.dept {
    font-size: medium;
    font-weight: bold;
}
.position {
    font-size: medium;
}
.phone {
    font-size: medium;
}
</style>
<?php
$db = JFactory::getDbo();
$query = $db -> getQuery(true);
 
$query -> SELECT($db -> quoteName(array('emp_dept', 'emp_position', 'emp_phone')));
$query -> FROM ($db -> quoteName('#__ytown_employees'));
 
$query-> WHERE($db->quoteName('first_name') . '='. $db->quote('Aaron') . 'AND' . $db->quoteName('last_name') . '='. $db->quote('Dietz'));
$db -> setQuery($query);
$results = $db -> loadObjectList();
 
print_r($result);
?>
 
<?php
 
foreach($results as $row){
echo '<p class="dept">'.$row->emp_dept.': '.$row->emp_position.'</p>';
echo '<p class="phone">'.$row->emp_phone.'</p>';
}
?>
{/source}
 
{rsform 6}
The administrator has disabled public write access.

Form not showing, only code {rsform #} 10 years 7 months ago #28720

  • silviup
  • silviup's Avatar
  • OFFLINE
  • Moderator
  • Posts: 309
  • Thank you received: 49
Make sure to enable either the RSForm!Pro System Plugin or the RSForm!Pro Content Plugin, depending on where you wish to display the form (a Content article or in any other location on your website). This is done in Extensions >> Plugin Manager.

Also, check if the form's id on your new installation matches the id of the form you had on the test site. If not, change it accordingly.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Form not showing, only code {rsform #} 10 years 7 months ago #28723

  • rbush
  • rbush's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 18
  • Thank you received: 1
Hmm the only thing in the Extension Manage is "RSForm! - Component", which is enabled.
It seems I am missing the Content Plug-in. Do you know where I might download it?
The administrator has disabled public write access.

Form not showing, only code {rsform #} 10 years 7 months ago #28724

  • rbush
  • rbush's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 18
  • Thank you received: 1
Aha! I found it, and the form is showing up now!

Thanks!
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!