WPSight
Forum Replies Created
-
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Múltiple imagesHello,
At the moment it is only possible to have multiple images by uploading them with the “Add Media” button and make the images basically “attachments” for the specific listing. On the other side you would then need a gallery plugin to display them.
As an alternative: Our premium themes feature their own listing galleries, where you can straight upload multiple images through a dedicated listing image metabox and get them displayed through a widget.
Hope I could help a little bit.
All the best
Hello Damian,
thanks for writing us.
But as already mentioned you’re using an outdated version of wpCasa which hasn’t much to do with the WPCasa plugin here. Please understand that we’re not able to offer support for that version you’re using since it is already outdated since more than 3 years.
You might want to consider to upgrade to the latest version (the plugin version offered here).
All the best
Hi Damian,
I believe you’ve already been in touch with us through our website, but just for completion I answer here as well.
The version of WPCasa you’re using is unfortunately outdated and doesn’t have much to do with the WPCasa plugin here. But yes, there is indeed an issue with the photo uploader. Luckily there is an easy workaround. For that simply use the “Add Media” Button right above the editor to add your photos to a property. That way, photos will become “attached” and will display on your site just as usual. Just make sure to NOT add the photos to the editor area itself.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Display widget plugins *troubles*Hello,
thanks for your report. We’re already aware about the ongoing issues with the Display Widgets plugin. This only affects our premium themes and doesn’t have anything to do with WPCasa itself. However, our premium themes include a clean copy of that plugin which works without any issues. For support with our premium themes please open a ticket on http://wpcasa.com.
And thanks a lot for your suggestion. It might be really useful to those who are looking for a suiteable alternative.
All the best
- This reply was modified 8 years, 4 months ago by WPSight.
Hello,
thanks for your message.
Unfortunately we’re currently not able to verify an issue on that part. Neither with any of the latest WordPress versions nor with an active SSL Certificate on the domain. For our test we’ve also used an Let’s Encrypt Certificate.
However, to enter your license codes you do not actually need those 2 pages. The license key for the theme can be entered in WP-Admin > Appearance > Theme License while license keys for your purchased addons can be entered in WP-Admin > WPCasa > Licenses.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Advertisement appears twiceHello,
it sounds like a CSS issue but can’t tell it for sure since we haven’t tested WPCasa with that theme. You might want to send over a link to your site so we can have a quick look by ourselves.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] WPCasa and the BeThemeHello,
this is unfortunately not easy to tell since we haven’t tested WPCasa with that theme. In the WPCasa settings you can find an option to disable the plugin’s CSS so you might want to try that and see if that helps you.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Search Offer BugHello,
sorry for the late reply.
This is actually not a bug but the actual behaviour. Removing the offer dropdown from the search form means that there is no control about what listings for what offer should get displayed.
To overcome this you’d need to consider customizing the search form properly.
All the best
Yes sure. Simply drop us a line through our contact form and let us know what exactly you need.
Hello @eirikv,
It actually depends what you define as “easy”. Basically you can use the below code and it technically does what you need:
<?php /** * Add custom text (from) before price */ add_filter( 'wpsight_get_listing_price_before', 'custom_get_listing_price_before' ); function custom_get_listing_price_before( $value ) { $custom = get_post_meta( get_the_ID(), '_my_custom_field_name', true ); if( $custom ) $value .= '<small>' . $custom . '</small> '; return $value; }This code basically checks if there is a custom field with the name _my_custom_field_name and returns the value if available. You can use the default custom fields metabox in your listing editor to add this field/value manually. If you want to have a proper custom field in the listing price metabox you need to add it with some additional custom code.
Note: The code above hasn’t been tested, so please use at your own caution. Also: It is a very basic example, you might need to build on top of that.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Legacy currency converterHello,
thank you for your message. This issue is because the API from Yahoo, which has been used to get the exchange rates, has been deprecated just recently.
We’re going to fix this in the WPCasa Currency Converter plugin which is available for the new WPCasa. But unfortunately we’re not able to fix this with the plugin version you’re currently using since we stopped development of the old wpCasa more than 2 years ago. Best would be to either upgrade your website to the new WPCasa, or to get a webdeveloper who can help you fix this issue for your sites.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Search Button MisalignedGreat, glad that this is solved now.
Hopefully you’ve adjusted the CSS from within your custom child theme and not directly in the CSS from the plugin? Otherwise it would get overwritten during the next update.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Search Button MisalignedButton and Checkboxes are included in WPCasa, with some basic styles but in the end it is theme-specific.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Search Button MisalignedHello,
this is most probably caused by some CSS from the theme you’re using. There isn’t much we can do on this part – especially if we do not have access to your website’s source code.
There is probably some CSS in your theme which styles buttons differently and which result in this misaligment. You might want to check there first.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Change listing page by category?Hello,
you can add listing categories directly to your menu from WP-Admin > Appearance > Menus. You might need to enable the selection box by clicking on the upper right tab which says “Screen Options”.
The layout is pretty theme-specific. If you’re using a 3rd party theme you might need to customize some of the templates. Check our documentation to see how you can do this.
All the best