Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
clydejones
Which version of Testimonial Manager are you using on your ZC 1.3.7 site?
Tried 1.4.4 first, then 1.5.0 then 1.5.2. I put it back on 1.4.4.
Looks like the one I had on the 1.3.8a (1.5.0 TM) stopped working also, as I just tried to verify that it was still OK. Same results as my new install.
The 1.3.8a is on a different host than the 1.3.7 site.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
awhfy99
Tried 1.4.4 first, then 1.5.0 then 1.5.2. I put it back on 1.4.4.
Looks like the one I had on the 1.3.8a (1.5.0 TM) stopped working also, as I just tried to verify that it was still OK. Same results as my new install.
The 1.3.8a is on a different host than the 1.3.7 site.
try TM 1.5.1 on your 1.3.8a site.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
clydejones
try TM 1.5.1 on your 1.3.8a site.
Thanks Clyde,
This is really strange!
Think I figured out the culprit. Looks like it's partly AOL. They probably consider any rapidly sequencial emails as spam and block them.
I changed all of my contact #'s to a different email server and now I get the owners notification that it is pending a review.
I don't get the user notification or the update one (thats still through AOL) and I don't have any other idea as to the why's, but I can live with that. I will at least be able to review and activate them now!
I really do hate AOL, but I had it for so long for my personal email that I don't want to change.
It has really been a crap shoot trying to isolate this problem. I thank you for your time and effort!
Re: Testimonial Manager Support Thread
Hello.
I have just uploaded the Testimonial Manager and thank you for the contribution. Everything seems to be working fine except that on the display all testimonials page the meta tag says: META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS and is not displaying the correct information.
Any help with this would be greatly appreciated.
Thank You.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
guitarstore
Hello.
I have just uploaded the Testimonial Manager and thank you for the contribution. Everything seems to be working fine except that on the display all testimonials page the meta tag says: META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS and is not displaying the correct information.
Any help with this would be greatly appreciated.
Thank You.
Here's the instruction from the install_testimonial_manager.txt file
This section is entirely optional.
to implement metatags for your testimonials;
open includes/modules/meta_tags.php.
locate the following line of code (around line 336)
// NO "break" here. Allow defaults if not overridden at the per-page level
Immediately above this line copy and paste the code below.
(save the edited file to includes/modules/YOUR_TEMPLATE/meta_tags.php and upload to your server.
break;
//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_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
break;
case 'testimonials_manager':
define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
Re: Testimonial Manager Support Thread
Hi Clyde.
Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.
Thanks for your assistance.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
guitarstore
Hi Clyde.
Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.
Thanks for your assistance.
link to your site?
Re: Testimonial Manager Support Thread
s e l a n e g u i t a r s t o r e . c o m
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
guitarstore
Hi Clyde.
Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.
Thanks for your assistance.
try removing the highlighted portions and see if that helps.
//EOF
define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
break;
case 'testimonials_manager':
define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
Re: Testimonial Manager Support Thread
Sorry that didn't seem to work either