Nov 30, 2020 11:20 am
Hi wpForo support,
I want to remove the ability for users to browse posts with the Short URL (e.g. https://wpforo.com/community/postid/44903/).
In other words, I want them only to be able to use the Full URL (e.g. https://wpforo.com/community/wpforo-announcements/wpforo-1-8-3-is-released/#post-44903).
Also pic attached.
How can I go about it?
3 Replies
Nov 30, 2020 12:51 pm
Hi @fawp,
Please use the following CSS code:
.wpforo-copy-url-wrap:last-child {
display: none !important;
}
#wpforo-dialog{
height: calc(100vh - 50%) !important;
}
The CSS code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS Code" textarea.
Don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.