WPSight
Forum Replies Created
-
Forum: Reviews
In reply to: [WPCasa] Perfect as the old oneThanks a lot for your feedback and of course the rating!
We are developing more themes right now. The first new one will be released next month… and after that one theme releases in general will be more periodical. Our theme collection is definitely too short right now.
Forum: Plugins
In reply to: [WPCasa] translatedHi pcnemocnica,
Ah ok, now I understand. Please go to WP-Admin > WPCasa > Settings > [tab] Listings and activate the Listing Features checkbox. There you can translate the labels directly or also reset the settings once to make sure the labels refresh.
Also have a look at our documentation about changing standard listing features.
Kind regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] translatedHi pcnemocnica,
If you have a new translation, you can place the .po and .mo (this is the more important one) language files in the
/languages
folder of WPCasa.Then you can change the language in the general WordPress settings on WP-Admin > Settings > General.
Hope this helps.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa Ninja Forms] EL pluguin wp ninja forms necesita actualizacionBuenas tardes alejolora,
Cual es el problema exactamente? En principio funciona todo bien en WordPress 4.5.
Quizás se refiere a la nueva versión 3.0 de Ninja Forms. Nuestro plugin puente aún no está compatible… solo hasta la versión 2.9.
Un saludo,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Post Type name changeable?The given code was indeed just for the labels. If you want to change the slug, you need to apply another filter:
/** * Custom listing slug */ add_filter( 'wpsight_rewrite_listings_slug', 'my_rewrite_listings_slug' ); function my_rewrite_listings_slug( $slug ) { $slug = 'propiedades'; return $slug; }
After adding this code you will have to save your permalinks on WP-Admin > Settings > Permalinks to update the rewrite rules.
Regarding the labels… if you just want to translate, I recommend to work with plugin translations. Spanish is included. We use the term anuncio but you can easily change that to your needs using Loco Translate in your WordPress admin or Poedit as a desktop tool.
Hope this helps.
Forum: Plugins
In reply to: [WPCasa] Post Type name changeable?Hi redstormj,
You can find the corresponding code here: https://github.com/wpsight/wpcasa/blob/master/wpcasa/includes/class-wpsight-post-types.php#L266
With the following code you could change the labels to your needs:
/** * Change listing post type labels */ add_filter( 'wpsight_post_type_labels_listing', 'my_post_type_labels_listing' ); function my_post_type_labels_listing( $labels ) { // Set post type labels $labels = array( 'name' => _x( 'Listings', 'listing', 'wpcasa' ), 'singular_name' => _x( 'Listing', 'listing', 'wpcasa' ), 'add_new' => _x( 'Add New', 'listing', 'wpcasa' ), 'add_new_item' => _x( 'Add New Listing', 'listing', 'wpcasa' ), 'edit_item' => _x( 'Edit Listing', 'listing', 'wpcasa' ), 'new_item' => _x( 'New Listing', 'listing', 'wpcasa' ), 'view_item' => _x( 'View Listing', 'listing', 'wpcasa' ), 'search_items' => _x( 'Search Listings', 'listing', 'wpcasa' ), 'not_found' => _x( 'No listings found', 'listing', 'wpcasa' ), 'not_found_in_trash' => _x( 'No listings found in Trash', 'listing', 'wpcasa' ), 'menu_name' => _x( 'Listings', 'listing', 'wpcasa' ), ); return $labels; }
Best regards,
Simon [WPCasa]Forum: Reviews
In reply to: [WPCasa] Reviewing your own plugin??@franktcmarketing WPCasa IS a starting point plugin and as @redstormj correctly points out that’s exactly what many users appreciate.
But leaving a one star review on a FREE product depreciating the hard work of others and even call it scam is something that makes me sad in this WordPress world.
Also, where exactly did I review my own plugin? I’m the owner. Joe (who left the review) works with me but is definitely a user too. But you probably know better as you are able to judge personalities behind plugins in your own world… and that’s ok.
@redstormj Thanks a lot for chiming in and defending the idea behind free WordPress plugins.
Forum: Reviews
In reply to: [upTown] Highly Preferred. Well Designed.Can't Change Metric to Feet.Hi Sam,
Please check the WPCasa settings. The real estate functionality is actually not part of the theme but of the WPCasa core plugin.
You can find more information in our documentation.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Loving the plugin, simple gallery question thoHey 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]Forum: Plugins
In reply to: [WPCasa] Loving the plugin, simple gallery question thoHi 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] 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] 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.
https://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]Forum: Plugins
In reply to: [WPCasa] Insufficient Admin Permissions on ActivateWe’ve posted our answer on the issue you filed on Github.
Forum: Plugins
In reply to: [WPCasa] Details of the listings are not translatedHi 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]Forum: Plugins
In reply to: [WPCasa] Author text before agent name on agent listing pageGet one of our themes and you won’t need to mess around with PHP ??