Matt Williams - Placester Developer Evangelist
Forum Replies Created
-
Forum: Plugins
In reply to: [Real Estate Website Builder] Spanish TranslationSee these pages for more about using our shortcodes:
https://placester.com/developers/placester-shortcode-overview/
https://placester.com/developers/placester-shortcode-use-cases/Forum: Plugins
In reply to: [Real Estate Website Builder] Warning with Theme ManchesterHi,
When upgrading the plugin please also upgrade the theme. To do so download the theme from the theme gallery under the Placester plugin. Then the error will go away.
Forum: Plugins
In reply to: Placester Register formHi Fahmi,
Sorry for the delay. As the plugin is currently built there isn’t an easy way to add to the fields being sent to FollowupBoss. After someone fills in the lead capture form, we pass that info to the ‘events’ endpoint. We are only doing this for leads. At some point in the future we would like to extend this to additional forms and events.
What do you mean when you say FollowupBoss needs these fields?
Forum: Plugins
In reply to: [Real Estate Website Builder] Spanish TranslationHi,
Sorry, didn’t notice your second response here. We don’t have language files for the plugin. As mentioned on another thread, you can use shortcodes to list your listings and use any text you like in the outputted HTML.
Forum: Plugins
In reply to: [Real Estate Website Builder] Spanish TranslationWe don’t offer a Spanish translation for the plugin, either on the front end or on the admin.
I just had to install the addon from the ACF developer for the Options Page. Then everything is resolved. This was a solution that a customer came up with and it has worked for everyone I have worked with on it.
What problem are you having?
Forum: Plugins
In reply to: [Real Estate Website Builder] multi languageIf you have a question, its best to create a new support thread since this one was resolved.
Forum: Plugins
In reply to: [Real Estate Website Builder] Custom post type featured image.Hi Justin,
Refer back to the docs for Royal Slider (http://dimsemenov.com/plugins/royal-slider/documentation/). Looks like you need to enclose caption text in a div or maybe the image alt tag. But just look at the content of $listing. I find the print_r() function useful for this type of thing.
There is also an updated_at field. It is a Unix time string so you will need to convert it before outputting it to the screen.
Forum: Plugins
In reply to: [Real Estate Website Builder] Custom post type featured image.Justin,
Great to hear that it works. Try printing out just that $listing object. You will see the full listing data. You should be able to use something like $listing[location][address]. Not sure what the field is called for date…but hopefully it will be pretty obvious.
Forum: Reviews
In reply to: [Real Estate Website Builder] Once Per 24 Hour UpdatesHi William,
I am sorry you experienced this. Unfortunately this is a bit of miscommunication on our part. We have no plans at this time to stop supporting the plugin here on WordPress or through our standard support process. You can continue to ask questions about the themes as well as the plugin here in the WordPress.org forum or via support@placester.com
That said, your best experience has for a long time been to use one of the many thousands of great themes available here on WordPress.org, then use our plugin along with its shortcode functionality to achieve what you are looking for.
Again, to be clear, as of today I have heard of no plans whatsoever to stop supporting the plugin or themes here. Sorry you someone told you different.
Matt Williams
Placester Developer EvangelistI have contacted the theme developers to try to get a copy of Circles to try to troubleshoot what’s going on. Could you contact us on support@placester.com. Then I can ask a few questions that aren’t possible on this forum.
Also, what other plugins are being used? Are you using Advanced Custom Fields? Due to a strange conflict, Advanced Custom Fields requires that you use the Options Page addon as well.
Hi,
So sorry to hear you are having a problem with the plugin. PLS_FUNCTIONS_DIR is defined in blueprint early on. The fact that this error message shows that the file cannot be found in PLS_FUNCTIONS_DIR rather than in the actual directory the plugin is in tells me that there is a problem with how the define() function is declared. define() has been part of PHP for a very long time, but it is possible that you have a very old version of PHP. What version are you using? Also, what hosting provider are you using?
Forum: Plugins
In reply to: [Real Estate Website Builder] Custom post type featured image.Hi Just, this should be the final post on this topic. I got an email from the developer today who gave me access to the slider to try out. The code I provided works perfectly. I have tweaked it a bit further and included a full PHP page in a gist here:
https://gist.github.com/technovangelist/9117720I’ll be making this into a blog post soon as well. Let us know if you run into any other issues.
Forum: Plugins
In reply to: [Real Estate Website Builder] Custom post type featured image.Hi Justin,
I looked at the RoyalSlider documentation here: http://dimsemenov.com/plugins/royal-slider/documentation/ There is a section called Images that suggests you can create a div filled with images like this:
<div class=”royalSlider rsDefault”>
<!– simple image –>
<img class=”rsImg” src=”path-to-image.jpg” alt=”image description” />
</div>To fill up a div like this with the first image from each listing, you can do something like this:
<div class=’royalSlider rsDefault’>
<?php
$listings = PL_Listing::get();
foreach ($listings[listings] as $listing) {
echo “<img class=’rsImg’ src='” . $listing[images][0][url] . “‘/>”;
}
?>
</div>be careful about the nested single and double quotes on that line…
Now since I don’t yet have access to the plugin, I cannot verify this, but based on the docs, this should work.