Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
auctionsbay
Hi. Thank you for replay.
That's exactly what I do but the image and the link does not show up. I trayed to upload an image and it's only says Image doesn't exist.
Thank you.
make sure that the images/testimonial directory is writeable (755 or 777) depending on your server configuration.
1 Attachment(s)
Re: Testimonial Manager Support Thread
Hi this was a very mod to install. Straight forward. I did the optional metatags and followed the instructions but I am missing something and I do not know where.
META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS shows up in the bar? Please see attached and thank you for your mod, it is a very good one.
Re: Testimonial Manager Support Thread
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
haredo
Have you read this:
Thanks if there are no more than 10 pages I will read through it but if there's like 125 pages like here I'll do a search within the thread and must have missed it. But that is what I did. "I did the optional metatags and followed the instructions but I am missing something and I do not know where."
Thanks for the link. Your help is appreciated, thanks again.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
Hi this was a very mod to install. Straight forward. I did the optional metatags and followed the instructions but I am missing something and I do not know where.
META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS shows up in the bar? Please see attached and thank you for your mod, it is a very good one.
i still can't figure this out. :(
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
i still can't figure this out. :(
remove the highlighted portion from the define statement.
META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
clydejones
remove the highlighted portion from the define statement.
META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS
Now this shows up META_TAG_TITLE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
Now this shows up META_TAG_TITLE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS
try changing it to META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS
Re: Testimonial Manager Support Thread
no go, this is what i got so far
//TESTIMONIALS:
case 'display_all_testimonials':
$sql = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by date_added DESC, testimonials_title";
$testimonials = $db->Execute($sql);
while (!$testimonials->EOF) {
$testimonial_string_metatags .= zen_clean_html($testimonials->fields['testimonials_title']) . METATAGS_DIVIDER;
$testimonials->MoveNext();
} //EOF
define('META_TAG_TITLE', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_KEYWORDS', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
break;
case 'testimonials_manager':
define('META_TAG_TITLE', META_TAG_TITLE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
define('META_TAG_KEYWORDS', META_TAG_TITLE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
no go, this is what i got so far
//TESTIMONIALS:
case 'display_all_testimonials':
$sql = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by date_added DESC, testimonials_title";
$testimonials = $db->Execute($sql);
while (!$testimonials->EOF) {
$testimonial_string_metatags .= zen_clean_html($testimonials->fields['testimonials_title']) . METATAGS_DIVIDER;
$testimonials->MoveNext();
} //EOF
define('META_TAG_TITLE', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_KEYWORDS', META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS . $testimonial_string_metatags);
break;
case 'testimonials_manager':
define('META_TAG_TITLE', META_TAG_TITLE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
define('META_TAG_KEYWORDS', META_TAG_TITLE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
You need to define this (META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS) in includes/languages/YOUR_TEMPLATE/meta-tags.php (around line(s) 38 - 40)
// Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
// replace "page_name" with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
// repeat pattern as necessary
define('META_TAG_DESCRIPTION_page_name','');
define('META_TAG_KEYWORDS_page_name','');
define('META_TAG_TITLE_page_name', '');