Zen Cart Logo
Forums / All Other Contributions/Addons / Testimonial Manager Support Thread

Testimonial Manager Support Thread

Views: 277,997

Results 1,061 to 1,080 of 1,502
27 Jul 2010, 11:30 PM
#1061
awhfy99 avatar

awhfy99

Zen Follower

Join Date:
Feb 2007
Location:
Burleson. Texas
Posts:
196
Plugin Contributions:
0

Testimonial Manager Support Thread

awhfy99:

:yes: Never mind, it wasn't in templates/

I found it in

modules/pages/display_all_testimonials/header_php.php

I reversed it like I did in the above attempt and it now sorts the way I need. Guess I was looking in the wrong place! Thanks!

UPDATE

This ceased to work after a year or so, don't know if it was a php upgrade or a db change.

27 Jul 2010, 11:39 PM
#1062
awhfy99 avatar

awhfy99

Zen Follower

Join Date:
Feb 2007
Location:
Burleson. Texas
Posts:
196
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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.

27 Jul 2010, 11:50 PM
#1063
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

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.

28 Jul 2010, 1:56 AM
#1064
awhfy99 avatar

awhfy99

Zen Follower

Join Date:
Feb 2007
Location:
Burleson. Texas
Posts:
196
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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!

30 Jul 2010, 6:47 AM
#1065
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

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.

30 Jul 2010, 7:03 AM
#1066
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

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']);

30 Jul 2010, 7:20 AM
#1067
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

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.

30 Jul 2010, 3:30 PM
#1068
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

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?

30 Jul 2010, 4:58 PM
#1069
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

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

30 Jul 2010, 5:14 PM
#1070
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

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']);

30 Jul 2010, 5:20 PM
#1071
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Sorry that didn't seem to work either

30 Jul 2010, 5:37 PM
#1072
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

guitarstore:

Sorry that didn't seem to work either

can you post the contents of your includes/modules/glacial_age/meta_tags.php

30 Jul 2010, 8:07 PM
#1073
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_DESCRIPTION', META_TAG_TITLE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
define('META_TAG_KEYWORDS', META_TAG_TITLE_TESTIMONIALS_MANAGER_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']);

30 Jul 2010, 8:21 PM
#1074
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

clydejones:

can you post the contents of your includes/modules/glacial_age/meta_tags.php

Probably should have said the entire contents of includes/modules/glacial_age/meta_tags.php

30 Jul 2010, 8:25 PM
#1075
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Hi Clyde. it says it is too large to post is there another way I can send it to you?

30 Jul 2010, 8:41 PM
#1076
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

guitarstore:

Hi Clyde. it says it is too large to post is there another way I can send it to you?

Check your PM

7 Aug 2010, 10:03 PM
#1077
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Hi Clyde.

Were you able to figure something out?

Thanks again for your time and effort.

7 Aug 2010, 11:57 PM
#1078
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

guitarstore:

Hi Clyde.

Were you able to figure something out?

Thanks again for your time and effort.

Did you receive the PM with my e-mail address

9 Aug 2010, 8:13 AM
#1079
guitarstore avatar

guitarstore

New Zenner

Join Date:
Dec 2009
Posts:
28
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Hi Clyde.

 Yes I did thank you and I sent you an email. Maybe it went to your spam mail? Let me know if you need me to send it again.

Thanks again!

9 Aug 2010, 12:02 PM
#1080
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

guitarstore:

Hi Clyde.

 Yes I did thank you and I sent you an email. Maybe it went to your spam mail? Let me know if you need me to send it again.

Thanks again!

Please re-send, Thanks