WPSight
Forum Replies Created
-
Forum: Reviews
In reply to: [WPCasa] The Best RE Solution for WPHey Will-007,
Thank you very much for your feedback and your rating!
We are working hard to offer a greater variety of add-ons and themes. And we are improving the knowledge base on a daily basis.
Best regards,
Simon [WPCasa]Forum: Reviews
In reply to: [WPCasa] Good solutionHi alessica,
Thanks a lot for your feedback!
Can you give some examples? Which options are missing in your opinion? Maybe we can help or even include them in a future version.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Polylang: Search form options not able to be translatedHi tinyCoder,
Thanks for using WPCasa and your kind feedback!
These strings are part of the WPCasa core and need to be translated through the plugin translation files. WPCasa comes in English, Spanish, Brazilian Portuguese and German. If you want to display another language, you will need to add a translation for these terms.
You can use the free plugin Loco Translate for example.
Hope this help you solve your situation.
Best regards,
Simon [WPCasa]Forum: Reviews
In reply to: [WPCasa] Very good pluginHi tashialoku,
Thank you so much for your kind words! Many themes and great add-ons are yet to come ??
Best regards,
Simon [WPCasa]Forum: Reviews
In reply to: [WPCasa] Simple yet powerfulHi realx,
Thank you very much for your review!
We are working hard on coming up with new themes. We’ve just release a pretty complex theme called WPCasa London. The functionality of the upcoming themes will be similar with different designs.
But we probably cannot keep up the pace with big players like WooThemes ??
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa Advanced Search] Wpcasa advanced searchHi cosmozara,
Please have a look at the following snippets:
* https://docs.wpcasa.com/article/snippet-change-default-search-form-labels/
* https://docs.wpcasa.com/article/snippet-change-advanced-search-form-labels/And in general about adding code snippets:
* https://docs.wpcasa.com/article/using-code-snippets/
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa Advanced Search] How to add [shortcode] on template indexAh ok, you wanted to add it to the template file directly. Sorry, I got this wrong. Instead of calling the shortcode you can also use the function:
<?php wpsight_search(); ?>
Forum: Plugins
In reply to: [WPCasa Advanced Search] How to add [shortcode] on template indexHi Anderor,
Thanks a lot for using WPCasa!
You can find information about activating the shortcode in our documentation: https://docs.wpcasa.com/article/shortcode-wpsight_listings_search/
I tried to access your page but it seems that the link is not active anymore.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Single layoutHi cosmozara,
Hard to say what the problem is. You may also want to contact with the theme author. What we do in WPCasa to display the single listing content is hooking into
loop_start
andloop_end
to implement the single listing template of WPCasa there.You would need to look one level higher than content.php. The corresponding file is probably single.php (depends on your theme).
<?php while ( have_posts() ) : the_post(); ?> <!-- WPCasa places single lisiting template here --> <?php endwhile; // end of the loop. ?>
Hope this helps.
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Offer arrayThanks a lot for your feedback @cosmozara! You would help us leaving a review ??
Forum: Plugins
In reply to: [WPCasa] Offer arrayHi cosmozara,
Have a look at the following snippet that we use to add a Foreclosure listing offer: https://docs.wpsight.com/article/snippet-add-custom-listing-offer/
These are the offer badges. But if you want to add different labels (like reduced, hot etc.), please have a look at our Listing Labels add-on https://wpcasa.com/downloads/wpcasa-listing-labels/
Best regards,
Simon [WPCasa]Forum: Plugins
In reply to: [WPCasa] Changing price positionHi cosmozara,
If you want to display the price next to the title on single listing pages, you would need to apply a filter (also see Using Code Snippets):
/** * Display price next to listing title */ add_filter( 'wpsight_get_listing_title', 'wpsight_listing_title_price', 10, 3 ); function wpsight_listing_title_price( $output, $post_id, $actions ) { // Use global post ID if not defined if ( ! $post_id ) $post_id = get_the_ID(); ob_start(); ?> <div class="wpsight-listing-title clearfix"> <h1 class="entry-title"> <?php echo get_the_title( $post_id ); ?> <?php wpsight_listing_price( $listing->ID, '(', ')' ); ?> </h1> <?php wpsight_listing_actions( $post_id, $actions ); ?> </div><?php return ob_get_clean(); }
Then add some custom CSS (e.g. using Simple Custom CSS) to show the price inline:
.entry-title .wpsight-listing-price { display: inline; font-size: 14px; font-weight: normal; } .entry-title .wpsight-listing-price .listing-price-symbol, .entry-title .wpsight-listing-price .listing-price-value { font-size: inherit }
To show the title on listing archive pages you can edit the template file listing-archive-title.php:
<div class="wpsight-listing-section wpsight-listing-section-title"> <?php do_action( 'wpsight_listing_archive_title_before' ); ?> <div class="wpsight-listing-title"> <?php the_title( sprintf( '<h2 class="entry-title">', esc_url( get_permalink() ) ), ' ' . wpsight_get_listing_price( $listing->ID, '(', ')' ) . '</h2>' ); ?> </div> <?php do_action( 'wpsight_listing_archive_title_after' ); ?> </div><!-- .wpsight-listing-section-title -->
Also have a look at Using Templates to see how you can replace a WPCasa template using your theme.
Hope this helps.
Best regards,
Simon [WPCasa]Forum: Reviews
In reply to: [WPCasa] Good multilangual (german) pluginThanks so much for your feedback @ ATh42!
Forum: Reviews
In reply to: [WPCasa] Perfect for Small and Mid-Size AgenciesThanks a lot for your feedback @cyrusrex! That’s exactly what we are aiming at. In the future we will also try to improve WPCasa for bigger agencies by adding better work flows for agents and connecting to more services (CRM, MLS, portals etc.).
Forum: Plugins
In reply to: [WPCasa] Favorites on Home pageHi Julien,
As I can see on your website you already found the solution and marked this thread as resolved. However, I will post the answer for people how might have the same question.
Your are not only using the WPCasa core plugin but also a paid theme of ours that comes with the option to use widgets to build the single listing page.
The save button is part of the title widget that includes the so-called title actions. When you install the favorites add-on after you activated the title widget, you will have to manually activate the save button in the widget settings.
Best regards,
Simon [WPCasa]