Removing the text under the “Submit a Job” button
Hello,
I’m trying to remove the text that is under the “Submit a Job” button so it doesn’t display the price and number of listing days.
I had removed this code you see below from the Sidebar-sjob.php file thinking it would then eliminate the text under the “Submit a Job” button and it did some what, however the price and listing days are still visible to the visitors who are not logged into their account. Once they login the text then goes away.
What can I do to make this not visible to all website visitors?
Thanks,
Jason
<?php if ($text = get_option('jr_jobs_submit_text')) : echo wpautop(wptexturize($text)); else :
$packs = jr_get_job_packs();
if (sizeof($packs) == 0) :
// display standard pricing
$amount = get_option('jr_jobs_listing_cost');
$jobs_last = get_option('jr_jobs_default_expires');
if (!$jobs_last) $jobs_last = 30; // 30 day default
if ($amount && $amount>0) : echo '<p class="pricing"><em>'.jr_get_currency($amount).'</em> '.__('for',APP_TD).' <em>'.$jobs_last.' '.__('days',APP_TD).'</em></p>'; endif;
endif;
endif; ?>