Comments 2Matthew S Brown started the conversationSeptember 7, 2020 at 3:37pmWhen creating an event from the front, How can I get the button to generate coordinates for the weather like I have in the back end submission 877Zhivko repliedSeptember 8, 2020 at 12:05pmHi,There's no such button for the front-end at the moment.I'll add one for the next update. Stachethemes Developer 2Matthew S Brown repliedSeptember 8, 2020 at 12:47pmWould it be possible to make it do this automatically?The easier it is for the user, the better the plugin will be. 877Zhivko repliedSeptember 9, 2020 at 11:50amWe'll leave it with a button next to the coordinates field for now since the geocoder is unable to find proper coordinates for the location sometimes. Stachethemes Developer 2Matthew S Brown repliedSeptember 9, 2020 at 4:11pmI am having a very difficultr time with the Front End Form.The styling is terrible and looks nothing like the Form created when using the shortcode [stec_submit_form]Here is the link to my Front End with the [stec_submit_form] form on top and my builder form below.https://www.recalltonyevers.org/?stec_esf=signing-event-formWhy is the styling not working? 877Zhivko repliedSeptember 9, 2020 at 5:11pmDon't use the stec_esf custom post types for directly displaying the form. They are used to store the form data only.Create normal page and place the shortcode there. Stachethemes Developer 2Matthew S Brown repliedSeptember 9, 2020 at 6:37pmThanks..I have another request/question.How do I change the default marker to a pin and not the big square? 877Zhivko repliedSeptember 10, 2020 at 3:45pmOpen your theme or child-theme functions.php file and add following filter: // STEC MOD: Set google maps marker to pinadd_action('wp_footer', function() { global $post; if (!is_a($post, 'WP_Post') || !has_shortcode($post->post_content, 'stachethemes_ec')) { return; } ?> <script type="text/javascript"> (function ($) { $(function () { if (typeof $.stecExtend === 'undefined') { return; } $.stecExtend(function (m) { m.$instance.on('stecMapMarkerIcon', function (e, data) { data.temp.stecMapMarkerIcon = ''; }); }); }); })(window.jQuery); </script> <?php}); Stachethemes Developer Sign in to reply ...
When creating an event from the front, How can I get the button to generate coordinates for the weather like I have in the back end submission
Hi,
There's no such button for the front-end at the moment.
I'll add one for the next update.
Stachethemes Developer
Would it be possible to make it do this automatically?
The easier it is for the user, the better the plugin will be.
We'll leave it with a button next to the coordinates field for now since the geocoder is unable to find proper coordinates for the location sometimes.
Stachethemes Developer
I am having a very difficultr time with the Front End Form.
The styling is terrible and looks nothing like the Form created when using the shortcode [stec_submit_form]
Here is the link to my Front End with the [stec_submit_form] form on top and my builder form below.
https://www.recalltonyevers.org/?stec_esf=signing-event-form
Why is the styling not working?
Don't use the stec_esf custom post types for directly displaying the form. They are used to store the form data only.
Create normal page and place the shortcode there.
Stachethemes Developer
Thanks..
I have another request/question.
How do I change the default marker to a pin and not the big square?
Open your theme or child-theme functions.php file and add following filter:
Stachethemes Developer