Kiran
Forum Replies Created
-
AuthorPosts
-
Thank you for letting us know 🙂
Hi,
Please check now, it seems problem has been fixed. I have added gd_sport CPT and added one listing to it as well. Not sure what was the problem.
Try to create new CPT to check if it working or not.Let us know.
Kiran
Hi Jennie,
Which details are this for? For FTP or Database or CPanel? Please also post url to login.
Kiran
Thanks for quick response.
I successfully access your WordPress site backend by modifying my hosts file. I tested with creating a new CPT and seems it not creating table in database.
Let us provide FTP details and phpMyAdmin details to access database. We have to look into database structure.Thanks,
KiranHi,
I mentioned steps in my one of previous replies, that has done to fix this on staging site. But not sure why it not fixing the problem on live site if you have done same steps. 🙂
Please provide admin details of live, we have to look there to assist you more.Kiran
Hi Jennie,
It seems site url given is not WordPress site. We need details of your WordPress site that you facing problem.
If you have not live then please create a test/staging site and provide details to us. We need admin credentials and phpmyadmin/cpanel credentials of the site. Without checking on site we can’t able to assist you.FYI: please follow this if you have same problem https://wpgeodirectory.com/support/topic/problem-of-column-change-failed-you-may-have-too-many-columns/
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.June 9, 2017 at 4:00 am in reply to: Conversion seemed to work but front page shows no listings #382420Hi David,
I have tested by creating a test listing with photos and now photos uploading works fine there.
Kiran
Hi Vincent,
It seems you have added .mo file in wrong place. Make sure your translated file is in correct path as mentioned here: https://wpgeodirectory.com/docs/translating-addons/
It should be under /wp-content/languages/plugins/geodirevents-fr_FR.mo
If this still not work then let us provide FTP details to look into more.
Thanks,
KiranJune 8, 2017 at 10:10 am in reply to: Conversion seemed to work but front page shows no listings #382284Hi Marc,
I tried to allow_url_fopen = On via PHP code, phi.ini & .htaccess, but no success. So now you have to contact your hosting to allow_url_fopen = On.
Contact your hosting with following error details.
PHP Warning: getimagesize(): http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in
PHP Warning: getimagesize(http://www.mysite.com/wp-content/uploads/2017/06/temp_2/sample-picture-2.jpg): failed to open stream: no suitable wrapper could be found inLet us know.
Thanks,
KiranThanks for letting us know 🙂
Hi Clem,
Add following code snippet to your theme functions.php to display last modified on sidebar of the listing detail page.
// Show last updated on listing detail page function gd_custom_modified_date_on_listing_detail() { global $post; if ( !empty( $post->post_modified ) && $post->post_modified != '0000-00-00 00:00:00' ) { $date = date_i18n( get_option('date_format'), strtotime( $post->post_modified ) ); $time = date_i18n( get_option('time_format'), strtotime( $post->post_modified ) ); $date_time = $date . ' @ ' . $time; echo '<div class="geodir_more_info geodir-last-updated" style="clear:both;"><span class="geodir-i-time"><i class="fa fa-clock-o"></i>' . __( 'Last Updated:', 'geodirectory' ) . ' </span>' . $date_time . '</div>'; } } add_action( 'geodir_after_edit_post_link', 'gd_custom_modified_date_on_listing_detail', 20 );
Kiran
Hi,
To test it is working or not:
– Enable Stripe test mode.
– Create one test package with 3 days limit and with 3 days free trial period.
– Create one listing with this package and complete payment process.After successfull payment it will enable 3 days trial period and once trial period ends it will extends the expiry to 3 days for next period.
Kiran
Before displaying review, with the use of overall_rating value you can decide whether to display or not. Means if overall_rating is not null then it is review so display it and if overall_rating is null then it is response, so don’t display it.
To get reviews list this is the only endpoint so we need here both reviews & reply to be retrieved.
Kiran
-
AuthorPosts