Possible to change "Add Listing" link?

Discussion in 'GeoCraft WordPress Theme' started by mintons, Nov 12, 2012.

  1. mintons

    mintons New Member

    Joined:
    Nov 11, 2012
    Messages:
    3
    Likes Received:
    0
    Hello -

    I would like to change the link path for the yellow button that appears on the top right of the theme for clients to add their listings. I have another page that I created that I would like for them to use instead. Is that possible? I am assuming it is in the settings somewhere, please advise.
    Thanks,
    Shaun
     
  2. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    Sorry this is not possible to change the button link but if you don't want that button, you can hide it by css code. The code is bellow:

    Code:
    .header_wrapper .header .post_btn {
    visibility: hidden;
    }
     
  3. cdllife

    cdllife New Member

    Joined:
    Oct 19, 2012
    Messages:
    18
    Likes Received:
    2
    You can change line 184 in module_functions.php to a url of your choosing. It's under library>controls>

    Code:
            <li><a href="<?php echo site_url('/?page_id=' . get_option('geo_submit_listing')); ?>"><?php echo ADD_LISTING; ?></a></li>
    to

    Code:
            <li><a href="YOUR_URL_HERE"><?php echo ADD_LISTING; ?></a></li>
     
    ellomoto and Krish like this.

Share This Page