| View previous topic :: View next topic |
| Author |
Message |
nicholak Site Admin

Joined: 27 Jun 2006 Posts: 353
|
Posted: Fri Nov 03, 2006 2:24 pm Post subject: Testimonials module for Zen Cart |
|
|
A new release of this module, version 1.3, is now available for sale. All customers that have purchased this module so far will receive this updated version.
CHANGELOG:
1.3 - 27th October 2006
-------------------------
* Added selector for language in admin (may add translation option in near future...)
* Sidebox now filters based on customer's language session
* removed redundant condition in individual testimonial view query
* added ability to restrict testimonials to relevant products or category view
Files affected -
/includes/modules/sideboxes/testimonials.php
/includes/modules/pages/testimonials/header_php.php
/includes/modules/pages/testimonials_add/header_php.php
/admin/testimonials.php
/admin/includes/extra_datafiles/testimonials.sql
/admin/includes/languages/english/testimonials.php
New files -
/admin/includes/functions/extra_functions/testimonials_functions.php
Prior version release info:
1.2 - 17th September 2006
-------------------------
* Added meta tag support for better search engine indexing
* Patch for incorrect acceptance of "http://" as legitimate URL
Files affected -
/includes/modules/pages/testimonials/header_php.php
/includes/modules/pages/testimonials_add/header_php.php
/includes/languages/english/testimonials.php
/admin/testimonials.php
1.1 - 6th September 2006
-------------------------
* Added optional URL obfuscation
* Colour change in admin to highlight new testimonials
Files affected -
/admin/testimonials.php
/includes/modules/pages/testimonials_add/header_php.php
1.0 - 4th July 2006
--------------------
Initial release _________________ Nicholas Keown
AKA langer
Support Email: support[at this domain] |
|
| Back to top |
|
 |
nicholak Site Admin

Joined: 27 Jun 2006 Posts: 353
|
Posted: Sat Nov 25, 2006 11:31 am Post subject: Version 1.4 of Testimonials released |
|
|
I have released version 1.4 of the testimonials module. This version adds the ability to migrate from the other testimonials modules for Zen Cart: Testimonial Manager and Customer Testimonials.
The module is available here: http://www.zencartbuilder.com/index.php?main_page=product_info&products_id=5
CHANGELOG:
1.4 - 25th November 2006
-------------------------
* Added migration option for other Zen Cart testimonials modules.
Files affected -
/admin/testimonials.php _________________ Nicholas Keown
AKA langer
Support Email: support[at this domain]
Last edited by nicholak on Sun Jan 07, 2007 5:35 pm; edited 1 time in total |
|
| Back to top |
|
 |
nicholak Site Admin

Joined: 27 Jun 2006 Posts: 353
|
Posted: Sun Jan 07, 2007 5:33 pm Post subject: Testimonials version 1.5 released |
|
|
I have released version 1.5 of the testimonials module. This version addresses a couple of emailing bugs as well as adds some minor enhancements..
The module is available here: http://www.zencartbuilder.com/index.php?main_page=product_info&products_id=5
CHANGELOG:
1.5 - 7th January 2007
-------------------------
* Bugfix: Email to author on submission not occuring due to error in code
* Bugfix: Extra info function call (if configured) incorrect - caused error
* Added option to show empty sidebox for adding testimonials to allow submissions where no testimonials available & add new link is activated in sidebox. Displays message set in testimonials language define file.
* Added version number to admin page heading
* Edited submission email content for better presentation. _________________ Nicholas Keown
AKA langer
Support Email: support[at this domain] |
|
| Back to top |
|
 |
nicholak Site Admin

Joined: 27 Jun 2006 Posts: 353
|
Posted: Sat May 05, 2007 9:54 am Post subject: Bug for php 5.2 users |
|
|
the following error occurs for users who upgrade to PHP 5.2
| Quote: | | PHP Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. in /includes/modules/pages/testimonials/header_php.php on line 43 |
In the offending file (/includes/modules/pages/testimonials/header_php.php) locate on line 43:
| : | | $page_result = $db->Execute(&$splitPagedResult->sql_query); |
and change it to:
| : | | $page_result = $db->Execute($splitPagedResult->sql_query); |
I'll roll this change into the next release. _________________ Nicholas Keown
AKA langer
Support Email: support[at this domain] |
|
| Back to top |
|
 |
nicholak Site Admin

Joined: 27 Jun 2006 Posts: 353
|
Posted: Thu May 24, 2007 7:44 am Post subject: Anti-spam strategy |
|
|
Spammers are targeting this module. Though the spam is never published, it is very annoying dealing with them.
Please see this post for limiting spam:
http://www.zencartbuilder.com/forums/viewtopic.php?p=735#735 _________________ Nicholas Keown
AKA langer
Support Email: support[at this domain] |
|
| Back to top |
|
 |
|