WPSight
Forum Replies Created
-
Hey Jose,
Yes, we definitely need to improve our documentation here to make sure developers like you find what they need without digging through the code.
Would love to see your add-on.
Un saludo,
Simon [WPCasa]Hi redstormj,
Thanks a lot for your interest in WPCasa and for your kind words! Your detailed feedback is much appreciated.
As you already mentioned the gallery feature is currently part of our paid themes as an image gallery, in my opinion, in general is more theme territory than basic functionality.
But still, I also agree with you that we need a basic gallery in the core plugin as many users stumble upon that. We usually recommend a third party gallery plugin (e.g. Foo Gallery). But maybe that’s too bloated too and does not make use of our own custom meta boxes.
Again, thanks for your feedback! We are currently a bit backed up with theme creation and plugin updates. But as soon as we can we will work out a solution.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] WPCasa and StudiopressHi linzinz,
Thanks a lot for your interest in WPCasa!
Yes, WPCasa should work fine with StudioPress themes. You might have to add some custom CSS styles to better match the theme style. But basically this will work out of the box.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] fatal errorHi ste70,
Thanks a lot for your interest in WPCasa!
Seems your PHP version is not up to date. The DIR (added in PHP 5.3) might not be supported.
http://php.net/manual/en/language.constants.predefined.php#language.constants.predefined.changelog
If this is your case, you should ask your hosting provider to update the PHP version as version 5.2 has not been supported officially for 5 years now https://secure.php.net/eol.php.
Best regards,
Simon [WPCasa]We’ve posted our answer on the issue you filed on Github.
Hi sebas7,
Thanks a lot for using WPCasa!
Please go to WP-Admin > WPCasa > Settings > [tab] Listings and change the details to your needs. Also see our docs.
If you changed to German, you can also reset the WPCasa settings in order to insert the German default details.
Viele GrΓΌΓe,
Simon [WPCasa]Get one of our themes and you won’t need to mess around with PHP π
Hi Christi,
It’s the
?listings=1that tells WPCasa that we are on a listing agent archive page.The only thing that would make it better would be if it didn’t break the author archive if WPCasa is disabled.
Yeah well, if you use the function, it would make sense to use WPCasa too π If you want to avoid any errors, however, check out the PHP function
function_exists()to go the safe way.Cheers,
Simon [WPCasa]Hi Christi,
You will need to make an extra if construct under the is_author() condition:
elseif ( is_author() ) : if ( ! wpsight_is_listing_agent_archive() ) { printf( __( 'Author: %s', 'yourweblayout' ), '<span class="vcard">' . get_the_author() . '</span>' ); } else { printf( __( 'Agent: %s', 'yourweblayout' ), '<span class="vcard">' . get_the_author() . '</span>' ); } elseif ( is_day() ) : printf( __( 'Day: %s', 'yourweblayout' ), '<span>' . get_the_date() . '</span>' );Or place the agent condition before the author condition to make sure the code first checks if you’re on a listing archive or not.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Listing Types and Features Not workingHi tinyCoder,
This is WordPress-related and not managed through WPCasa. I think you won’t see empty taxonomy terms there. Please try to create the terms right in the listing editor when you create a property.
By default also the listings search only displays terms in the form that have a least one listing.
Hope this helps.
Best regards,
Simon [WPCasa]Hi Christi,
You can use the function
wpsight_is_listing_agent_archive()to check if the author template shows listings or posts.For example:
<?php if( wpsight_is_listing_agent_archive() ) : ?> <p>Show text for listings</p> <?php else : ?> <p>Show text for posts</p> <?php endif; ?>Hope this helps.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Single Listing LayoutHi Daniela,
Thanks for using WPCasa!
This is related to the theme you are using. From the front end I cannot see what the exact problem is. You will probably have to adapt some of the templates. You can find more infos about using WPCasa templates in our documentation.
Best regards,
Simon [WPCasa]PS: For the future… please open your own thread in the forum. Thank you!
Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Single Listing LayoutHi zekule,
Thank you for using WPCasa!
This is related to your theme. WPCasa does not have any effect on that.
I recommend to check the basic HTML structure. On the single listing page the
aside#sidebaris outside of thediv#main-contentwhile on the archive page the sidebar is inside that div.Hope this helps.
Merry Christmas,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa - Real Estate for WordPress] Metaboxes Listing Images do not appearHi Claudio,
Thanks for using WPCasa!
The listing images meta box is a feature of our paid themes (e.g. Elviria). But you can also use any WordPress gallery plugin to manage your listing images (e.g. Foo Gallery).
Best regards,
Simon [WPCasa]Hi Ramon,
Thank you for your message!
Honestly I’m not sure if you can use WPCasa for bus routes as I don’t know how the search criteria (apart from origin – destination) would be.
Just install the plugin and try it our yourself. You can change the listing details on the settings page (see docs).
And you would need to adapt the search fields using the WordPress filter hook
wpsight_get_search_fields. See function WPSight_Search::get_search_fields().I’m afraid without some customization the bus routes search is not possible.
Best regards,
Simon [WPCasa]