bhanumunjal
Forum Replies Created
-
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Remove Currency Sign from Ad Setup PageI actually want currency sign to not show up when user clicks the Price Input Box on Ad Setup page
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] search by country in default location optionIts under Location and Maps Settings – [adverts_list] Configuration. When I select Use Default in Location Field – Its not searching if I enter Country and the ad already has country when google auto complete is used to set the location.
I want the search to be done using the default search bar as if use use google auto complete on the front end to search the ads, if user just enter every text in the same way as it appears down below in google autocomplete, and just hit enter the location does not work as long as one of the autocomplete row down below is not clicked manually.Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Author name instead of Posted By = id in URLI mean, can I have something in URL like this – https://www.domain.com/authorname , instead of https://www.domain.com/?PostedBy=authorname
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Notification email back to userIf you can let me know the name of the hook, I can write the code myself.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Author name instead of Posted By = id in URLForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] How to show all Ads posted by a userGot it
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Change Email name from – to new userThanks
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] moderate="1" not workingThanks
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Where do I add more radius optionGo it
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] moderate="1" not workingAlright, it works if the status is changed to published from Quick Edit option, but if used Edit option and then published is clicked in there it gives that message “Post updated, but cannot be published since some required data is not filled properly.”
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] moderate="1" not workingGot this working but now when I go to approve it I get this message
“Post updated, but cannot be published since some required data is not filled properly.”, but all the data is in thereForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Show Ads in the User City first by defaultDefinitely, So this is the code that I developed. Some changes might be required depending on how your site is structured.
Please modify it as per your URL’ssession_start();
$locData = (unserialize(file_get_contents(‘https://www.geoplugin.net/php.gp?ip=’.$_SERVER[‘REMOTE_ADDR’])));$actual_link = “https://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]”;
$yourLink = “your url here for desired links and pages”;
if(isset($_GET[‘location’]))
{
$location = “?location=” . $_GET[‘location’] . “&location_lat=” . $_GET[‘location_lat’] . “&location_lng=” . $_GET[‘location_lng’] . “&location_txt=” . $_GET[‘location_txt’];
$_SESSION[‘location’] = $location;
}
if(!isset($_GET[‘location’]) && $actual_link == “home url here”)
{
if(!isset($_SESSION[‘location’]))
{
$location = “?location=”.$locData[‘geoplugin_city’].”%2C+”.$locData[‘geoplugin_region’].”%2C+”.$locData[‘geoplugin_countryName’].”&location_lat=”.$locData[‘geoplugin_latitude’].”&location_lng=”.$locData[‘geoplugin_longitude’].”&location_txt=”.$locData[‘geoplugin_city’];
$_SESSION[‘location’] = $location;
}
$newUrl = “home url here”.$_SESSION[‘location’];
header(‘Location: ‘ . $newUrl);
}
else if(!isset($_GET[‘location’]) && ($actual_link == $yourLink))
{
$newUrl = $actual_link . $_SESSION[‘location’];
//$_SESSION[‘location’] = $location;
header(‘Location: ‘ . $newUrl);
}Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Show Ads in the User City first by defaultSure
But first I require the approval from the author of this plugin to allow me to post custom addon code in relation to his plugin.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Show Ads in the User City first by defaultHey, I got this working after doing some custom programming.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Location Search not Working!Hey it works now, Thank you so much for your support.