Where are the uploads stored when creating new topic?
Quote from goldstrikn on December 3, 2017, 6:39 pmHi,
This is by far the best wp forum plugin available for wordpress.
I have a question. Where are the uploads stored when placing a new topic? such as images, files, etc?
Also, since it is topic related, how can I change the wording for a non logged in person the following alert
“You need to login to have access to uploads.”
I want to change the wording for it. Is there a way to do that on my theme rather than your plugin? Ideally, it will be good to have this field (to change) in your plugins settings.
Please advise.
Thanks.
Hi,
This is by far the best wp forum plugin available for wordpress.
I have a question. Where are the uploads stored when placing a new topic? such as images, files, etc?
Also, since it is topic related, how can I change the wording for a non logged in person the following alert
“You need to login to have access to uploads.”
I want to change the wording for it. Is there a way to do that on my theme rather than your plugin? Ideally, it will be good to have this field (to change) in your plugins settings.
Please advise.
Thanks.
Quote from Asgaros on December 3, 2017, 6:45 pmHello goldstrikn,
the uploads for a post area saved in the following folder:
wp-content\uploads\asgarosforum\ID-OF-FORUM-POST\my-file.jpg
You can change the translation by adding the following code to your themes functions.php file:
add_filter('gettext', 'change_translations', 20, 3); function change_translations($translated_text, $untranslated_text, $domain) { if ($domain === 'asgaros-forum') { switch ($translated_text) { case 'You need to login to have access to uploads.': $translated_text = 'Your new text.'; break; } } return $translated_text; }
Hello goldstrikn,
the uploads for a post area saved in the following folder:
wp-content\uploads\asgarosforum\ID-OF-FORUM-POST\my-file.jpg
You can change the translation by adding the following code to your themes functions.php file:
add_filter('gettext', 'change_translations', 20, 3); function change_translations($translated_text, $untranslated_text, $domain) { if ($domain === 'asgaros-forum') { switch ($translated_text) { case 'You need to login to have access to uploads.': $translated_text = 'Your new text.'; break; } } return $translated_text; }
Quote from goldstrikn on December 3, 2017, 7:22 pmThanks for the quick reply. By the way, I didn’t get alerted of your reply by email. I just happen to view again this topic and notice your answer. You may want to check that.
Thanks for the quick reply. By the way, I didn’t get alerted of your reply by email. I just happen to view again this topic and notice your answer. You may want to check that.
Quote from Asgaros on December 3, 2017, 7:34 pmHave you subscribed to this topic via the link at the lower-left area?
Have you subscribed to this topic via the link at the lower-left area?
Quote from goldstrikn on December 3, 2017, 9:22 pmahh, that was the situation. I didn’t subscribe to it. Thanks for pointing that out.
ahh, that was the situation. I didn’t subscribe to it. Thanks for pointing that out.