Results 1 to 3 of 3

Thread: Change "View the item details"

  1. #1
    User
    Join Date
    06-19-09.
    Posts
    417

    Default Change "View the item details"

    Hi,

    I am trying to change "View the item details" to "Read more".

    With my limited PHP skills I have so far:

    Code:
    <?php str_replace ($entry['link'] ,'Read more'); ?>
    Which does not work :-(

    Can anyone help me out with the code required?

    Thanks,

    Gary.

  2. #2
    Experienced user
    Join Date
    06-10-09.
    Location
    Cape Town, South Africa
    Posts
    1,387

    Default Re: Change "View the item details"

    This is set-up in a language string, so you can override it in the config/langconfig.php file, but as the template variables also contain the ['url'] variable (just the link, without any text in it), you can use that and wrap it in whatever hyperlink you desire in your template string.

  3. #3
    User
    Join Date
    06-19-09.
    Posts
    417

    Default Re: Change "View the item details"

    Many thanks for this, it worked a treat!!

    Code:
    <?php echo $entry['url']; ?>">Read more</a>

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
  •