Alex Rollin
Forum Replies Created
-
AuthorPosts
-
August 27, 2019 at 7:33 am in reply to: Old invoices / order data lost after upgrading to V2 #505082This reply has been marked as private.
Hello,
neither of these files will import correctly because they are not formatted correctly.
To get the correct format, log in to you site and add a listing or two. Fill in all the fields with representative data.
Then go and export the listings. That will give you a CSV file with the correct format.
Using Open or Libre office, merge your data into that file, being careful to preserver column headers and the order of the columns.
https://wpgeodirectory.com/docs-v2/geodirectory/settings/import-export/#recommended
This reply has been marked as private.I was able to select a CC that was attached to my account.
Can you please send a screenshot of the issue?
The developers say that, to make the automatic insertion of timezone offset in business hours work that a google maps API key is needed, the second key that is for Geocoding. That key should not have http referrer restrictions. It is not used on the frontend and not exposed on the site.
If there is an issue, we can take a look. Please share WP Admin so we can check on your site. This isn’t a known issue so it must be something going on with your site.
Support for free or expired members is only for sites running the core plugin https://wpgeodirectory.com/support-policy/
Hello,
that would require some customization but you can use these functions:
$total = GeoDir_Location_Country::count_posts_by_name( $item->country ); $total = GeoDir_Location_Region::count_posts_by_name( $item->region, $item->country ); $total = GeoDir_Location_City::count_posts_by_name( $item['city'], $item['region'], $item['country'] );An example, untested:
/** * Count listing by city, region, country. * * CITY: * PHP : echo do_shortcode( '[gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"]' ); * HTML: [gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"] * * REGION: * PHP : echo do_shortcode( '[gd_snippet_listings_count type="region" region="Gujarat" country="India"]' ); * HTML: [gd_snippet_listings_count type="region" region="Gujarat" country="India"] * * COUNTRY: * PHP : echo do_shortcode( '[gd_snippet_listings_count type="country" country="India"]' ); * HTML: [gd_snippet_listings_count type="country" country="India"] */ function gd_snippet_listings_count_sc( $atts, $content = '' ) { $defaults = array( 'type' => 'city', // country, region, city 'country' => '', 'region' => '', 'city' => '' ); $args = wp_parse_args( $atts, $defaults ); $content = 0; switch( $args['type'] ) { case 'country': if ( ! empty( $args['country'] ) ) { $content = GeoDir_Location_Country::count_posts_by_name( $args['country'] ); } break; case 'region': if ( ! empty( $args['region'] ) ) { $content = (int) GeoDir_Location_Region::count_posts_by_name( $args['region'], $args['country'] ); } break; default: case 'city': if ( ! empty( $args['city'] ) ) { $content = GeoDir_Location_City::count_posts_by_name( $args['city'], $args['region'], $args['country'] ); } break; } return $content; } add_shortcode( 'gd_snippet_listings_count', 'gd_snippet_listings_count_sc' );For more help with this customization you can find support here: https://geodirectoryexperts.com/
Thanks the developers are checking into it.
The Xylus solution is backend only, and not a function that is available to general site users.
FB have made significant changes to their APIs in the last year to protect user data and have yet to issue approval for any frontend API access for apps (ie approving an app submitted to FB review, the new process they instituted since the changes).
We have worked up the solution you can see in the social importer now which we update continually.
If you are having a problem with a particular page you can share the URL of the page you are trying to import and we can take a look.
There are several options that control the email content.
At this page is the option to switch between text and html.
/wp-admin/admin.php?page=gd-settings&tab=design§ion=email_template
GD – Settings – Design – Email Template – Show advanced
Text email will not render the complex shortcodes like [#listing_title#] as a link. Instead the html will be converted to text so you will only see the listing title, not the title marked up with a link. If text format is selected then links should be written out like https://mysite.com/link
All html will be stripped when using the text template design. You can switch it back to html at that setting.
The new GDV2 Search by Distance feature is covered here: https://wpgeodirectory.com/docs-v2/places/search/#search-by-distance
Category pins do not support Font Awesome Pro. The developers are looking into it for future versions.
This reply has been marked as private.GDV2 pricing manager docs are here:
https://wpgeodirectory.com/docs-v2/addons/pricing-manager/I have been informed that the entry is for the timezone offset of the place from UTC, not including BST or DST.
-
AuthorPosts