where the word "Publish" on member dashboard?

Discussion in 'GeoCraft WordPress Theme' started by xiaominhncd, Sep 5, 2013.

  1. xiaominhncd

    xiaominhncd New Member

    Joined:
    Jul 30, 2013
    Messages:
    14
    Likes Received:
    0
    i translate geocraft theme to spanish language and 99% done except one word, I searched the whole theme files,but was not found word "Publish" which list on member dashboard(not admin dashboard),please see attached file, thanks for your help.
     

    Attached Files:

  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this go to the
    geocrafttheme\library\controls\dashboard\dashboard_functions.php
    file and replace coed shown in the image with the code given below.

    Code:
    <br/><?php
      if (ucwords($listing->post_status)=="Publish")
    {
    echo "publicar";
    }
    else
    {
    echo "pendiente";
    }?></td>
    publishtext.png
     

Share This Page