How to remove "Post your Business Listing" link on home page?

Discussion in 'GeoCraft WordPress Theme' started by dshim, Oct 24, 2016.

  1. dshim

    dshim New Member

    Joined:
    Dec 28, 2011
    Messages:
    12
    Likes Received:
    0
    I would like to remove the yellow image link in the upper right hand side on the home page that says "Post Your Business Listing at $..."
    i do not want the price of the listing on the home page. That link should not be there. How do I remove it?
     
  2. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hi,

    It seems you want to hide the post submission button, you can simply use following code in the Custom CSS field located under Dashboard->GeoSettings->Theme Options->Stylings Settings

    Code:
    .header_wrapper .header .post_btn {
        display: none!important;
    }
    This will resolve your issue,

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  3. imranite

    imranite Member

    Joined:
    Jul 5, 2013
    Messages:
    54
    Likes Received:
    1
    Hi Admin,

    I am interested in removing the "Add Listing link" at the top right hand corner.
    I also wish to make the 'Sign in' link at the top right hand corner to point to my own custom login-in page.

    Kindly show me how.

    Thanks.

    Im
     
  4. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hello Imranite,

    You can hide the post button from Dashboard->GeoSettings->Theme options->Stylings Settings->Custom CSS field

    Just put below code there, This will resolve your issue,
    Code:
    .header_wrapper .header .post_btn{
    display:none;
    }
    Regarding linking to your own login page, we need to modify that link, share your admin credentials at [email protected] with the link, we will do it for you.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  5. imranite

    imranite Member

    Joined:
    Jul 5, 2013
    Messages:
    54
    Likes Received:
    1
    Hi Naveen,

    Thanks for replying.
    Please read my first question again as it looks like you misunderstood.

    What I want to remove is the "Add Listing link" at the top right hand corner and not the post button.
    Looking forward to your reply.

    Thanks.

    Im
     
  6. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hello Im,

    You can use following code instead:
    Code:
    .top_strip .menu .associative_link li:nth-child(2) {
        display: none;
    }
    Hope this will work.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  7. imranite

    imranite Member

    Joined:
    Jul 5, 2013
    Messages:
    54
    Likes Received:
    1
    Thanks. Almost but not quite.

    It removes the 'Dashboard' link as well which I don't want to remove.

    Look forward to your reply.

    Thank you.
     
  8. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    You can display Dashboard as a menu link in your site, check you menus.
     
  9. imranite

    imranite Member

    Joined:
    Jul 5, 2013
    Messages:
    54
    Likes Received:
    1
    Is it possible it to show it at the usual spot (top strip) when logged in?

    Thanks.

    Im
     
  10. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hi Imran,

    That's possible only through some source code customization in the theme.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     

Share This Page