We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had to make a little modification to your code since wordpress doesn't change his function wp_upload_dir() when ssl is activated.
In your gf-notification-attachment.php at line 79 I add this
if(is_ssl()){ wp_upload_dir['baseurl'] = str_replace("http://", "https://", $wp_upload_dir['baseurl']); }
before this line
$notification['attachments'][] = str_replace( $wp_upload_dir['baseurl'], $wp_upload_dir['basedir'], $attachment );
The text was updated successfully, but these errors were encountered:
Great idea - thank you for the tip - look for it in an upcoming release
Sorry, something went wrong.
No branches or pull requests
I had to make a little modification to your code since wordpress doesn't change his function wp_upload_dir() when ssl is activated.
In your gf-notification-attachment.php at line 79 I add this
before this line
The text was updated successfully, but these errors were encountered: