hey guys, my users have the following problem -> when they edit a listing and submit the edited version, they come back to the editing page, so they are not sure if they already submitted or not... how can i change that so that they are sent back to the dashboard site after the edited the listing?
Hello, Go to library > controls > dashboard > dashboard_functions.php present in your theme directory ans add the code given below Code: wp_redirect(home_url("/?page_id=".get_option('geo_dashboard_page'))); check image for reference This will solve your issue. Thanks & Regards Gourav Shrivastava
thank you, and is it also possible to let a pop up, pop up here before this code, so actually before redirection, just a small pop up saying like: "Thanks, your changes have been submitted..."
Hello, Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry. Thanks & Regards Gourav Shrivastava
hey gourav, okay i had a freelancer custom code me the following code up: Code: <script type="text/javascript"> alert("Thanks, your changes are done"); </script> could you just tell me where i have to put the code, so that it is executed after the "submission" button has been clicked ?