Hi Im currently setting up my website using this theme. But somehow im encountered few problem as above, and need your assistance : 1. during trial registration process, the massage as below appeared at top homepage : Warning: mail(/var/log/phpmail.log): failed to open stream: Permission denied in /home/direktor/public_html/wp-content/themes/geocrafttheme-v2/library/listing-submit/class-listing-submit.php on line 449 Warning: mail(/var/log/phpmail.log): failed to open stream: Permission denied in /home/direktor/public_html/wp-content/themes/geocrafttheme-v2/library/listing-submit/class-listing-submit.php on line 456 these message appeared once i click 'publish' button after fill up all business details . 2. How do i remove map homepage? i wanna make homepage as light and smooth as possible. these pretty big map feels like a bit distraction. 3. How do i remove review tab, star rating, tags and select all category? 4. How do i remove total payment? . im deactived all payment option, as im intend to make all registration are Free Listing basis, and they need to contact me (email) if they want to list in their business as premium listing. But during trial registration process, im stumble upon with meassage as below located at bottom of the page. How to get rid these total payment message ?: Select Package Total price as per your selection. * $ 0 + $ 0 = $ 0 thank you
Thanks for contacting us, 1. You are requested to turn off the WordPress debug mode. For this, you will have to access you website via FTP or cPanel->File Manager and there you will find wp-config.php file under the root directory of your website. Just change the value from "true" to "false" as: define( 'WP_DEBUG', false ); 2. You can simply turn off the home page Map from the options panel. (Dashboard->Geocraft Settings->Theme Options->Google Map) just refer this screenshot: https://screenpresso.com/=UW4Xd 3. To disable the Review feature, you need to paste the below custom CSS code in the Additional CSS field located under Dashboard->Appearance->Customizer panel. Code: .tabbed .tabnav li:nth-child(2) { display: none; } To hide select all categories, you need to paste the below custom CSS code in the Additional CSS field located under Dashboard->Appearance->Customizer panel. Code: #add_place .select_cat li:nth-child(1) { display: none; } 4. The price package details can be hidden from source code, we can do it for you. Kindly, share your WordPress admin credentials at [email protected] along with this thread URL: WordPress site login URL: WordPress admin username: WordPress admin password: We will check and do the needful. Warm Regards! Naveen Kolhe InkThemes.com
Hi Kindly to be inform that the problem related with no.1 as above, still yet to be solved. Pls refer to the attachment. thank you
Hi, Greetings from InkThemes, I have already replied you in this regard on your other email. Please check your e-mail and let me know. Thanks & Regards! Akbar InkThemes.com
Hi Mr Akbar I've read the email, but looks like the error message still exists. so I've sent you latest email few hours agi, which attach together with 6 screenshot, so you might understand how and where these error message are located. looking forward your response thru email. Thank you
Hello Iqbal, We tried to publish a listing and got the following warning at the time of checkout: Warning: mail(/var/log/phpmail.log): failed to open stream: Permission denied in /home/direktor/public_html/wp-content/themes/geocrafttheme-v2/library/listing-submit/class-listing-submit.php on line 449 Warning: mail(/var/log/phpmail.log): failed to open stream: Permission denied in /home/direktor/public_html/wp-content/themes/geocrafttheme-v2/library/listing-submit/class-listing-submit.php on line 456 SOLUTION1: The problem is that the web server user is not able to write and/or read the mail log file. For a proper configuration: 1) create the folder and the file for the email logging. For example: touch /var/log/php5/mail.log 2) set the logging file in php.ini: mail.log = /var/log/php5/mail.log 3) set the owner and the group for that folder/file in case needed: check the owner and the group with ls -la /var/log/php5 in case needed, change the group (change www-data for whatever your web server's group is) sudo chgrp -R www-data /var/log/php5 in case needed, change the owner (change www-data for whatever your web server's user is) sudo chown -R www-data /var/log/php5 SOLUTION2: You should have a mail.log entry in your php.ini file which should log all the mail() function calls. Search for it and if you don't have this line, then it's taking some strange default or previously defined value, so you better define it and point it to the file you have created in your PHP folder and hopefully assigned good permissions to. For more check what phpinfo() is saying about mail.log. For more info: mail configuration. You are requested to contact your host provider and ask them to do the above-required steps for PHP mail() settings. There is nothing related to our theme. I hope you understand, Regards! Naveen Kolhe InkThemes.com