WPSight
Forum Replies Created
-
Hello,
glad that you could found the code and solve this by yourself. Just to add, the dashboard attribute is actually for the WPCasa Dashboard plugin and tells if a custom detail should also get displayed in the WPCasa Dashboard’s Frontend Editor or not. But yes, you need to give your custom detail a name from within the WPCasa settings.
All the best
Forum: Plugins
In reply to: [WPCasa Listings Map] Map Listing Stays Active on HoverHello,
sorry for the late reply.
This is currently not possible but we already have this on our list and will include options for that within one of the next updates. Thanks for your patience.
All the best
Hello,
if you plan to customize the plugin try to use the available action and filter hooks. I can’t currently say for 100% if and how we implement this feature in what version. It can be the next release but possible also one after. So just be aware that you backup your changes and before you update make sure we’ve got this feature implemented. To stay on track you can follow us on Twitter, Facebook or subscribe to our newsletter.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Property SearchHello,
technically it is possible but more of a customization. You can however modify those fields and the values, but the search would also need to get customized.
If you do not have enough experience with that I would recommend you to hire a webdeveloper for that.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Contact AgentHello,
you can hide that button with CSS. Simply paste the following CSS into the Custom CSS Field in your customizer (if you use WordPress 4.7 or above) or you can add it to your child theme’s style.css or you can use a 3rd party plugin like Simple Custom CSS:
.wpsight-listing-agent-archive {display: none;}All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Single Listing Video FootageHello,
by default you can also use the core gallery function from WordPress by grouping multiple images and adding them to the editor. If you want a dedicated widget to place you can have a look at our themes where gallery functionality is embedded. Other than that you can use any 3rd party gallery plugin to display your images.
But we also maybe publish a gallery plugin soon. At least we have this on our todo list but it rather has low priority since having a gallery is already possible.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] For Sale TagHello,
you can use the following code snippet to do that:
/** * Add custom listing offer to default * set sale and rent. */ add_filter( 'wpsight_offers', 'custom_wpsight_offers' ); function custom_wpsight_offers( $offers ) { // remove sale offer unset($offers['sale']); // add lease offer $offers['lease'] = __( 'for lease', 'wpcasa' ); return $offers; }You can find more infos about this here.
And read here how you can use code snippets on your site.
All the best
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Single Listing Video FootageHello,
you can add this only directly into the editor/description at the moment. We plan a more proper integration through a custom plugin for that but this can still take a little.
All the best
Forum: Plugins
In reply to: [WPCasa Polylang] Polylang for Estatik real estate pluginHello,
sorry for the late reply.
Estatik is a whole different system opposed to WPCasa. This WPCasa Polylang Plugin works only if you use WPCasa and Polylang together to create a multilingual website.
All the best,
Joe [WPCasa]Forum: Themes and Templates
In reply to: [upTown] How to change the height of the header?Hello,
basically you did everything right. Are you sure that your custom CSS loads fine?
All the best,
Joe [WPCasa]Forum: Themes and Templates
In reply to: [upTown] Theme Not Loading in Firefox or IEHello,
do you have a link to your website?
All the best,
JoeForum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] 404 when searching by offerHi squarestar,
Thanks for using WPCasa! And sorry for the late response.
Pleaes provide a link if you have this test site online. Otherwise I recommend to check if you set up the listings page in the WPCasa settings:
http://docs.wpcasa.com/article/setting-up-wpcasa/
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Listing Single Page ProblemsHi xcaramel,
Thanks a lot for using WPCasa and your kind feedback! Also sorry for the late response!
On the single listing page the plugin uses the WordPress loop (filters: loop_start and loop_end) to overwrite the content template with the property information.
Seems that your theme does not use the loop properly. I recommend to contact the theme author and see if she or he can help.
Best regards,
Simon [WPCasa]You can install the following plugin to fix this bug: https://cloudup.com/cUDPupnSxaO
Dear users, this does only affect the old theme framework version of WPCasa. The plugin of this repository is not affected.
At the moment I am unable to reproduce the issue. Will keep investigating and post a fix or release an update.