WPSight
Forum Replies Created
-
Hello,
well it depends much on the theme you’re using, but in the WPCasa plugin it is the listing-archive-description.php template you might want to modify in order to display the address.
Also it depends in which field you store the address to “display”. If you want to display the value from the address field you could use something like this:
<?php $address = get_post_meta( get_the_ID(), '_map_address' ); echo $address[0]; ?>Best Regards
Forum: Reviews
In reply to: [WPCasa - Real Estate for WordPress] Easy to use and awesome supportThank you very much for your kind words. Much appreceated.
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Translate via poeditHello Paul,
thanks for chiming in.
The rental periods can be named to anything from within the WPCasa Settings in WP-Admin > WPCasa > Settings > Listings. The string translation based on PO/MO Files is only relevant for the initial setup. Say your website is setup in spanish and you install and activate WPCasa for the first time, a bunch of default settings will be saved to the Database. In that case the spanish translations for the rental periods are taken from the PO/MO Files. If you need to change the name of those periods later you can do so, as already mentioned, from the WPCasa Settings.
In case you’re running your site with multiple languages, we’d recommend to use Polylang. Our bridge addon WPCasa Polylang registers a few strings for the Polylang String Translation to make it possible to add translations for each language on each rental period.
Sorry if that sounds a little bit confusing but I hope you understand what I mean.
All the best
Hello,
yes, in some cases they disappear with the upgrade to WP 4.7 too. Glad you found the solution by yourself.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] advanced search using min and max areaFor completion: I already have answered you through your ticket.
Closing this for now.
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Error changing beds and bathsHello,
I’m not sure what you mean by that you’ve pasted this snippet to wp-sight-search? However, the labels for bathroom and bedrooms can be edited through your options in WP-Admin > WPCasa > Settings > Listings > Listing Features.
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Error changing beds and bathsHello,
what version of WPCasa are you currently using? And where did you pasted this snippet? Also what are you actually trying to change? The possible values of those details (1, 2, 3,…) or only the name?
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] CompatibilityHello,
yes, WPCasa is compatible with the latest version of WordPress. We will release an update soon which will also reflect that information in the plugin info.
We also have users who are using WPCasa with WPML and it seems to be working fine, altough our recommended solution would be Polylang. We also have a bridge addon for Polylang available (WPCasa Polylang) which adds the necessary strings for the string translation.
We already have italian translation available and will include it with the next update.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Google Maps won’t show?Hi Mark,
thanks for getting in touch.
We actually have no reports from our users that the Google Maps aren’t working, thus I’m not sure why the Google Maps code should be outdated. However, your initial request was very good and you already tested and confirmed a few things. But it is also important to know what theme you’re using and if there is might be an incompatibility.
Feel free to leave that for now, but if you prefer to let me have a closer look on it just let me know.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Listing type orderHello Dan,
no, by ID. Which obviously doesn’t make much sense. Order by name makes much more sense therefore we will change it with the upcoming release.
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] broken image linksHello,
you’re using relative paths for your images. It expects images to be on http://treasurecoastcommercialrealestate.com/property-listings/wp-content/uploads/2017/01/banner-acquisitions-2.jpg and that is the issue. Not sure how you can solve this since I do not know how this is implemented, but this issue has nothing really to do with WPCasa.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] author boxHello,
the Website Field is a default Field of the WordPress user Profile. Here is some information which might help you.
As an alternative you can simply add your own custom profile field with the following code snippet:
add_filter( 'wpsight_profile_contact_fields', 'custom_profile_contact_fields' ); function custom_profile_contact_fields( $fields ) { $fields['loopnet']['label'] = __( 'Loopnet', 'wpcasa' ); return $fields; }See here how you can add snippets to your site.
All the best,
Joe [WPCasa]Forum: Plugins
In reply to: [EDD - FastBill Integration] Fatal Error on Plugin Activation.
- This reply was modified 9 years, 4 months ago by WPSight.
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Commercial and Residential offeringsHello Dan,
this is unfortunately not possible at the moment. It is possible to use listing categories to have Commercial Properties grouped together and Residential Properties in another category, but there is no way to “split” the search form.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Translate via poeditHello Dan,
thank you for your message.
We’re aware that there are still a few small issues with missing textdomains on some strings and we will fix this with the next update.
We usually recommend to use Loco Translate to do the translations. This makes it pretty easy to add new translations to your plugins and themes, scan the template files and start translating.
Especially for the Search by Price I assume you have the WPCasa Advanced Search plugin installed and active. So the translation must be done there.
The “Toogle Map” and the Rental Periods do not use PO/MO Files for the translation but can be modified from within your WPCasa Settings.
And as for the custom offer I guess you might need to add a translation for your child theme/theme and make sure to load the translation files. See here for more info: https://codex.wordpress.org/Function_Reference/load_theme_textdomain
All the best,
Joe [WPCasa]- This reply was modified 9 years, 4 months ago by WPSight. Reason: added link to loco translate