Results 1 to 10 of 1501

Hybrid View

  1. #1
    Join Date
    Feb 2009
    Posts
    138
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by DivaVocals View Post
    Has your admin folder been renamed??
    Duh, yes.

    Thank you!!

  2. #2
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by hedron View Post
    Duh, yes.

    Thank you!!
    It's ALWAYS the little things..

  3. #3
    Join Date
    Feb 2009
    Posts
    138
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    This contribution is great. Thank you Clyde.

    Everything seems to be working fine for me now. Below are further comments and questions.

    Tweak: to make this side box similar to the Reviews one, instead of “false”, I set the "title link" to display_all_testimonials in includes/modules/sideboxes/YOUR_Template/testimonials_manager... and turned off the link at the bottom.

    1. Minor bug: When adding a testimonial from the admin, if you insert a past date and forget to fill out a required field or if you do not format the date as suggested, after giving you an error it will change the date field to a random date. You cannot modify that date from the admin once you submit the testimonial. To correct that you need to delete and reenter the testimonial.

    2. Is there an easy admin fix to change just the “Testimonial submission” email address sent to the store owner? Or should I change that in the code (and where/how)?

    3. I would like to have the single testimonial breadcrumbs to be a sub-page of the All Testimonials page, using a tweak similar to this for EZ-Pages:
    http://www.zen-cart.com/forum/showpo...40&postcount=7

    Any ideas on how to implement that?

    4. Is there a way to allow customers to upload their own picture?

    5. Is it possible for the side box to rotate only the testimonials that do have pictures?

    6. For a future update, the language in the submission email has a minor misspelling :"Please verify thie testimonial and activate."

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by hedron View Post
    This contribution is great. Thank you Clyde.

    Everything seems to be working fine for me now. Below are further comments and questions.

    Tweak: to make this side box similar to the Reviews one, instead of “false”, I set the "title link" to display_all_testimonials in includes/modules/sideboxes/YOUR_Template/testimonials_manager... and turned off the link at the bottom.

    1. Minor bug: When adding a testimonial from the admin, if you insert a past date and forget to fill out a required field or if you do not format the date as suggested, after giving you an error it will change the date field to a random date. You cannot modify that date from the admin once you submit the testimonial. To correct that you need to delete and reenter the testimonial.

    2. Is there an easy admin fix to change just the “Testimonial submission” email address sent to the store owner? Or should I change that in the code (and where/how)?

    3. I would like to have the single testimonial breadcrumbs to be a sub-page of the All Testimonials page, using a tweak similar to this for EZ-Pages:
    http://www.zen-cart.com/forum/showpo...40&postcount=7

    Any ideas on how to implement that?

    4. Is there a way to allow customers to upload their own picture?

    5. Is it possible for the side box to rotate only the testimonials that do have pictures?

    6. For a future update, the language in the submission email has a minor misspelling :"Please verify thie testimonial and activate."
    2. Is there an easy admin fix to change just the “Testimonial submission” email address sent to the store owner? Or should I change that in the code (and where/how)?
    The e-mail address used is the one you have set in admin -> configuration -> e-mail options.
    If you want to change it to something else then you will have to define the new e-mail address in:
    includes/languages/english/YOUR_TEMPLATE/testimonials_add.php
    Now you will need to modify the section that sends the admin e-mail in
    includes/modules/pages/testimonials_add/header_php.php

    4. Is there a way to allow customers to upload their own picture?
    Currently, No.

    5. Is it possible for the side box to rotate only the testimonials that do have pictures?
    Currently, No.

  5. #5
    Join Date
    Feb 2009
    Posts
    138
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    The e-mail address used is the one you have set in admin -> configuration -> e-mail options.
    If you want to change it to something else then you will have to define the new e-mail address in:
    includes/languages/english/YOUR_TEMPLATE/testimonials_add.php
    Now you will need to modify the section that sends the admin e-mail in
    includes/modules/pages/testimonials_add/header_php.php
    Thank you.

    What are the specific lines of code that accomplish that in those files?

    I am guessing the code is pulling up the default STORE_OWNER_EMAIL_ADDRESS? Do you think it could be substituted with the Reviews email address that is set within the E-Mail options?

    I would like to change this only for the Submission emails sent to the store owner however, not to emails sent to customers. Those should still keep the default store email address...

    Thanks.

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by hedron View Post
    Thank you.

    What are the specific lines of code that accomplish that in those files?

    I am guessing the code is pulling up the default STORE_OWNER_EMAIL_ADDRESS? Do you think it could be substituted with the Reviews email address that is set within the E-Mail options?

    I would like to change this only for the Submission emails sent to the store owner however, not to emails sent to customers. Those should still keep the default store email address...

    Thanks.
    As I explained you'll need to define the new e-mail address in
    includes/languages/english/YOUR_TEMPLATE/testimonials_add.php

    define('TESTIMONIAL_EMAIL_ADDRESS', 'mynewemailaddress');

    Now you will need to modify the section that sends the admin e-mail in
    includes/modules/pages/testimonials_add/header_php.php

    look for the following section: lines 119 - 121)

    ////SEND ADMIN EMAIL

    zen_mail($name, STORE_OWNER_EMAIL_ADDRESS, EMAIL_OWNER_SUBJECT, EMAIL_OWNER_TEXT, STORE_NAME, EMAIL_FROM, $html_msg, 'testimonial_add');

    You need to substitute STORE_OWNER_EMAIL_ADDRESS with TESTIMONIAL_EMAIL_ADDRESS

  7. #7
    Join Date
    Feb 2009
    Posts
    138
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    As I explained you'll need to define the new e-mail address in
    includes/languages/english/YOUR_TEMPLATE/testimonials_add.php

    define('TESTIMONIAL_EMAIL_ADDRESS', 'mynewemailaddress');

    Now you will need to modify the section that sends the admin e-mail in
    includes/modules/pages/testimonials_add/header_php.php

    look for the following section: lines 119 - 121)

    ////SEND ADMIN EMAIL

    zen_mail($name, STORE_OWNER_EMAIL_ADDRESS, EMAIL_OWNER_SUBJECT, EMAIL_OWNER_TEXT, STORE_NAME, EMAIL_FROM, $html_msg, 'testimonial_add');

    You need to substitute STORE_OWNER_EMAIL_ADDRESS with TESTIMONIAL_EMAIL_ADDRESS
    Ok, that is starting to make sense. Thank you.

    Instead of defining a new email address (which I am guessing can be picked up by spiders in there), is there a list of available "Send Copy of" email addresses listed in Admin > Configuration > E-Mail Options?

    For example, in this case, instead of using STORE_OWNER_EMAIL_ADDRESS I could use the same email address used to get an alert that a review is pending. Where can I find a list that tells me the name of that code. I am guessing it should be something like PENDING_REVIEW_EMAIL_ADDRESS if it exists.

    That way I could change the email address in the admin if needed.... I am having no luck with the Developers Tool Kit in finding where those email addresses have been defined already.

    I still don't understand the structure of Zen Cart, but I am guessing that all email addresses reside in the database, they are defined in admin (email options) and then they are called in the catalog from the admin... so if STORE_OWNER_EMAIL_ADDRESS calls the main email address for the store, then some other code should be calling the email address for pending reviews...

    Where should I start looking?

 

 

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 262
    Last Post: 26 Jun 2025, 10:42 AM
  2. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  3. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg