Is this helpful for what you are looking for? http://www.inkthemes.com/community/threads/remove-sign-in-and-add-listing.7086/#post-26258
@ jsal2 - thanks for the rely. I added the following in the custom css box .top_strip .associative_link { visibility: hidden; } Unfortunately it removed all the links in the top bar. I only want to remove the "Add Listing" link.
Hello, Go to library\controls\module_functions.php present in your theme directory and remove the code given below Code: <li><a href="<?php echo site_url('/?page_id=' . get_option('geo_submit_listing')); ?>"><?php echo ADD_LISTING; ?></a></li> Sending image for reference
Hi Gourav, Your directions worked perfectly! (of course) One small challenge... I use a child-theme. What steps should I take to insure this modification is not over written by a future theme update! Smiles ~ Mike
Hello, Child theme only support parent directory files and "module_functions.php" file present in sub directory of the theme. The only way to save the modification is to save the "module_functions.php" file and after update replace it with your current "module_functions.php" file.