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
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; }
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>