Changeset 2930773
- Timestamp:
- 06/26/2023 08:40:33 AM (3 years ago)
- Location:
- immotoolbox-connect/tags/1.3.0
- Files:
-
- 2 edited
-
readme.md (modified) (8 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
immotoolbox-connect/tags/1.3.0/readme.md
r2930758 r2930773 34 34 == Changelog == 35 35 36 = 1. 2=36 = 1.3 = 37 37 * Handle PHP versions up to 8.2 38 * New filter option to filter properties with price on request : `searchpriceprivate`39 38 * New filter option for properties with price on request 39 40 40 = 1.2 = 41 41 * Add handling of not found properties … … 74 74 ### Property details page 75 75 This page is used to display your properties' details. 76 By default only one is required but if your using a multilingual website you'll have to create of page for each language. 76 By default only one is required but if your using a multilingual website you'll have to create of page for each language. 77 77 This page uses the `[itb_property]` shortcode 78 78 79 79 ### Search results page 80 This page is used to display the search results when using a search engine. 80 This page is used to display the search results when using a search engine. 81 81 This page uses the `[itb_searchresults]` shortcode (this shortcode uses the same parameters as the `[itb_listing]` shortcode) 82 82 83 83 ### Visitor selection page 84 This page is used to display the properties added to his selection by the visitor. 84 This page is used to display the properties added to his selection by the visitor. 85 85 This page uses the `[itb_selection]` shortcode (this shortcode uses the same parameters as the `[itb_listing]` shortcode) 86 86 … … 94 94 95 95 #### Using the Gutenberg block : 96 You can use the "ImmoToolBox Property Listing" block to add the listing inside a page. 96 You can use the "ImmoToolBox Property Listing" block to add the listing inside a page. 97 97 All the options of the listing are inside the Block Setting on the side bar. 98 98 99 99 #### Using the manual shortcode `[itb_listing]` 100 The Property Listing shortcode is `[itb_listing]`. 100 The Property Listing shortcode is `[itb_listing]`. 101 101 You can add it anywhere you want to add a listing inside a page. 102 102 103 103 Here are the shortcode parameters : 104 104 105 **Filter by type :** 106 Possible values are 'sale' or 'rental' 105 **Filter by type :** 106 Possible values are 'sale' or 'rental' 107 107 ex: `[itb_listing type="sale"]` 108 108 109 **Filter by country code :** 110 You have to use two-letter country codes 109 **Filter by country code :** 110 You have to use two-letter country codes 111 111 ex: `[itb_listing country="US"]` 112 112 113 **Of course you can combine this settings :** 113 **Of course you can combine this settings :** 114 114 ex: `[itb_listing type="rental" country="US"]` 115 115 … … 120 120 **Multi-lingual website** 121 121 If your website is multi-lingual, for each language (except WordPress main language) you have to add the parameters : 122 - property_page_id : the ID of the "Property details page" in the right language (you have to create this page)123 - selection_page_id : the ID of the "Visitor selection page" in the right language (you have to create this page)122 - property_page_id : the ID of the "Property details page" in the right language (you have to create this page) 123 - selection_page_id : the ID of the "Visitor selection page" in the right language (you have to create this page) 124 124 125 125 ex: `[itb_listing type="rental" country="US" property_page_id="123" selection_page_id="456"]` … … 129 129 This shortcode enable you to display properties inside another page with a slider 130 130 131 **8 properties for sale** 131 **8 properties for sale** 132 132 ex: `[itb_carousel type="sale" nbpp="8"]` 133 133 134 **Your properties marked as "selection" in ImmoToolBox** 134 **Your properties marked as "selection" in ImmoToolBox** 135 135 ex: `[itb_carousel featured="1"]` 136 136 137 **Multi-lingual website** 137 **Multi-lingual website** 138 138 See "Properties listing pages" information above 139 139 … … 141 141 142 142 #### Using the Gutenberg block : 143 You can use the "ImmoToolBox Property Seach" block to add the search engine inside a page. 143 You can use the "ImmoToolBox Property Seach" block to add the search engine inside a page. 144 144 All the options of the search engine are inside the Block Setting on the side bar. 145 145 … … 147 147 The Property Search shortcode is `[itb_search]`. 148 148 149 **An horizontal search engine** 149 **An horizontal search engine** 150 150 ex: `[itb_search format="horizontal"]` 151 151 152 152 **Multi-lingual website** 153 153 If your website is multi-lingual, for each language (except WordPress main language) you have to add the parameter "searchresults_page_id" 154 Where the value of this parameter is the ID of a "Search results page" in the right language. 154 Where the value of this parameter is the ID of a "Search results page" in the right language. 155 155 ex: `[itb_search format="horizontal" searchresults_page_id="123"]` 156 156 … … 161 161 162 162 **Property not found** 163 It's possible to specify a page ID to which the visitor should be redirected when the requested property is not found using the parameter `notfound_page_id`. 163 It's possible to specify a page ID to which the visitor should be redirected when the requested property is not found using the parameter `notfound_page_id`. 164 164 ex: `[itb_property notfound_page_id="123"]` 165 165 166 166 ## Advanced custom html generation 167 All the html content of this Gutenberg blocks and shortcodes are generated using [Twig](https://twig.symfony.com/) and can be totally customized. 167 All the html content of this Gutenberg blocks and shortcodes are generated using [Twig](https://twig.symfony.com/) and can be totally customized. 168 168 By default the plugin will search for the files inside your theme directory (to avoid problems it's highly recommended to use a child theme) 169 The files must be located in the directory : 170 `/wp-content/themes/YOU-THEME-child/itb-connect/partials/`169 The files must be located in the directory : 170 `/wp-content/themes/YOU-THEME-child/itb-connect/partials/` -
immotoolbox-connect/tags/1.3.0/readme.txt
r2930758 r2930773 34 34 == Changelog == 35 35 36 = 1. 2=36 = 1.3 = 37 37 * Handle PHP versions up to 8.2 38 * New filter option to filter properties with price on request : `searchpriceprivate`38 * New filter option for properties with price on request 39 39 40 40 = 1.2 = … … 120 120 **Multi-lingual website** 121 121 If your website is multi-lingual, for each language (except WordPress main language) you have to add the parameters : 122 - property_page_id : the ID of the "Property details page" in the right language (you have to create this page)123 - selection_page_id : the ID of the "Visitor selection page" in the right language (you have to create this page)122 - property_page_id : the ID of the "Property details page" in the right language (you have to create this page) 123 - selection_page_id : the ID of the "Visitor selection page" in the right language (you have to create this page) 124 124 125 125 ex: `[itb_listing type="rental" country="US" property_page_id="123" selection_page_id="456"]` … … 168 168 By default the plugin will search for the files inside your theme directory (to avoid problems it's highly recommended to use a child theme) 169 169 The files must be located in the directory : 170 `/wp-content/themes/YOU-THEME-child/itb-connect/partials/`170 `/wp-content/themes/YOU-THEME-child/itb-connect/partials/`
Note: See TracChangeset
for help on using the changeset viewer.