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

Testimonial Manager Support Thread

Views: 277,980

Results 1,241 to 1,260 of 1,502
11 Apr 2011, 1:10 PM
#1241
auctionsbay avatar

auctionsbay

New Zenner

Join Date:
Mar 2011
Posts:
15
Plugin Contributions:
0

Testimonial Manager Support Thread

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.

11 Apr 2011, 2:07 PM
#1242
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

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.

12 May 2011, 4:24 AM
#1243
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

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.

12 May 2011, 4:40 AM
#1245
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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.

24 May 2011, 7:18 AM
#1246
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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. :(

24 May 2011, 1:50 PM
#1247
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

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

24 May 2011, 8:19 PM
#1248
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

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

24 May 2011, 8:33 PM
#1249
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

willie bee:

Now this shows up META_TAG_TITLE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS

try changing it to META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS

24 May 2011, 8:38 PM
#1250
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

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

24 May 2011, 8:49 PM
#1251
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

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

25 May 2011, 5:53 AM
#1252
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

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

you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.

can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.

25 May 2011, 2:54 PM
#1253
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

willie bee:

you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.

can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.

Please refer to posts 1226 - 1231 concerning adding meta tags.

25 May 2011, 6:30 PM
#1254
tamalita avatar

tamalita

New Zenner

Join Date:
Jan 2006
Posts:
57
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

I have been using this to display random facts for over a year now. The client has requested a new site design, and there has been an update to the testimonial manager code.

The new site design does not use actual sideboxes; the items on the left column are hard coded into the template.

I would like to randomly display the facts as before, but I'm not sure what to include in my template.

the site is here:
http://biadchili.com/pepper/

the 'all testimonials page' is here:
http://biadchili.com/pepper/index.php?main_page=display_all_testimonials

I actually do not want to display everything, just have them randomly displayed on the left column; the sideboxes are turned on

this is the code I've used to display this on the left column, but it is not showing:

<?php require($template->get_template_dir('tpl_testimonials_manager_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_testimonials_manager_default.php'); 
                        ?>	
25 May 2011, 7:02 PM
#1255
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

tamalita:

I have been using this to display random facts for over a year now. The client has requested a new site design, and there has been an update to the testimonial manager code.

The new site design does not use actual sideboxes; the items on the left column are hard coded into the template.

I would like to randomly display the facts as before, but I'm not sure what to include in my template.

the site is here:
http://biadchili.com/pepper/

the 'all testimonials page' is here:
http://biadchili.com/pepper/index.php?main_page=display_all_testimonials

I actually do not want to display everything, just have them randomly displayed on the left column; the sideboxes are turned on

this is the code I've used to display this on the left column, but it is not showing:

<?php require($template->get_template_dir('tpl_testimonials_manager_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_testimonials_manager_default.php'); ?>

Your going to need to figure out how to combine the code from:

includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php

AND

includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
25 May 2011, 7:26 PM
#1256
buildingblocks avatar

buildingblocks

Totally Zenned

Join Date:
Jun 2008
Posts:
629
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

willie bee:

you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.

can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.

willie bee

edit this file

/includes/languages/english/CUSTOM_TEMPLATE/meta_tags.php

In the // Per-Page meta-tags section

make the tags look like this

define('META_TAG_DESCRIPTION_page_name','');

define('META_TAG_KEYWORDS_PAGE_page_name','');

define('META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS', '');
	
	
define('META_TAG_DESCRIPTION_page_name','');

define('META_TAG_KEYWORDS_PAGE_page_name','');

define('META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER', '');

See if this gets working going for you.

26 May 2011, 6:21 PM
#1257
tamalita avatar

tamalita

New Zenner

Join Date:
Jan 2006
Posts:
57
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

Your going to need to figure out how to combine the code from:

includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php

AND

includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

that's what I needed to know ... thank you!

15 Jul 2011, 5:24 AM
#1258
highcastlecrafts avatar

highcastlecrafts

New Zenner

Join Date:
Jul 2011
Location:
Arizona
Posts:
17
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Version 1.3.8a.
I've installed your add-on. Everything went smoothly and works except for the "Add a Testimonial" link. Only a blank white screen appears whether I click on the link from the sidebox or from a page while viewing another testimonial.
I've double-checked that I've uploaded all the files to the appropriate locations on my server.
Which files would affect this issue? Any suggestions would be greatly appreciated!

15 Jul 2011, 1:52 PM
#1259
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

HighCastleCrafts:

Version 1.3.8a.
I've installed your add-on. Everything went smoothly and works except for the "Add a Testimonial" link. Only a blank white screen appears whether I click on the link from the sidebox or from a page while viewing another testimonial.
I've double-checked that I've uploaded all the files to the appropriate locations on my server.
Which files would affect this issue? Any suggestions would be greatly appreciated!

double check and make sure ALL the following have been uploaded to your server:

includes/extra_datafiles/testimonials_manager_filenames.php
includes/functions/testimonials.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/testimonials_manager_defines.php
includes/languages/english/YOUR_TEMPLATE/testimonials_add.php
includes/languages/english/YOUR_TEMPLATE/testimonials_manager.php
includes/languages/english/YOUR_TEMPLATE/testimonials_manager_all_testimonials.php
includes/languages/english/html_includes/define_testimonials_add.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_testimonials_add.php
includes/modules/pages/testimonials_add
includes/modules/pages/testimonials_manager
includes/modules/pages/display_all_testimonials
includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_default.php
includes/templates/YOUR_TEMPLATE/css/testimonials_add.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
includes/templates/YOUR_TEMPLATE/buttons/english/button_submit_testimonials.gif
includes/templates/YOUR_TEMPLATE/buttons/english/button_testimonials.gif
includes/templates/YOUR_TEMPLATE/buttons/english/button_view_testimonials.gif

16 Jul 2011, 12:21 AM
#1260
highcastlecrafts avatar

highcastlecrafts

New Zenner

Join Date:
Jul 2011
Location:
Arizona
Posts:
17
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_default.php
includes/templates/YOUR_TEMPLATE/css/testimonials_add.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css

There are two differences between the names of the files I downloaded and what you listed above. The download included:
includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default
instead ofincludes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
(The other two files are the same in that folder.)
AND
includes/templates/YOUR_TEMPLATE/css/display_all_testimonials
instead ofincludes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css

I also noticed when the cursors hovers over the "Add A Testimonial" link that the following appears at the bottom of the window:
/index.php?main_page=testimonials_add&zenid951779c1ebbfbb
What's the "&zenid951779c1ebbfbb"?
Thanks.