Kiran
Forum Replies Created
-
AuthorPosts
-
September 25, 2017 at 1:56 pm in reply to: Function and Script Which Handles Input from Form Submit #397246
Hi Nithi,
If you are talking about the WordPress standard search function(s) then you have to go through WordPress developer documentation https://developer.wordpress.com/docs/.
If you are talking about GeoDirectory front end search then the function that handling search actions is: https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory_template_tags.php#L581
Kiran
Hi,
As far as the main image in the place listing can we change that at all or does the listing always have to have one large image?
Main image(featured image) is used within entire site for that listing. Rest of images are used in image gallery or slide show for that listing. So you can upload main image that fit to your template design.
Sometimes it is blurry – what is the best size for that image if it has to stay there and we must use it?
This depends on your template design, but recommended size for the image is 780×330.
Also, any way to add a video section in the front of the homepage or listings page since we had videos there before and customers paying for that spot?
You can create Videos category and add listings under this category. Via widget you can displays this video listings at front end. Is this same that you talking about?
If the directory is only for CT or NY what should the map settings be then?
Go to GeoDirectory > Multilocations > Enable selected regions settings and select CT & NY from the list and save.
Kiran
Thanks for letting us know 🙂
This reply has been marked as private.Hi JC,
I successfully imported listings from CSV that you attached.
I have first converted file encoding to UTF-8 and it worked for me.
I have done following steps:
1) Opened CSV file and chosen encoding “Western Europe(ISO-8859-1)” because it shows correct characters (see 20170925-396921-1.png)
2) Copied all data
3) Open new CSV file with encoding UTF-8
4) Paste all data into new CSV
5) Save (in case if it asks encoding choose UTF-8 during save)Now it shows correct characters with UTF-8 encoding.(see 20170925-396921-2.png)
I have attached modified file, it worked for me.Let us know.
Thanks,
KiranHi Eric,
Sorry to say that we not able to help to delete data of plugin “cm directory”. You should contact author of plugin “cm directory” because they knows where they are making entries in database and how to remove plugin data completely.
Please contact the author of the plugin and ask for the support to remove plugin data completely.
Let us know.
Thanks,
KiranThis reply has been marked as private.Thanks for letting us know 🙂
This reply has been marked as private.Hi Joy,
There is https:// & http:// url redirection problem, and it looses the post data on submit the forms.
You have written code in .htaccess fot https:// redirection. But you have set site url with http:// at Backend Settings > General > WordPress Address (URL) & Site Address (URL).Correct this urls by setting https:// it will solve your problem.
Thanks,
KiranHi There,
Sorry, currently claim listing process not available via API, but we have in our to-do list already. We will include it in API in future, but not able to say timeline because we have some other important stuffs to finish first.
Kiran
This is not standard way to add style for the email content. Email content should have inline tag style. Fox ex:
<a style="#de0540" href="...Thanks,
KiranHi Atilla,
In which emails you want to add a signature logo to the bottom. For particular inquiry email OR all emails sent within GD or all WP emails?
BTW there are many free plugins available that customizes the emails templates.
Kiran
Hi Andrew,
If Google MAP API not finds the address searched then Get Directions raises this type of error. This is not an issue. Try to find any valid nearest address from listing address and check it is working or not.
I checked in your backend and you have not assigned Google MAP API Key under GeoDirectory > Design > Map, enter Google MAP API Key here other Google map functionally will not work.
Kiran
Hi Atilla,
Use following code snippet to filter those line of message. Use can use any snippet plugin to execute this snippet code.
function _gd_custom_inquiry_email_msg( $message ) { $request = stripslashes_deep( $_REQUEST ); $comments = $request['inq_msg']; $from = $request['inq_name']; $phone = $request['inq_phone']; $email = $request['inq_email']; $sent_from = trailingslashit( home_url() ); $blogname = get_option( 'blogname' ); /* // Original $message = $comments . '<br>'; $message .= __( 'From :', 'geodirectory' ) . ' ' . $from . '<br>'; $message .= __( 'Phone :', 'geodirectory' ) . ' ' . $phone . '<br>'; $message .= __( 'Email :', 'geodirectory' ) . ' ' . $email . '<br><br>'; $message .= __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . $sent_from . '">' . $blogname . '</a></b>.'; */ // Modified $message = '<p>' . $comments . '</p>'; $message .= '<p>' . __( 'From :', 'geodirectory' ) . ' ' . $from . '</p>'; $message .= '<p>' . __( 'Phone :', 'geodirectory' ) . ' ' . $phone . '</p>'; $message .= '<p>' . __( 'Email :', 'geodirectory' ) . ' ' . $email . '</p>'; $message .= '<p></p><p>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . $sent_from . '">' . $blogname . '</a></b>.</p>'; return $message; } add_filter( 'geodir_inquiry_email_msg', '_gd_custom_inquiry_email_msg', 10, 1 );Kiran
-
AuthorPosts