Hi,
this is the only way I see this possible:
1) In functions.php file of your theme, create a function to add your text only for the premium listings plan.
Somthing like this should do it:
add_action('geodir_after_main_form_fields', 'my_geodir_after_main_form_fields', 0);
function my_geodir_after_main_form_fields()
{
if (isset($_GET['package_id'])){
$pid = $_GET['package_id'];
if ($pid == 5) {
echo '<h3>For assistance with professional photography and/or video production, please contact us for pricing.</h3>';
}
}
}
5) Add your new function to the action “geodir_after_main_form_fields” (still in functions.php of your theme):
add_action('geodir_after_main_form_fields', 'my_geodir_after_main_form_fields', 0);
Let us know if this helped.
Thanks