Store Locator Plus® for WordPress Forums Store Locator Plus Incorrect label – locations list

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #79139
    D H
    Participant

    The label for “Identifier” is displaying as “Image”.

    Looking at the extendo_meta table it looks like the “Label” and “Slug” do not match up right.

     

    Attachments:
    You must be logged in to view attached files.
    #79145
    Lance Cleveland
    Keymaster

    Someone changed that in your database — this is the default label definition — “Identifier”.

    The default settings are defined in this code snippet below.  The first entry is the gettext() entry for the label for that field.

    You’ll need to change it in the SQL extendo meta table.

    $this->slplus->database->extension->add_field(
        __( 'Identifier'       ,'slp-power' ),
        'varchar',
        array(
            'addon'         => $this->addon->short_slug ,
            'slug'          => 'identifier'             ,
            'display_type'  => 'text'                   ,
            'help_text'     => __( 'The identifier field is meant to store a unique location record ID from an external data source. ' , 'slp-power' ) .
                               __( 'During a CSV import, this field is used to match up incoming data with existing locations. '       , 'slp-power' )
        ));
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Incorrect label – locations list’ is closed to new replies.