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

Testimonial Manager Support Thread

Views: 277,989

Results 1,181 to 1,200 of 1,502
9 Jan 2011, 2:25 AM
#1181
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Testimonial Manager Support Thread

clydejones:

Evidently the issue has been solved. I just checked the site and was able to view individual testimonials

gbengoose:

Hello Clyde, I'm currently experiencing this issue with the .php in the middle of the link. When I remove the .php i can see the correct page. The title and read more link have the .php in the link.

http://www.internationalentertainmentstore.com/index.php?main_page=testimonials_manager.php&testimonials_id=1

When I click the View All link i get this page which is nto correct.
http://www.internationalentertainmentstore.com/index.php?main_page=FILENAME_TESTIMONIALS_MANAGER_ALL

When I click on Add Testimonial I see the following page which is also incorrect.
https://www.internationalentertainmentstore.com/index.php?main_page=FILENAME_TESTIMONIALS_ADD

Any help is appreciated.

I've fixed the View All and Add Testimonials links but still need help with the .php in the link.

9 Jan 2011, 2:42 AM
#1182
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

gbengoose:

I've fixed the View All and Add Testimonials links but still need help with the .php in the link.

All Fixed. Please ignore my previous posts.

9 Jan 2011, 3:10 AM
#1183
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

How can move the Add My Testimonial text? I looked at the php file but I dont know how to move it down with code.

9 Jan 2011, 5:20 AM
#1184
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

gbengoose:

How can move the Add My Testimonial text? I looked at the php file but I dont know how to move it down with code.

try adding the following rule to includes/templates/YOUR_TEMPLATE/css/testimonials_add.css

#testimonialDefault h1 {
margin:10px 0;
}

9 Jan 2011, 4:56 PM
#1185
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

try adding the following rule to includes/templates/YOUR_TEMPLATE/css/testimonials_add.css

#testimonialDefault h1 {
margin:10px 0;
}

Perfetct!!! Thanks

How do I remove the quotation marks and box that surrounds the testimonial?

9 Jan 2011, 5:48 PM
#1186
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

gbengoose:

Perfetct!!! Thanks

How do I remove the quotation marks and box that surrounds the testimonial?

open includes/templates/YOUR_TEMPLATE/css
testimonials_manager.css
display_all_testimonials.css

remove the image reference from the following rules

blockquote {
margin:0 !important;
padding:0 !important;
background: url(../images/lftblockquote.png) top left no-repeat;
border:1px solid navy;
height:1%;
}

blockquote div {
padding:38px 56px;
background: url(../images/rgtblockquote.png) bottom right no-repeat;
height:1%;
}

11 Jan 2011, 1:46 AM
#1187
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

open includes/templates/YOUR_TEMPLATE/css
testimonials_manager.css
display_all_testimonials.css

remove the image reference from the following rules

blockquote {
margin:0 !important;
padding:0 !important;
background: url(../images/lftblockquote.png) top left no-repeat;
border:1px solid navy;
height:1%;
}

blockquote div {
padding:38px 56px;
background: url(../images/rgtblockquote.png) bottom right no-repeat;
height:1%;
}

Perfect again!!

How do I get the name, state and all the other info of the person that wrote the testimonial inside the box?

11 Jan 2011, 3:26 AM
#1188
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

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:

</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
$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>
11 Jan 2011, 5:29 AM
#1190
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

gbengoose:

I replaced the block of code but it didnt change it. Customers info is still outside the box.

http://www.internationalentertainmentstore.com/index.php?main_page=display_all_testimonials

my error, I neglected to include a line of code.

The following is the correct section of code place it immediately above the closing </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];
}
?>
  
<div class="buttonRow back"><?php echo TESTIMONIALS_BY; ?> <?php echo $page_check->fields[testimonials_name] . $testimonial_info; ?>
</div>
14 Jan 2011, 2:32 AM
#1191
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

my error, I neglected to include a line of code.

The following is the correct section of code place it immediately above the closing </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]; } ?> <div class="buttonRow back"><?php echo TESTIMONIALS_BY; ?> <?php echo $page_check->fields[testimonials_name] . $testimonial_info; ?> </div> ```

I put the new block of code in and it now leaves out the name and city. should I be including something else?

14 Jan 2011, 4:37 AM
#1192
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

gbengoose:

I put the new block of code in and it now leaves out the name and city. should I be including something else?

I'll need to take a deeper look at this and see what I can come up with.

16 Jan 2011, 5:16 PM
#1193
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

gbengoose:

I replaced the block of code but it didnt change it. Customers info is still outside the box.

http://www.internationalentertainmentstore.com/index.php?main_page=display_all_testimonials

clydejones:

I'll need to take a deeper look at this and see what I can come up with.

This should give you the effect you are looking for.

unzip the package and upload\FTP the enclosed files to

includes/templates/YOUR_TEMPLATE/templates

Attachment #8676

16 Jan 2011, 9:56 PM
#1194
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

This should give you the effect you are looking for.

unzip the package and upload\FTP the enclosed files to

includes/templates/YOUR_TEMPLATE/templates

Attachment #8676

Thanks! works perfectly

11 Feb 2011, 7:43 PM
#1195
dysfunctional avatar

dysfunctional

Zen Follower

Join Date:
Apr 2008
Posts:
159
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

(Sorry if this have been asked before....)

However I just installed this wonderful contribution and it really looks awesome! But I'm using a black background so the graphics doesn't look too good. I wonder if there are graphics suitable for black backgrounds already made, or do I have to create them myself?

I'm not lazy... but if the effort has already been done by someone who wants to share, I do not see the reason to re-do that work :)

Best regards

11 Feb 2011, 8:18 PM
#1196
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

dysfunctional:

(Sorry if this have been asked before....)

However I just installed this wonderful contribution and it really looks awesome! But I'm using a black background so the graphics doesn't look too good. I wonder if there are graphics suitable for black backgrounds already made, or do I have to create them myself?

I'm not lazy... but if the effort has already been done by someone who wants to share, I do not see the reason to re-do that work :)

Best regards

You'll have to create your own.

lftblockquote.png
rgtblockquote.png

OR

you can edit
display_all_testimonials.css and testimonials_manager.css

and remove the reference(s) to the images

blockquote {
margin:0 !important;
padding:0 !important;
background: url(../images/lftblockquote.png) top left no-repeat;
border:1px solid navy;
height:1%;
}

blockquote div {
padding:38px 56px;
background: url(../images/rgtblockquote.png) bottom right no-repeat;
height:1%;
}

18 Feb 2011, 11:15 PM
#1197
whiteknight1 avatar

whiteknight1

New Zenner

Join Date:
Jan 2011
Posts:
20
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Hi there,

Tried installing the Testimonial Manager, and although the admin bits work, as soon as i switch on the box in the layout box controller (made it a LEFT box) all my right boxes disappear!! Have you seen this one before??

Kind Regards

Colin

18 Feb 2011, 11:18 PM
#1198
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

whiteknight1:

Hi there,

Tried installing the Testimonial Manager, and although the admin bits work, as soon as i switch on the box in the layout box controller (made it a LEFT box) all my right boxes disappear!! Have you seen this one before??

Kind Regards

Colin

Link to your site?

No, I haven't encountered this before.

19 Feb 2011, 4:38 PM
#1199
whiteknight1 avatar

whiteknight1

New Zenner

Join Date:
Jan 2011
Posts:
20
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Hi there, sorry forgot to enclose link

www dot nubar-nailz dot co dot uk

its a live site, so obviously had to turn the TM off, but let me know what you need doing.

Cheers

Colin

19 Feb 2011, 5:07 PM
#1200
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

whiteknight1:

Hi there, sorry forgot to enclose link

www dot nubar-nailz dot co dot uk

its a live site, so obviously had to turn the TM off, but let me know what you need doing.

Cheers

Colin

without the TM sidebox being active I can't really check what the problem might be.