harimay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor Blank, No Text EditorCan you please tell me you WordPress version you are using
I think you can try updating you WordPress to the latest version( 4.5.2 ) an it should work
Forum: Installing WordPress
In reply to: Installation issuesHey Clarion Technologies
Just try adding a simple index.html page an see is the same folder where you url is pointing.
I think you must try directly putting index.html file in
“/home/gnatyjou/public_html/” an first test it out.not in /home/gnatyjou/public_html/diranigroup.com
Have you directly change the file in the wp-includes/pluggable.php
if yes then please used the above method because once you update wordpress all the Hardcore changes you have made will get loss
first check out on the link I have mention change the “example.com” with you websites url
login
https://example.com/wp-admin/admin.php?page=wc-settings&tab=emailIn this page you will see
“Email Sender Options”You can change an it should work
If it not you can try the below filter an you work will be doneIt not related to woocommerce setting
All the email you are sending will get the same Sender name and sender Email address you can used this two filter to change that name an email respectivelyfunction harimay_wp_mail_from_name_callback( $email ){
return ‘Test’; // new email name from sender.
}
add_filter( ‘wp_mail_from_name’, ‘harimay_wp_mail_from_name_callback’, 10001 );function harimay_wp_mail_from_callback ($email ){
return ‘[email protected]’; // new email address from sender.
}
add_filter( ‘wp_mail_from’, ‘harimay_wp_mail_from_callback’, 10001 );Forum: Fixing WordPress
In reply to: Triggering Cron JobsI have the same Issue
I have search many blog but no of them was Soo help full
I finally used the Server Cron job
https://www.iceablethemes.com/optimize-wordpress-replace-wp_cron-real-cron-job/