Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2007
    Location
    Mount Maunganui, New Zealand
    Posts
    419
    Plugin Contributions
    0

    Default Shorten all customer names in reviews using php one time

    Hi,
    I have code in that shortens a customer name, to just first name and first initial of surname.
    Works well.

    I would like to, using phpmyadmin, change the existing customer_name to first name with last initial, in the reviews tab database.
    (For existing reviews made before I added the code)

    Anyone able to provide a bit of sql that i could enter?
    As example Nicola Smith would become Nicola S, just in the Reviews database.

    Thanks!

  2. #2
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,155
    Plugin Contributions
    11

    Default Re: Shorten all customer names in reviews using php one time

    You would probably need to do this in two steps.

    The first would be to grab just the first character of the customers_lastname. Something like
    Code:
    SELECT SUBSTRING(SOUNDEX(customers_lastname),1,1) AS FirstChar FROM customers
    then
    Code:
    SELECT cCONCAT(customer's_firstname,' ', FirstChar)AS review_name FROM customers
    Just random thoughts as to how you might change the reviews code without having to create any mod or new database fields.

    Definitely play with this in test mode.
    Last edited by dbltoe; 10 May 2019 at 08:23 PM.

  3. #3
    Join Date
    Jan 2007
    Location
    Mount Maunganui, New Zealand
    Posts
    419
    Plugin Contributions
    0

    Default Re: Shorten all customer names in reviews using php one time

    Thanks for the ideas. I'll get a test site going and try it out. Cheers.

 

 

Similar Threads

  1. v155 using bindvars: duplicated in reviews header_php.php
    By torvista in forum General Questions
    Replies: 5
    Last Post: 11 Apr 2018, 07:34 PM
  2. v154 Change Customer names in Reviews?
    By bennito in forum General Questions
    Replies: 2
    Last Post: 22 Mar 2017, 03:17 PM
  3. Amending names on customer reviews
    By Long Tall Sally in forum Basic Configuration
    Replies: 15
    Last Post: 6 Apr 2009, 03:32 AM
  4. Replies: 2
    Last Post: 8 Jan 2009, 01:00 PM
  5. Show ALL reviews on one page?
    By kookiewookie in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 16 Oct 2006, 03:23 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR