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

Testimonial Manager Support Thread

Views: 277,974

Results 141 to 160 of 1,502
20 Apr 2007, 18:20
#141
alexlee avatar

alexlee

New Zenner

Join Date:
Apr 2007
Posts:
8
Plugin Contributions:
0

Testimonial Manager Support Thread

Wow, it looks great, Clyde! :smile:

Exactly the kind of stuff I was looking for!
Thx for the contribution.

-Alex

20 Apr 2007, 22:02
#142
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

alexlee:

Wow, it looks great, Clyde! :smile:

Exactly the kind of stuff I was looking for!
Thx for the contribution.

-Alex

I'll upload it to the downloads section (other modules) should be available there in a day or two.

21 Apr 2007, 20:41
#143
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

Here you go.

as alwasy, unzip the file.

rename the YOUR_TEMPLATE folder(s) to match your custom folder name.

upload the entire includes folder to your server

[Attachment no longer available]

text, "View All Testimonials" can this text and link be added to the bottom of each single testimonial page?

Dear Clyde, I downloaded and installed the zip file and now the text, "View All Testimonials" is showing up on the testimonial pages. Thank you so much for all your help!

21 Apr 2007, 20:50
#144
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

Open the "testimonial *.css" stylesheets both of them.

find the following declaration and make the changes highlighted in red

#testimonialImage {
margin: 0;
padding: 0 0 10px 0;

text-align: center;
}

Change the 10px if you want more space.

Dear Clyde, I did try that before but for some reason the space shows up in the sidebox but not in the testimonial pages. View this page:
http://www.horse-logos.com/testimonials_manager_all_testimonials.html?page=4

Could it be that I need to add <P> before the testimonial text when I enter it?
I am not too good with figuring out CSS stuff.

21 Apr 2007, 22:03
#145
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Dear Clyde, I am having a problem that is showing up in both IE and Firefox when I click to go on to page 2 of the testimonial list here: http://www.horse-logos.com/admin/testimonials_manager.php?testimonials=2&bID=18

What is happening is that the Testimonials Manager info table is spreaing across the whole PC screen and there is no edit box on the right hand side of the page.

This page shows up fine: http://www.horse-logos.com/admin/testimonials_manager.php?page=2

BUT when I click on a name to select it to edit then the page opens without the edit box (edit and delete box). Can you check into this. Thanks!

I have three pages of testimonials - total of 42.

21 Apr 2007, 22:18
#146
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

Dear Clyde, I did try that before but for some reason the space shows up in the sidebox but not in the testimonial pages. View this page:
http://www.horse-logos.com/testimonials_manager_all_testimonials.html?page=4

Could it be that I need to add <P> before the testimonial text when I enter it?
I am not too good with figuring out CSS stuff.

From what I can see, this declaration is conflicting with the sidebox and the page. I've indicated the change to make in red

From stylesheet.css
#testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}

Change this as follows:
.testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}

**
From testimonials_manager_all_testimonials.css** This one you don't have to change.
#testimonialImage {
margin: 0;
padding: 0 0 10px 0; /* change the 10px to get more spacing*/
text-align: center;
}

The only other change to make is to open
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

find the following code:

<p id="testimonialImage">

and change it as follows:

<p class="testimonialImage">
21 Apr 2007, 22:19
#147
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

When I am on page 2 of the Testimonial Manager in the Zen Cart Admin and click on a name to select it I am brought back to page one of the name list. But then if I click to go back to page 2 the right name has been selected and I can then edit it. Strange.

21 Apr 2007, 22:20
#148
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

Dear Clyde, I am having a problem that is showing up in both IE and Firefox when I click to go on to page 2 of the testimonial list here: http://www.horse-logos.com/admin/testimonials_manager.php?testimonials=2&bID=18

What is happening is that the Testimonials Manager info table is spreaing across the whole PC screen and there is no edit box on the right hand side of the page.

This page shows up fine: http://www.horse-logos.com/admin/testimonials_manager.php?page=2

BUT when I click on a name to select it to edit then the page opens without the edit box (edit and delete box). Can you check into this. Thanks!

I have three pages of testimonials - total of 42.

I don't have access to your admin panel.

21 Apr 2007, 22:59
#149
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

From what I can see, this declaration is conflicting with the sidebox and the page. I've indicated the change to make in red

From stylesheet.css
#testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}

Change this as follows:
.testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}

**
From testimonials_manager_all_testimonials.css** This one you don't have to change.
#testimonialImage {
margin: 0;
padding: 0 0 10px 0; /* change the 10px to get more spacing*/
text-align: center;
}

The only other change to make is to open
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

find the following code:

<p id="testimonialImage">

and change it as follows:

<p class="testimonialImage">

Dear Clyde, now I don't need the 10px padding. I have the following code in the two testimonial css files:

#testimonialImage {
margin: 0;
text-align: center;
}

The problem must have been the <p class thing.

Thanks for the help with this.

21 Apr 2007, 23:02
#150
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

I don't have access to your admin panel.

Anyone else have more than 20 testimonials? Testimonial Manager second and third page working/showing up OK for you when you tried to edit?

21 Apr 2007, 23:27
#151
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

Anyone else have more than 20 testimonials? Testimonial Manager second and third page working/showing up OK for you when you tried to edit?

If you can get me an SQL dump of your testimonial_manager table, I'll check it out on my test site.

21 Apr 2007, 23:48
#152
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

get me an SQL dump of your testimonial_manager table

How do I do that?

22 Apr 2007, 00:07
#153
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

get me an SQL dump of your testimonial_manager table

How do I do that?

You'd have to log in to your server's cpanel and use phpmyadmin to export the testimonial_manager table.

22 Apr 2007, 00:09
#154
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

I will try to get to that tomorrow. Thanks for the info Clyde!

22 Apr 2007, 17:02
#155
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

OK I am totally lost: I have Plesk 7.5.4 and I don't see any phpmyadmin
but it has all of this other stuff...

Domain Administration

This page give access to the administrative functions available for this domain.

The two icons that precede the domain name at the top of the page have the following meanings:

  1. ok.gif: the left icon indicates the status of the domain. If the disk space or traffic limitations are exceeded under this domain, the icon will display as "!". The Plesk system evaluates traffic and disk space every 24 hours.
  2. on.gif: the right icon indicates whether the domain is Enabled or Disabled. If a domain is turned off, it will not be provided with any service.

The buttons on this page help you perform the following operations:
Up Level Return to the previous page or go one level up in the Plesk system.
Enable/Disable Turn the domain on or off.
Report View and send by email a detailed domain report.
Limits Set the domain level limitations and domain validity period.
Preferences Change the 'www' prefix requirement for the domain, enable the webmail, and define the traffic statistics retention settings.
Domain Administrator Create a domain administrator's account or change its properties.
Extras Access additional domain tools (this option can be deactivated).
Backup Access the backup/restoring capabilities for the domain.
Custom Buttons Set up and manage multiple additional buttons that will be displayed in the control panel.
Mail Manage mailing service, create and manage e-mail accounts: POP3, redirects, groups, and autoresponders.
DNS Administer or check the DNS settings for the domain.
Databases Create and manage databases and database users.
Certificates Manage the certificates repository for the domain.
Tomcat Add and manage Tomcat web applications deployed on the domain.
Setup Set up the domain hosting and configure the hosting account.
Delete Delete the hosting configuration for this domain.
Web Users Set up additional web users for the domain (available only for physical hosting accounts).
Subdomains Create and manage subdomains (available only for physical hosting accounts).
Directories Create password-protected directories (available only for physical hosting accounts).
Anonymous FTP Manage anonymous FTP service on domain (available only for physical hosting accounts).
Log Manager Log files management and log rotation parameters adjustment (available only for physical hosting accounts).
File Manager Access to file manager control panel. Allows you to handle all your files and directories in a convenient way (available only for physical hosting accounts).
SSH Terminal Opens the terminal client to access your account at Plesk server over the secure shell (available only for physical hosting accounts).
FP Webadmin Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
FP-SSL Webadmin Microsoft FrontPage over SSL access. Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
Crontab Manager Crontab tasks management (available only for physical hosting accounts).
Mambo CMS Deploying and editing web sites (available only for physical hosting accounts).
Application Vault Deploying and configuring web applications (available only for physical hosting accounts).
Site Preview Web site preview prior to DNS propagation (available only for physical hosting accounts).

At the bottom of the page a resource usage report is displayed.

22 Apr 2007, 17:11
#156
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

OK I am totally lost: I have Plesk 7.5.4 and I don't see any phpmyadmin
but it has all of this other stuff...

Domain Administration

This page give access to the administrative functions available for this domain.

The two icons that precede the domain name at the top of the page have the following meanings:

  1. ok.gif: the left icon indicates the status of the domain. If the disk space or traffic limitations are exceeded under this domain, the icon will display as "!". The Plesk system evaluates traffic and disk space every 24 hours.
  2. on.gif: the right icon indicates whether the domain is Enabled or Disabled. If a domain is turned off, it will not be provided with any service.

The buttons on this page help you perform the following operations:
Up Level Return to the previous page or go one level up in the Plesk system.
Enable/Disable Turn the domain on or off.
Report View and send by email a detailed domain report.
Limits Set the domain level limitations and domain validity period.
Preferences Change the 'www' prefix requirement for the domain, enable the webmail, and define the traffic statistics retention settings.
Domain Administrator Create a domain administrator's account or change its properties.
Extras Access additional domain tools (this option can be deactivated).
Backup Access the backup/restoring capabilities for the domain.
Custom Buttons Set up and manage multiple additional buttons that will be displayed in the control panel.
Mail Manage mailing service, create and manage e-mail accounts: POP3, redirects, groups, and autoresponders.
DNS Administer or check the DNS settings for the domain.
Databases Create and manage databases and database users.
Certificates Manage the certificates repository for the domain.
Tomcat Add and manage Tomcat web applications deployed on the domain.
Setup Set up the domain hosting and configure the hosting account.
Delete Delete the hosting configuration for this domain.
Web Users Set up additional web users for the domain (available only for physical hosting accounts).
Subdomains Create and manage subdomains (available only for physical hosting accounts).
Directories Create password-protected directories (available only for physical hosting accounts).
Anonymous FTP Manage anonymous FTP service on domain (available only for physical hosting accounts).
Log Manager Log files management and log rotation parameters adjustment (available only for physical hosting accounts).
File Manager Access to file manager control panel. Allows you to handle all your files and directories in a convenient way (available only for physical hosting accounts).
SSH Terminal Opens the terminal client to access your account at Plesk server over the secure shell (available only for physical hosting accounts).
FP Webadmin Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
FP-SSL Webadmin Microsoft FrontPage over SSL access. Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
Crontab Manager Crontab tasks management (available only for physical hosting accounts).
Mambo CMS Deploying and editing web sites (available only for physical hosting accounts).
Application Vault Deploying and configuring web applications (available only for physical hosting accounts).
Site Preview Web site preview prior to DNS propagation (available only for physical hosting accounts).

At the bottom of the page a resource usage report is displayed.

Use the one for databases (highlighted above)

22 Apr 2007, 18:52
#157
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

alexlee:

Wow, it looks great, Clyde! :smile:

Exactly the kind of stuff I was looking for!
Thx for the contribution.

-Alex

The hints and tip manager is available in the downloads section:

www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_47&products_id=556

I started a separate support thread.

www.zen-cart.com/forum/showthread.php?p=362880#post362880

23 Apr 2007, 01:17
#158
jonisolis avatar

jonisolis

Zen Follower

Join Date:
Jan 2006
Location:
Kentwood, Louisiana, United States
Posts:
117
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

jonisolis:

get me an SQL dump of your testimonial_manager table

How do I do that?

Hope I did this right for you. SQL file - hope it is a dump. ?

23 Apr 2007, 02:00
#159
clydejones avatar

clydejones

Deceased

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

Re: Testimonial Manager Support Thread

jonisolis:

Hope I did this right for you. SQL file - hope it is a dump. ?

Exactly what i need.

I'll run it up on my test site and check whether I can duplicate the issue you described.

23 Apr 2007, 13:59
#160
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:

Exactly what i need.

I'll run it up on my test site and check whether I can duplicate the issue you described.
I tested and triple tested using various combinations of going from page to page and couldn't duplicate what you described.

I can only think that some part of the file might be corrupt.

try this patch and see if it helps.

[Attachment no longer available]

as always unzip the file and upload the entire admin folder to your server.