
Originally Posted by
gbengoose
Perfect again!!
How do I get the name, state and all the other info of the person that wrote the testimonial inside the box?
open includes/templates/YOUR_TEMPLATE/templates/
tpl_testimonials_manager_default.php
tpl_display_all_testimonials_default.php
find the following section of code:
PHP Code:
</blockquote>
<?php
$testimonial_info = '';
if ( (!empty($page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR . $page_check->fields[testimonials_country];
}
if ( (!empty($page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_city];
}
if ( (empty($page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_country];
}
if (!empty($page_check->fields[testimonials_company])) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_company];
}
?>
and replace with the following:
PHP Code:
<?php
$testimonial_info = '';
if ( (!empty($page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR . $page_check->fields[testimonials_country];
}
if ( (!empty($page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_city];
}
if ( (empty($page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_country];
}
if (!empty($page_check->fields[testimonials_company])) {
$testimonial_info .= NAME_SEPARATOR . $page_check->fields[testimonials_company];
}
?>
</blockquote>
Bookmarks