{"id":395,"date":"2018-10-30T10:50:37","date_gmt":"2018-10-30T10:50:37","guid":{"rendered":"https:\/\/wpgeodirectory.com\/docs-v2\/?post_type=docs&#038;p=395"},"modified":"2020-04-10T03:10:35","modified_gmt":"2020-04-10T03:10:35","slug":"common-examples","status":"publish","type":"docs","link":"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/common-examples\/","title":{"rendered":"Common Examples of Customization"},"content":{"rendered":"<style>\nh5 {<br \/>  font-size: 1.2em;<br \/>  font-weight: bold;<br \/>  margin-top: 5px;<br \/>  margin-bottom: 15px;<br \/>}<br \/>blockquote.gd-faq h5 {<br \/>    display: block;<br \/>    margin-top: 5px;<br \/>    margin-bottom: 15px;<br \/>    margin-left: -10px;<br \/>    padding: 0px;<br \/>    border: 1px solic #cccccc;<br \/>    width: 100%;<br \/>    color: #393939;<br \/>    text-decoration: underline;<br \/>}<br \/>blockquote.gd-faq h5 a {<br \/>    color: #393939;<br \/>}<br \/>blockquote.gd-faq {<br \/>  padding: 15px!important;<br \/>  margin-left: 0px!important;<br \/>  margin-top:10px!important;<br \/>  border: 1px solid #cccccc !important;<br \/>  background-color: #ffffff!important;<br \/>  border-left: 10px solid #FFF7F3 !important;<br \/>  10px 10px 10px -10px #cccccc !important;<br \/>  border-radius: 0px 4px 4px 0px;<br \/>}<br \/><\/style>\n<p><span class=\"bookmark-index\"><br \/>\n<a href=\"#intro\">Introduction<\/a><br \/>\n<a href=\"#faq\">Frequently Asked Questions<\/a><br \/>\n<\/span><\/p>\n<h3><a href=\"#intro\" name=\"intro\">Introduction<\/a><\/h3>\n<p>This document goes over how to &#8216;zero out&#8217; styles on common GD design elements. GeoDirectory items inherit styles from the active theme, but in some cases you may want to style these items differently than. In those cases you can use the examples below to zero out the styles, and then modify them further to create your own style.<\/p>\n<p>As an example of how GD inherits styles, consider that most modern themes make it possible to customize the font color and size of an H2 heading, most often used as a section or secondary emphasis header on a page after the page title.<\/p>\n<p>GeoDirectory V2 makes widespread use of the &#8220;gd_post_meta&#8221; widget. In the following code example, the gd_post_meta function is being used to display custom fields in a tab:<\/p>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/Screenshot-2018-11-09-at-11.00.31-AM.png\"><img class=\"alignnone size-full wp-image-412\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/Screenshot-2018-11-09-at-11.00.31-AM.png\" alt=\"\" width=\"182\" height=\"45\" \/><\/a><\/p>\n<pre><code class='html'>\r\n&lt;div class=\"geodir-post-meta-container\"&gt;\r\n&lt;h2 class=\"fieldset-example\"&gt;Example&lt;\/h2&gt;\r\n&lt;\/div&gt;\r\n<\/code><\/pre>\n<p>What you are seeing here is that GeoDirectory V2 is wrapping a common H2 element in a div. The div &#8216;geodir-post-meta-container&#8217; allows you to add additional targeted custom styles to each individual element, but GeoDirectory is simultaneously not applying any styles to that same H2 element. The H2 element will be styled just like any other H2 element on your site.<\/p>\n<p>What we can offer here in this page are examples of how to zero out styles applied to the classes that are most common in GeoDirectory V2, so you can proceed to style the HTML as you see fit. In most cases you should be able to do this by adjusting the settings for common HTML elements in your theme options. Howevergd, if you need help with custom styles you can either create Custom CSS yourself or hire a web designer to do it for you.<\/p>\n<h4><a href=\"#custom-class\">Custom Class <\/a><\/h4>\n<p>Each GeoDirectory element with advanced options has a setting for you to add a custom class.<\/p>\n<p>Use that class to target styles you see on this page.<\/p>\n<h4><a href=\"#gd_location_switcher\">Location Switcher &#8211; gd_location_switcher <\/a><\/h4>\n<p>Change the color of the blue text for the active location.<\/p>\n<pre><code class='css'>\r\n\/*Change the color of the active text*\/\r\ngd-search-field-near.in-location .geodir-search-input-label, .gd-search-field-near.in-location input {\r\ncolor: #4CAF50;\r\n}\r\n\/*Hide suggestions with CSS*\/\r\n.gdlm-location-suggestions {\r\ndisplay: none !important;\r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#gd_search\" name=\"gd_search\">GD Search &#8211; gd_search <\/a><\/h4>\n<pre><code class='css'>\r\n\/*GDV2 Custom CSS &#8211; Hide the grey lines and zero out margin and padding*\/\r\n.geodir-loc-bar {\r\n    padding: 0;\r\n    border-top: 0;\r\n    border-bottom: 0;\r\n    margin: 0;\r\n}\r\n\/*GDV2 Custom CSS &#8211; Hideide the cog for advanced search options in all GD Search Bars*\/\r\n.geodir-show-filters {display: none}\r\n\/*Hide the icon in the search for field*\/\r\nbody .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper .geodir-search-input-label {\r\ndisplay: none;\r\n}\r\n\/*GDV2 Custom CSS &#8211; Hide the Search For field in all GD Search Bars*\/\r\n.gd-search-input-wrapper.gd-search-field-search {\r\ndisplay: none;\r\n}\r\n\/*GDV2 Custom CSS &#8211; Hide the Search Near field in all GD Search Bars *\/\r\n.gd-search-field-near {\r\ndisplay: none;\r\n}\r\n\/*GDV2 Custom CSS &#8211; Hide the CPT Select Field in all GD Search Bars *\/\r\n.gd-search-input-wrapper.gd-search-field-cpt {\r\ndisplay: none;\r\n}\r\n\/*Hide the first CPT in the CPT dropdown*\/\r\n.gd-search-input-wrapper.gd-search-field-cpt .search_by_post option:nth-child(1){\r\ndisplay:none;\r\n}\r\n\/*GDV2 Search &#8211; hide All the dropdown suggestions *\/\r\n.gd-suggestions-dropdown ul {\r\ndisplay:none;\r\n}\r\n\/*GDV2 Search &#8211; Left align search titles *\/\r\n.geodir-filter-container .customize_filter-in span{\r\ntext-align: left;\r\ndisplay: block;\r\n}\r\n\/*GDV2 Search &#8211; Hide Search category select field*\/\r\n.gd-search-input-wrapper.gd-search-field-cpt.gd-search-field-taxonomy.gd-search-field-categories {\r\ndisplay: none;\r\n}\r\n\/*GDV2 Search &#8211; Hide advanced search options button*\/\r\nbutton.geodir-show-filters {\r\ndisplay: none;\r\n}\r\n\r\n\/* GDV2 Search &#8211; Make search filters 5 columns *\/\r\n.geodir-filter-container .geodir-filter-cat{\r\nwidth: 20%;\r\n}\r\n\/* GDV2 Search &#8211; Hide empty results message *\/\r\n.geodir-loop-container p.geodir-info {\r\ndisplay: none;\r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#suggestions\" id=\"suggestions\">GD Search &#8211; gd_search Near Field Suggestions <\/a><\/h4>\n<p>Turn off allGD Search Near field suggestions by disabling autocomplete in the Advance Search settings tab.<\/p>\n<p>Use CSS to disable them selectively.<\/p>\n<pre><code class='css'>\r\n\/*GDV2 Custom CSS &#8211; Hide the Search Near field in all GD Search Bars *\/\r\n.gd-search-field-near {\r\ndisplay: none;\r\n}\r\n\/*GDV2 Search &#8211; hide All the dropdown suggestions *\/\r\n.gd-suggestions-dropdown ul {\r\ndisplay:none;\r\n}\r\n\/* GDV2 &#8211; Hide the Google Suggestions*\/\r\n.gdlmls-more{\r\n    display: none;\r\n}\r\n\/* GDV2 &#8211; Hide only the NEAR search autocomplete recommendations *\/\r\n.gd-suggestions-dropdown ul.gdlmls-near .gd-near-me{\r\n\tdisplay: block; \r\n}\r\n\/* GDV2 &#8211; Hide only the IN search recommendation *\/\r\n.geodir-listing-search ul.gdlmls-neighbourhood,\r\n.geodir-listing-search ul.gdlmls-city,\r\n.geodir-listing-search ul.gdlmls-region,\r\n.geodir-listing-search ul.gdlmls-country {\r\n    display: none !important;\r\n}\r\n\/* GDV2 &#8211; Hide the Near Me search recommendation *\/\r\n.gd-suggestions-dropdown ul.gdlmls-near li{\r\n\tdisplay: none; \r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#gd_post_meta\" id=\"gd_post_meta\">GD Post Meta &#8211; gd_post_meta <\/a><\/h4>\n<pre><code class='css'>\r\n\/* GeoDirectory V2 &#8211; sitewide display of fields with the gd_post_meta element. *\/\r\n.geodir_post_meta {\r\npadding: 0px !important;\r\nmargin: 0px !important;\r\nborder: 0px !important;\r\nline-height: inherit !important;\r\ntext-indent: 0px !important;\r\n}\r\n\r\n\/* GeoDirectory V2 subfields shown in tabs with Tabs UI *\/\r\n.geodir-tabs .geodir-post-meta-container {\r\npadding: 0px !important;\r\nmargin: 0px !important;\r\nborder: 0px !important;\r\nline-height: inherit !important;\r\n}\r\n\r\n\/* GeoDirectory V2 Individual subfields shown in details page sidebar with gd_output_location widget *\/\r\n.geodir-output-location .geodir-output-location-detail .geodir_post_meta {\r\npadding: 0px !important;\r\nmargin: 0px !important;\r\nborder: 0px !important;\r\nline-height: inherit !important;\r\ntext-indent: 0px !important;\r\n}\r\n\r\n\/* GeoDirectory V2 Business Hours Styles*\/\r\n.geodir-field-business_hours {\r\ntext-align: inherit !important;\r\n}\r\n\/* GeoDirectory V2 Business Hours &#8211; Start open and stay open*\/\r\n.gd-bh-open-hours {\r\ndisplay: block !important;\r\n}\r\n\r\n\/* GeoDirectory V2 Business Hours &#8211; hide the toggle so it cannot be closed*\/\r\nspan.gd-bh-expand-range {\r\ndisplay: none;\r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#gd_add_listing\" id=\"gd_add_listing\">GD Add Listing Page &#8211; gd_add_listing <\/a><\/h4>\n<p>Change items on the add-listing page<\/p>\n<pre><code class='css'>\r\n\/* GeoDirectory V2 &#8211; Add Listing Page field labels &#8211;  *\/\r\nbody.geodir-page-add label {\r\n    font-size: 22px;\r\n}\r\n\/* GeoDirectory V2 &#8211; Add Listing Page fieldset headings &#8211;  *\/\r\nbody.geodir-page-add h5 {\r\n    font-size: 22px;\r\n}\r\n\/* GeoDirectory V2 &#8211; Add Listing Page field set descriptions &#8211;  *\/\r\nbody.geodir-page-add small {\r\n    font-size: 22px;\r\n}\r\n\/* GeoDirectory V2 &#8211; Add Listing Page field labels &#8211;  *\/\r\nbody.geodir-page-add .geodir_message_note {\r\n    font-size: 22px;\r\n}\r\n\/* GeoDirectory V2 &#8211; Add Listing Page select field values &#8211;  *\/\r\nbody.geodir-page-add .select2-selection__rendered {\r\n    font-size: 22px;\r\n}\r\n\/* GeoDirectory V2 &#8211; Add Listing Page form rows &#8211;  *\/\r\nbody.geodir-page-add .geodir_form_row {\r\n    padding-bottom: 10px;\r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#listings\" id=\"listings\">CSS for GD Listings<\/a><\/h4>\n<p>There are many elements you can include in GD Listings. You may need more CSS rules to style it completely, but here are some examples to get you started.<\/p>\n<pre><code class='css'>\r\n\/*Style the listing title*\/\r\n.geodir-entry-title a {\r\n    line-height : 1.4em;\r\n    font-size : 34px;\r\n    font-color : pink;\r\n}\r\n\/*Style the text*\/\r\n.gd-list-item-right, .gd-list-item-left, .geodir-post-meta-container {\r\n    line-height: 1.2em;\r\n    font-size: 22px;\r\n}\r\n\/*Style the links*\/\r\n.gd-list-item-right a, .gd-list-item-left a, .geodir-post-meta-container a {\r\n    line-height : 1.2em;\r\n    font-size : 22px;\r\n    font-color : pink;\r\n}\r\n<\/code><\/pre>\n<h4><a href=\"#logic\" name=\"logic\">Widget Logic<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>You may want to show widgets only on certain pages. To do that you will need a 3rd party plugin. There are several options out there. You might want to try Widget Logic. We don&#8217;t provide support for it, but it is very lightweight and provides support for WordPress conditional logic.<\/p>\n<p>See the plugin here: <a href=\"https:\/\/wordpress.org\/plugins\/widget-logic\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/wordpress.org\/plugins\/widget-logic\/<\/a><\/p>\n<p>You can see a variety of options here for controlling display: <a href=\"https:\/\/codex.wordpress.org\/Conditional_Tags\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/codex.wordpress.org\/Conditional_Tags<\/a><\/p>\n<p>Common examples include:<br \/>\nOnly shows the widget if the post type is Places: <\/p>\n<pre><code>geodir_get_current_posttype()=='gd_place'<\/code><\/pre>\n<p>for a single GD Place detail page: <\/p>\n<pre><code>is_singular( 'gd_place' )<\/code><\/pre>\n<p>for a GD Place Archive Page: <\/p>\n<pre><code>is_post_type_archive('gd_place')<\/code><\/pre>\n<p>for a specific category: <\/p>\n<pre><code>is_tax( 'taxonomy-name', 'category-name' )<\/code><\/pre>\n<p>for a GD Place Category archive for a specific category: <\/p>\n<pre><code>is_post_type_archive('gd_place') &amp;&amp; is_tax( 'taxonomy-name', 'category-name' )<\/code><\/pre>\n<p>for only the WordPress Front Page <\/p>\n<pre><code>is_front_page()<\/code><\/pre>\n<p>For the add listing page you can use the page ID or a GD conditional tag<\/p>\n<pre><code>is_page( 42 )<\/code><\/pre>\n<p>or<\/p>\n<pre><code>geodir_is_page( 'add-listing' )<\/code><\/pre>\n<\/blockquote>\n<h4><a href=\"#gd_output_location\">GD Output Locations &#8211; gd_output_locations<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p><strong>Switch From Output Location to Post Meta to Control Icons and Labels<\/strong><\/p>\n<p>Most display of custom fields and listing data is displayed through Tabs UI, GD Output Locations, and gd_post_meta.<\/p>\n<p>In some cases you may want to display a field in the Detail page sidebar without icon or label.<br \/>\nGD Output Locations doesn&#8217;t give you the options to adjust that, so you will need to show the field in GD Post Meta instead.<\/p>\n<ul>\n<li>Find the field email in CPT &#8211; Settings &#8211; Custom Fields &#8211; Email<\/li>\n<li>Find &#8220;Show in extra output locations&#8221; and remove &#8220;Details page sidebar&#8221;, then save<\/li>\n<li>Go to WP &#8211; Appearance &#8211; Widgets<\/li>\n<li>Add GD &gt; Post Meta and add to your sidebar.<\/li>\n<li>Adjust the options to set the display as you like.<\/li>\n<li>You can start with the most general example at the top, then remove it and use more specific examples listed below.<\/li>\n<\/ul>\n<\/blockquote>\n<h4><a href=\"#gd_post_address\" name=\"gd_post_address\">GD Post Address &#8211; Alter Address Display<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>GeoDirectory Version 2 has a design element GD Post Address that you can use to configure the display of the address.<br \/>\nRead more: <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/design-elements\/#gd_post_address\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/design-elements\/#gd_post_address<\/a><\/p><\/blockquote>\n<h4><a href=\"#layout\" name=\"layout\">Layout<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p><strong>Set the layout<\/strong><\/p>\n<p>There are several layouts that display listings. Read more about how to customize <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/design\/layouts\/\" target=\"_blank\" rel=\"noopener noreferrer\">layouts<\/a><\/p><\/blockquote>\n<h4><a href=\"#gd_post_badge\" name=\"gd_post_badge\">GD Post Badge &#8211; gd_post_badge examples<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>GD Post Badge is a powerful tool for adding highlights or targeted interactive elements to your listings. You can use badges in the archive item or on the detail page.<\/p>\n<p><strong><a href=\"#read-more\" name=\"read-more\">Example &#8211; Read More link in the Archive item<\/a><\/strong><\/p>\n<p>Use the following configuration to add a &#8220;Read More&#8221; link to your archive item template:<\/p>\n<pre><code>\r\n[gd_post_badge key=\"post_title\" condition=\"is_not_empty\" badge=\"Read More\" link=\"%%post_url%%\" bg_color=\"#ffffff\" txt_color=\"#433aed\" alignment=\"center\"]\r\n<\/code><\/pre>\n<p><strong>Example &#8211; Custom Website Link<\/strong><\/p>\n<pre><code><\/code><\/pre>\n<p>[gd_post_badge key=&#8221;website&#8221; condition=&#8221;is_not_empty&#8221; badge=&#8221;Awesome Super Link&#8221; link=&#8221;%%input%%&#8221; bg_color=&#8221;#9c03aa&#8221; txt_color=&#8221;#ffffff&#8221; size=&#8221;extra-large&#8221; list_hide=&#8221;3&#8243; list_hide_secondary=&#8221;2&#8243;]<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Example &#8211; Claim Listings<\/strong><br \/>\n<a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/gd-badges-claimed.jpg\"><img class=\"alignnone size-full wp-image-546\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/gd-badges-claimed.jpg\" alt=\"\" width=\"125\" height=\"56\" \/><\/a><\/p>\n<pre><code>\r\n\r\n[gd_post_badge key=\"claimed\" condition=\"is_not_empty\" badge='&lt;i class=\"fas fa-check-circle\"&gt;&lt;\/i&gt;Verified' bg_color=\"#ff8040\" txt_color=\"#ffffff\" size=\"small\" alignment=\"right\" css_class=\"verified\"]\r\n\r\n<\/code><\/pre>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/gd-badges-unclaimed-2.jpg\"><img class=\"alignnone size-full wp-image-548\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/gd-badges-unclaimed-2.jpg\" alt=\"\" width=\"143\" height=\"47\" \/><\/a><\/p>\n<pre><code>\r\n\r\n[gd_post_badge key=\"claimed\" condition=\"is_empty\" badge='&lt;i class=\"far fa-question-circle\"&gt;&lt;\/i&gt;Unclaimed' bg_color=\"#ff8040\" txt_color=\"#ffffff\" size=\"small\" alignment=\"right\" css_class=\"unverified\"]\r\n\r\n<\/code><\/pre>\n<p><strong>Example &#8211; Visit my website<\/strong><br \/>\n<a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/my-website.jpg\"><img class=\"alignnone size-full wp-image-637\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/my-website.jpg\" alt=\"\" width=\"246\" height=\"48\" \/><\/a><\/p>\n<pre><code>\r\n\r\n[gd_post_badge key=\"website\" condition=\"is_not_empty\" badge='Visit my &lt;a href=\"%%input%%\"&gt;&lt;i class=\"fas fa-music\"&gt;&lt;\/i&gt; website&lt;\/a&gt;' bg_color=\"#800080\" txt_color=\"#ffffff\"]\r\n\r\n<\/code><\/pre>\n<p><strong><a href=\"#featured-badge\" name=\"featured-badge\">Example &#8211; Featured Listings<\/a><\/strong><\/p>\n<p>See an <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/featured-listings\/\">example here<\/a> for use with featured listings.<br \/>\n<a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/badges.jpg\"><img class=\"alignnone size-full wp-image-707\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/badges.jpg\" alt=\"\" width=\"150\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/badges.jpg 390w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/badges-300x72.jpg 300w\" sizes=\"(max-width: 390px) 100vw, 390px\" \/><\/a><\/p>\n<p><strong><a href=\"#badge-classes\" name=\"badge-classes\">Example &#8211; Badge Classes<\/a><\/strong><\/p>\n<p>These custom classes can be added to your badge to change the way it is displayed within the containing div.<\/p>\n<p>To use these over the top of an archive item GD Post Images, be sure to include the badge before the GD Archive Item Close element.<\/p>\n<pre><code>\r\ngd-badge-shadow \/\/ adds a shadow to the badge\r\ngd-ab-top-left \/\/ positions absolute top, absolute left\r\ngd-ab-top-left-angle \/\/ positions absolute top, absolute left, at an angle\r\ngd-ab-top-right \/\/ positions absolute top, absolute right\r\ngd-ab-top-right-angle \/\/ positions absolute top, absolute right, at an angle\r\ngd-ab-bottom-left \/\/ positions absolute bottom, absolute left\r\ngd-ab-bottom-left-angle \/\/ positions absolute bottom, absolute left, at an angle\r\ngd-ab-bottom-right \/\/ positions absolute bottom, absolute right\r\ngd-ab-bottom-right-angle \/\/ positions absolute bottom, absolute right, at an angle\r\ngd-lity \/\/ adds interactivity - launching a video link in a lightbox, for example\r\n<\/code><\/pre>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/Screenshot-from-2019-04-05-13-06-14.png\"><img class=\"alignnone size-full wp-image-708\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/Screenshot-from-2019-04-05-13-06-14.png\" alt=\"\" width=\"300\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/Screenshot-from-2019-04-05-13-06-14.png 384w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/05\/Screenshot-from-2019-04-05-13-06-14-300x195.png 300w\" sizes=\"(max-width: 384px) 100vw, 384px\" \/><\/a><\/p>\n<p>Taxonomy Badges<\/p>\n<pre><code>[gd_post_badge key=\"post_category\" condition=\"is_contains\" search=\"32\" badge=\"Attractions\" bg_color=\"#0073aa\" txt_color=\"#ffffff\"]\r\n[gd_post_badge key=\"post_category\" condition=\"is_contains\" search=\"32,33\" badge=\"Attractions \/ Hotels\" bg_color=\"#0073aa\" txt_color=\"#ffffff\"]\r\n[gd_post_badge key=\"post_tags\" condition=\"is_contains\" search=\"Museum\" badge=\"Museum\" bg_color=\"#0073aa\" txt_color=\"#ffffff\"]\r\n[gd_post_badge key=\"post_tags\" condition=\"is_contains\" search=\"Museum,Garden\" badge=\"Museum \/ Garden\" bg_color=\"#0073aa\" txt_color=\"#ffffff\"]<\/code><\/pre>\n<\/blockquote>\n<h4><a href=\"#gd_post_images\" name=\"gd_post_images\">GD Post Images &#8211; gd_post_images<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>For examples of working with images <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/integrations\/images\/#css\" target=\"_blank\" rel=\"noopener noreferrer\">see the Images doc<\/a>.<\/p><\/blockquote>\n<h4><a href=\"#fa-icons\" name=\"fa-icons\">Font Awesome 5 JS SVG Styling with CSS<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>GeoDirectory uses Fontawesome 5 JS icons that draw in svg inline. To set the color of the icon means setting the color of the svg. Here are a couple examples.<\/p>\n<pre><code class='css'>\r\n\r\n\/*Sidebar Address field, change the color of the home icon *\/\r\n.geodir-i-location svg.svg-inline&#8211;fa.fa-home.fa-w-18 {\r\ncolor: red;\r\n}\r\n\r\n\/* Hide Phone Icon in SD Contacts Area *\/\r\n.sd-contacts svg.svg-inline&#8211;fa.fa-phone.fa-w-16.profile_icon {\r\ndisplay: none !important;\r\n}\r\n\r\n\/* Hide Link Icon in SD Contacts Area *\/\r\n.sd-contacts svg.svg-inline&#8211;fa.fa-external-link-square-alt.fa-w-14 {\r\ndisplay: none !important;\r\n}\r\n\r\n\/* Hide FB Icon in SD Contacts Area *\/\r\n.sd-contacts svg.svg-inline&#8211;fa.fa-facebook.fa-w-14 {\r\ndisplay: none !important;\r\n}\r\n<\/code><\/pre>\n<p>Read more: <a href=\"https:\/\/fontawesome.com\/how-to-use\/on-the-web\/advanced\/svg-symbols\" target=\"_blank\" rel=\"noopener noreferrer\">FA SVG Symbol styling (external link)<\/a><\/p><\/blockquote>\n<h3><a href=\"#faq\" name=\"faq\"><\/a>Frequently Asked Questions<\/h3>\n<h4>Customizing with CSS and PHP Snippets<\/h4>\n<blockquote><p><a href=\"#css\">Where should I add CSS snippets?<\/a><br \/>\nCSS should be added through the Customizer, in the &#8220;Additional CSS&#8221; tab.<\/p>\n<p>Read more about <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing\/\">customizing<\/a>.<\/p><\/blockquote>\n<p><strong>Change the favorites heart<\/strong><br \/>\nChange the heart to another icon with a <a href=\"https:\/\/wpgeodirectory.com\/support\/topic\/change-favorite-heart-icon\/#post-495597\" target=\"_blank\" rel=\"noopener noreferrer\">snippet<\/a>.<\/p>\n<h4><a href=\"#flex\" name=\"flex\">Inline Elements with Flex<\/a><\/h4>\n<p>In some cases you might want to combine several GD elements to create something. Here is an example to get you started.<\/p>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex.jpg\"><img class=\"alignnone size-full wp-image-890\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex.jpg\" alt=\"\" width=\"484\" height=\"87\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex.jpg 484w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-300x54.jpg 300w\" sizes=\"(max-width: 484px) 100vw, 484px\" \/><\/a><\/p>\n<p>You can paste the shortcodes in the HTML below into a tab, then add the CSS to the customizer.<\/p>\n<p><strong>HTML<\/strong><\/p>\n<pre><code class='css'>\r\n&lt;div class=\"location-title\"&gt;&lt;i class=\"fas fa-map-signs\"&gt;&lt;\/i&gt;&lt;div class=\"location-title-inner\"&gt;[gd_post_meta key=\"post_title\" show=\"value-strip\"] [gd_post_address show=\"icon-value\" address_template=\"%%neighbourhood%% %%city%%\"]&lt;\/div&gt;&lt;\/div&gt;\r\n<\/code><\/pre>\n<p><strong>CSS<\/strong><\/p>\n<pre><code class='css'>\r\n.geodir-tabs .location-title, .geodir-tabs .location-title-inner {\r\ndisplay: flex;\r\nline-height: 20px;\r\nalign-items: center;\r\npadding-bottom: 3px;\r\n}\r\n\r\n.geodir-tabs .location-title .geodir-post-meta-container {\r\nborder-bottom: 0!important;\r\npadding: 0 0;\r\n}\r\n.geodir-tabs .location-title .location-title-inner * {\r\npadding-left:3px;\r\n}\r\n<\/code><\/pre>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-html.jpg\"><img class=\"alignnone size-full wp-image-891\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-html.jpg\" alt=\"\" width=\"881\" height=\"355\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-html.jpg 881w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-html-300x121.jpg 300w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/flex-html-768x309.jpg 768w\" sizes=\"(max-width: 881px) 100vw, 881px\" \/><\/a><\/p>\n<h4><a href=\"#columns\" name=\"columns\">Detail Page Template Columns<\/a><\/h4>\n<p>You might want to &#8216;spice up&#8217; your Detail Page template and do it without a builder. Here is an example of some commonly used fields called with the gd_post_meta shortcode and arranged into a 3 column layout.<\/p>\n<p>Add the CSS with the Customizer -&gt; Additional CSS<br \/>\nThen copy paste the Details Page Contents into your GD Details template<\/p>\n<pre><code class='css'>\r\n\/*Columns Demo*\/\r\n.column8675309 {\r\nfloat: left;\r\nwidth: 33.33%;\r\n}\r\n\r\n\/* Clear floats after the columns *\/\r\n.row8675306:after {\r\ncontent: \"\";\r\ndisplay: table;\r\nclear: both;\r\n}\r\n<\/code><\/pre>\n<p>Detail Page Contents<\/p>\n<pre><code class='php'>\r\n&lt;div class=\"row8675306&#8243;&gt;\r\n&lt;div class=\"column8675309&#8243;&gt;[gd_post_rating show=\"stars\"][gd_post_meta key=\"post_category\"][gd_categories title_tag=\"h4&#8243; post_type=\"0&#8243; hide_empty=\"1&#8243; hide_count=\"1&#8243; sort_by=\"count\" max_level=\"1&#8243; max_count=\"all\" max_count_child=\"all\"]&lt;\/div&gt;\r\n&lt;div class=\"column8675309&#8243;&gt;[gd_post_meta key=\"address\"]&lt;\/div&gt;\r\n&lt;div class=\"column8675309&#8243;&gt;[gd_post_meta key=\"phone\"][gd_post_meta key=\"email\"]&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/code><\/pre>\n<p><a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example.jpg\"><img class=\"alignnone size-large wp-image-472\" src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example-1024x174.jpg\" alt=\"\" width=\"835\" height=\"142\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example-1024x174.jpg 1024w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example-300x51.jpg 300w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example-768x131.jpg 768w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/columns_example.jpg 1973w\" sizes=\"(max-width: 835px) 100vw, 835px\" \/><\/a><\/p>\n<h4><a href=\"#map-bubble-examples\" name=\"map-bubble-examples\">Map Bubble Examples<\/a><\/h4>\n<blockquote><p><a href=\"#map-bubble-reviews\" name=\"map-bubble-reviews\">How do I remove reviews from the map bubble?<\/a><br \/>\nThis can be done with CSS, or by <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing-templates\/\">customizing the plugin template<\/a>.<\/p>\n<pre><code class='css'>\r\n.geodir-bubble-meta-bottom {display:none!important;}\r\n<\/code><\/pre>\n<\/blockquote>\n<h4>Customize the Post Description in the Archive Item<\/h4>\n<blockquote class=\"gd-faq\"><p><a href=\"#post_content\" name=\"post_content\">How do I customize the description (post_content) in listing on an archive page or gd_listing shortcode? <\/a><br \/>\nIf you want to remove the description completely from all listings across the site, then edit the Archive Item template for the CPT and remove the [gd_post_meta key=\u2019post_content\u2019 show=\u2019value-strip\u2019]. Read more about the <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/page-design\/#archive-item\">Archive Item template here<\/a>.<\/p>\n<p>If you want to shorten it, that can be done with CSS. The following examples shorten the length of the text and hide the &#8220;Read More&#8221; and the link&#8217;s gradient brackground. Adjust the following CSS to meet your needs:<\/p>\n<pre><code class='css'>\r\n\/* GD Archive Item &#8211; limit post_content length *\/\r\n.geodir-field-post_content {\r\nmax-height: 50px;\r\n}\r\n\/* GD Archive Item &#8211; hide Read More link and background *\/\r\n.geodir-field-post_content .gd-read-more {\r\ndisplay: none !important;\r\n}\r\n<\/code><\/pre>\n<\/blockquote>\n<h4>Builders on Details, Archive, and Search page templates<\/h4>\n<blockquote class=\"gd-faq\"><p><a href=\"#bb-on-templates\" name=\"bb-on-templates\">How can I use BB to edit the GD Details (or other GD) templates? As soon as I open I get an error that says the page should not be linked to.<\/a><\/p>\n<p>See our <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/integrations\/builders\/\" target=\"_blank\" rel=\"noopener noreferrer\">builders<\/a> page describing which builder tools to use where and why.<\/p><\/blockquote>\n<h4><a href=\"#ratings-and-favorites\" name=\"ratings-and-favorites\">Comments, Ratings and Favorites<\/a><\/h4>\n<p>Add a css class to ratings without reviews<\/p>\n<pre><code class='php'>\r\n\/**\r\n* Add CSS class to listing layout for empty rating.\r\n*\/\r\nfunction gd_snippet_hide_no_review_text( $classes, $class, $post_ID ) {\r\nglobal $gd_post;\r\n\r\nif ( ! empty( $post_ID ) &amp;&amp; ! empty( $gd_post ) &amp;&amp; ! empty( $gd_post-&gt;ID ) &amp;&amp; $gd_post-&gt;ID == $post_ID &amp;&amp; empty( $gd_post-&gt;rating_count ) ) {\r\n$classes[] = 'gd-custom-no-review'; \/\/ CSS class\r\n}\r\nreturn $classes;\r\n}\r\nadd_filter( 'post_class', 'gd_snippet_hide_no_review_text', 10, 3 );\r\n<\/code><\/pre>\n<p>Read more about CPT Rating settings:<br \/>\nRead more about the Multiratings Addon:<\/p>\n<h4><a href=\"#ratings\" name=\"ratings\">Remove ratings and Reviews<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>If you only want to disable ratings without disabling comments you can find the settings at:<\/p>\n<p><strong>Places &#8211; Settings &#8211; General &#8211; Show Advanced &#8211; Disable Ratings without disabling comments for this post type<\/strong><\/p>\n<p>To remove ratings and comments take the following steps<\/p>\n<ol>\n<li>GD Detail page tabs &#8211; Remove the Reviews tab using the Tabs UI to hide the reviews form<\/li>\n<li>GD Details template &#8211; Remove the gd_post_rating element from the GD Detail page template<\/li>\n<li>GD Archive Item template &#8211; Remove the gd_post_rating element from the Archive Item template<\/li>\n<li>Map Bubble &#8211; Add the Custom CSS below to remove the .geodir-post-rating class from the Map Bubble on the Archive and Detail pages<\/li>\n<\/ol>\n<pre><code class='css'>\r\n\/*GD &#8211; Remove map bubble ratings on gd_place Archive pages*\/\r\n.post-type-archive-gd_place .gd-bubble .geodir-post-rating{\r\ndisplay: none;\r\n}\r\n.geodir-bubble-meta-bottom {\r\ndisplay:none!important;\r\n}\r\n\r\n\/*GD &#8211; Remove map bubble ratings on gd_place Detail pages*\/\r\n.single-gd_place .gd-bubble .geodir-post-rating {\r\ndisplay: none;\r\n}\r\n\/*GD &#8211; Remove Archive item rating from gd_place Archive pages*\/\r\nli.gd_place .geodir-post-rating {\r\ndisplay: none;\r\n}\r\n<\/code><\/pre>\n<\/blockquote>\n<h4>Disable comments on WordPress Posts and Pages<\/h4>\n<blockquote class=\"gd-faq\"><p>It is possible to remove any visual trace of ratings using the steps listed above, but you can also turn off the WordPress setting that allows users to add comments. You can disallow users from posting comments on your site by adjusting the settings at:<\/p>\n<p><em><strong>WordPress &#8211; Settings &#8211; Discussion &#8211; Default Article Settings &#8211; Allow people to post comments on new articles UNCHECK<\/strong><\/em><\/p>\n<p>That setting will only disallow comments for new posts. Comments must also be disallowed on existing posts. To do that you can edit each post individually and find the setting <strong>Allow Comments &#8211; Uncheck<\/strong>. You can also do that through a bulk edit.<\/p><\/blockquote>\n<h4><a href=\"#favorites\" name=\"favorites\">Remove favorites<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>You can disable favorites in the CPT settings, for example:<\/p>\n<p><strong>Places &#8211; Settings &#8211; General &#8211; Show Advanced &#8211; Disable Favorites for this post type<\/strong><\/p><\/blockquote>\n<h4><a href=\"#account-management\" name=\"account-management\">Account Management<\/a><\/h4>\n<p>Read more about Account Management with GeoDirectory here: <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/account-management\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/wpgeodirectory.com\/docs-v2\/geodirectory\/account-management\/<\/a><\/p>\n<h4><a href=\"#report\" name=\"report\">Report Content<\/a><\/h4>\n<p>Use the Report Content plugin to show a form on listing pages to allow your site visitors to report issues.<\/p>\n<p>Report Content Plugin : <a href=\"https:\/\/wordpress.org\/plugins\/report-content\/\" rel=\"noopener noreferrer\" target=\"_blank\">https:\/\/wordpress.org\/plugins\/report-content\/<\/a><\/p>\n<p>Use the <a href=\"https:\/\/wpgeodirectory.com\/support\/topic\/report-content-plugin-not-displaying\/#post-526653\" rel=\"noopener noreferrer\" target=\"_blank\">snippet in this topic<\/a> to show the form on GD Details template.<\/p>\n<ol>\n<li>This plugin allows you to add a simple Ajax powered form to your listings&nbsp;so that your visitors can report inappropriate content, broken links and bugs.<\/li>\n<li>To make it work with your GD listings:\n<ol>\n<li>Install and activate the <a href=\"https:\/\/wordpress.org\/plugins\/report-content\/\" target=\"_blank\" rel=\"noopener noreferrer\">Report Content plugin<\/a> the usual way.<\/li>\n<li>Once installed select&nbsp;<em><strong>Reports &gt; Settings&nbsp;<\/strong><\/em>from your WordPress admin menu, and under <em><strong>Integration Settings<\/strong><\/em>, set <em><strong>Add the report form<\/strong><\/em> to <em><strong>Manual<\/strong><\/em>:<br \/>\n<a href=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/reportcontent.png\"><img src=\"http:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/reportcontent.png\" alt=\"\" width=\"628\" height=\"159\" class=\"alignnone size-full wp-image-991\" srcset=\"https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/reportcontent.png 628w, https:\/\/wpgeodirectory.com\/docs-v2\/wp-content\/uploads\/sites\/23\/2018\/10\/reportcontent-300x76.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" \/><\/a>\n<\/li>\n<li>To add the Report form to your GD Detail pages, add the <a href=\"https:\/\/wpgeodirectory.com\/support\/topic\/report-content-plugin-not-displaying\/#post-526653\" rel=\"noopener noreferrer\" target=\"_blank\">snippet in this topic<\/a> &#8211; more info about using <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing\/\" rel=\"noopener noreferrer\" target=\"_blank\">code snippets here<\/a>.<\/li>\n<\/ol>\n<\/li>\n<li>And this is how it should all look:<br \/>\n<img class=\"greenborder\" src=\"https:\/\/wpgeodirectory.com\/docs\/wp-content\/uploads\/sites\/3\/2016\/08\/useful2.png\" alt=\"\" width=\"543\" height=\"183\"><\/li>\n<\/ol>\n<h4>Remove WordPress Admin Bar<\/h4>\n<blockquote class=\"gd-faq\"><p>WordPress has a &#8220;WP Way&#8221; policy that prohibits plugin and theme authors from hiding the WordPress admin bar.<\/p>\n<p>You can use the following code snippet to hide the admin bar.<\/p>\n<p>Read more about customizing with PHP Code Snippets: <a href=\"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing\/#custom-code\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing\/#custom-code<\/a><\/p>\n<p>PHP Snippet to remove the admin bar<\/p>\n<pre><code>add_filter('show_admin_bar', '__return_false');<\/code><\/pre>\n<\/blockquote>\n<h4>Exclude GD CPTs from WordPress Search<\/h4>\n<blockquote class=\"gd-faq\">\n<pre><code class='php'>\r\n\/**\r\n* Exclude GD CPTs from WP Search.\r\n*\/\r\nfunction gd_snippet_wp_search_exclude_cpts( $wp_query ) {\r\nif ( is_admin() || empty( $wp_query ) ) {\r\nreturn;\r\n}\r\n\r\nif ( ! ( $wp_query-&gt;is_main_query() &amp;&amp; $wp_query-&gt;is_search() ) ) {\r\nreturn;\r\n}\r\n\r\nif ( geodir_is_page( 'search' ) ) {\r\nreturn;\r\n}\r\n\r\n$in_search_post_types = get_post_types( array( 'exclude_from_search' =&gt; false ) );\r\n$post_types = geodir_get_posttypes();\r\n\r\nif ( ! empty( $in_search_post_types ) &amp;&amp; ! empty( $post_types ) ) {\r\n$search_post_types = array();\r\n\r\nforeach ( $in_search_post_types as $post_type ) {\r\nif ( ! in_array( $post_type, $post_types ) ) {\r\n$search_post_types[] = $post_type;\r\n}\r\n}\r\n\r\n$wp_query-&gt;set( 'post_type', $search_post_types );\r\n}\r\n}\r\nadd_action( 'pre_get_posts', 'gd_snippet_wp_search_exclude_cpts', 10 );\r\n<\/code><\/pre>\n<\/blockquote>\n<h4><a href=\"#selectors\" name=\"selectors\">CSS for GD Pages and Templates<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>Here are some GD Classes to target particular pages and templates:<\/p>\n<pre><code class='css'>\r\n\/* Search Page *\/\r\nbody.geodir-page-search {\r\nfilter: grayscale(100%);\r\n}\r\n\/*All GeoDirectory Archive Pages*\/\r\nbody.geodir-archive {\r\nfilter: invert(100%);\r\n}\r\n\/*GeoDirectory Place Archive Pages*\/\r\nbody.post-type-archive-gd_place {\r\nfilter: invert(100%);\r\n}\r\n\/*All GeoDirectory Single Detail Listings*\/\r\nbody.geodir_custom_posts {\r\nfilter: hue-rotate(120deg);\r\n}\r\n\/*GeoDirectory Single Place Detail Listings*\/\r\nbody.single-gd_place {\r\nfilter: hue-rotate(120deg);\r\n}\r\n\/*GeoDirectory Location Page &#8211; Get the page ID to create something like this*\/\r\nbody.page-id-8 {\r\nfilter: grayscale(100%);\r\n}\r\n<\/code><\/pre>\n<\/blockquote>\n<h4><a href=\"#whoop-css\" name=\"whoop-css\">CSS for Whoop Child Theme<\/a><\/h4>\n<blockquote class=\"gd-faq\"><p>Here are some examples for the Whoop theme<\/p>\n<pre><code class='css'>\r\n\/* GDV2 Whoop &#8211; Hide Claim in Header area on details page.*\/\r\n.content-box.content-single .whoop-top-claim-wrap .geodir-post-claim {\r\ndisplay: none;\r\n}\r\n<\/code><\/pre>\n<\/blockquote>\n","protected":false},"featured_media":0,"parent":84,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","doc_tag":[],"amp_validity":null,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs\/395"}],"collection":[{"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/types\/docs"}],"replies":[{"embeddable":true,"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/comments?post=395"}],"version-history":[{"count":0,"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs\/395\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs\/84"}],"next":[{"title":"Performance","link":"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/performance\/","href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs\/627"}],"prev":[{"title":"Customizing GeoDirectory","link":"https:\/\/wpgeodirectory.com\/docs-v2\/faq\/customizing\/","href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/docs\/164"}],"wp:attachment":[{"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/media?parent=395"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/wpgeodirectory.com\/docs-v2\/wp-json\/wp\/v2\/doc_tag?post=395"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}