Community Answers
-
Nathan Explosion's post in What's a featured topic? was marked as the answer
Flags the topic so that you can then filter the 'Topic Feed' block based on 'Featured' topics, instead of pinning a topic (which will stick it at the top of the forum listing) and using that to filter on instead.
-
Nathan Explosion's post in Move the black notification banner that shows at the bottom of the forum? was marked as the answer
-
Nathan Explosion's post in How can one make an announcement widget like the one at the top of the sidebar here? was marked as the answer
Create an announcement via the modcp, and set the Page Location to sidebar
-
Nathan Explosion's post in After I hide a user's signature, how can I display it again? was marked as the answer
https://invisioncommunity.com/ignore/
-
Nathan Explosion's post in Apply Block Submission to whole Word Filter? was marked as the answer
(NE) Change all word filters to 'Block submission' 1.0.0.xml
-
Nathan Explosion's post in attachedAudio is throwing an error was marked as the answer
https://invisioncommunity.com/forums/topic/466649-access-to-uploaded-files-is-throwing-an-error/?do=findComment&comment=2888035
-
Nathan Explosion's post in 4.6.12 upgrade failed, forums down was marked as the answer
Use a different browser (Chrome)
-
Nathan Explosion's post in Tooltips in Nav icons using CSS was marked as the answer
It's going to be easier if you post links to your site so people can view the page source instead of just a screenshot. Why? Because you've customised the theme, therefore suggestions people can provide may not work as you may have changed the html.
Anyway - based on the assumption that you haven't modified the template, then edit core -> front -> global -> navBarItems
Find (there are 2 instances of this, and the ... is there to indicate that there is more code on the 2 lines you will find):
<a href="{{if $item->link()}}... Add the following after the opening "<a ":
title="{$item->title()}" to make:
<a title="{$item->title()}" href="{{if $item->link()}}... Save the template.
That's the basic title on hover.
If you want it a little different then add this too:
data-ipstooltip to make:
<a title="{$item->title()}" data-ipstooltip href="{{if $item->link()}}... Save the template.
Can you do this with CSS? Potentially, but as the 'title' is an attribute of an html element then it should be added in the html code, not using css.
-
Nathan Explosion's post in Google Analytics ID Issue was marked as the answer
Which is wrong - you need to follow the instructions under the box, and provide the FULL tracking code provided by Google, similar to my third image
-
Nathan Explosion's post in Create Status missing from Usermenu list was marked as the answer
Have you enabled status updates on your own profile, on the front-end?
-
Nathan Explosion's post in Importing Members from One Invision Power Site to Another was marked as the answer
-
Nathan Explosion's post in 21:9 Vimeo Embeds was marked as the answer
The extra space is being returned by Vimeo themselves - it's the height of the iframe which contains the embedded content. See the following:
https://vimeo.com/api/oembed.json?url=https://vimeo.com/35686630
The response is:
{ "type": "video", "version": "1.0", "provider_name": "Vimeo", "provider_url": "https:\/\/vimeo.com\/", "title": "Stv-Visuals 21:9 Free Loops", "author_name": "Stv-Visuals", "author_url": "https:\/\/vimeo.com\/stvvisuals", "is_plus": "0", "account_type": "basic", "html": "<iframe src=\"https:\/\/player.vimeo.com\/video\/35686630?h=cc53039083&app_id=122963\" width=\"480\" height=\"204\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen title=\"Stv-Visuals 21:9 Free Loops\"><\/iframe>", "width": 480, "height": 204, "duration": 25, "description": "http:\/\/www.facebook.com\/Stvvisuals\n\nLike our page and download the loops for free!\nStv-Visuals 21:9 Free Loops", "thumbnail_url": "https:\/\/i.vimeocdn.com\/video\/244200203-99a5d4e8b7ef0a064558ec3f14a32c252135e5d02fa8fd633f4ba11565bb125e-d_295x166", "thumbnail_width": 295, "thumbnail_height": 124, "thumbnail_url_with_play_button": "https:\/\/i.vimeocdn.com\/filter\/overlay?src0=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F244200203-99a5d4e8b7ef0a064558ec3f14a32c252135e5d02fa8fd633f4ba11565bb125e-d_295x166&src1=http%3A%2F%2Ff.vimeocdn.com%2Fp%2Fimages%2Fcrawler_play.png", "upload_date": "2012-01-26 07:36:40", "video_id": 35686630, "uri": "\/videos\/35686630" } The 204 height of the iframe is double the height of the actual video, so you get 51 pixels of space either side of the video within the iframe.
-
Nathan Explosion's post in How do I change my Page URL on my admin cp? was marked as the answer
Incorrect - the request is not how to change the name of the /admin/ directory.
Edit the page in the ACP, and change the 'page filename' value
-
Nathan Explosion's post in New word filter added - doesn't seem to apply to older posts was marked as the answer
It's not applied retrospectively - if you need it to be then edit the content and the filter will then be applied (assuming your group permissions are not set to bypass the filter)
-
Nathan Explosion's post in Registration errors was marked as the answer
Contact the developer of the 'Firewall' application you are using.
-
Nathan Explosion's post in Remove language was marked as the answer
It's locked because it is the default, so edit another language and make that one the default.
-
Nathan Explosion's post in Certain CKEditor plugins nuke the toolbar buttons was marked as the answer
The specific reason that causes an issue is because it itself has a dependency of the XML plugin being installed - so make sure you install that too (just tested, fixes the problem)
Also...make sure that the plugin you are installing is compatible with the version of ckeditor in use (IPS 4.6.8 uses CKEditor 4.16.2)
-
Nathan Explosion's post in Trying to find the user registration number was marked as the answer
Do you mean their ID in the database? If so, it's the numbers in the following:
https://invisioncommunity.com/profile/596365-bankfodder/
-
Nathan Explosion's post in Pages > Categories was marked as the answer
You have a warning that if you wish to disable categories then you will have to move the categorised items into one category.
It's not a warning that you can't use categories - it's a warning that because you are using them, then if you then choose to turn them off then you need to understand what you need to do.
-
Nathan Explosion's post in Is the default IPS CKeditor changing to Moona-Lisa was marked as the answer
<script> if(typeof CKEDITOR != 'undefined'){ CKEDITOR.config.uiColor='#444444'; } </script> It needs to be done this one as the "config" is generated on the fly by ips.ui.editor.js, and isn't actually stored in the filesystem - so editing config.js file in the ckeditor folder on the server isn't going to do anything.
-
Nathan Explosion's post in Changing Color on Profile % Progress Bar was marked as the answer
The bar's colour is controlled by this theme setting:
-
Nathan Explosion's post in Merging two IPS communities? was marked as the answer
Use the Converter to migrate one site to the other - see https://invisioncommunity.com/services/migrate/, scroll down to the 'Platforms' section and choose "Invision Community....." to see what can be migrated.