Jump to content

Nathan Explosion

Clients
  • Posts

    6,971
  • Joined

  • Days Won

    127

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Nathan Explosion

  1. Right click on the header or the footer, select 'Inspect element' and determine what the ID of the widget is. Then target it in CSS (you've been given loads of example previously) and do display:none
  2. Is it enabled? If so, disable it.
  3. Just to correct this statement..enabling that setting is NOT a must. Enable an app password on an account, and use that instead.
  4. Can't fully verify as I don't use Google Ads - but add an alert("TEST") inside the if statement and you'll verify that my surrounding test is fine: <script> var width = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0); if(width<=767){ document.write("<script data-ad-client=\"ca-pub-XXXXXXXXXXXXXXXXXXX\" async src=\"https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"><\/script>"); } </script>
  5. Because the CSS classes can't hide JavaScript code...CSS controls the display of html content. The JS code you have called is going to run regardless of what CSS you put around it. To hide it then you will need to use JS code to detect when/when not to load it.
  6. By "cURL installed and running", do you mean you have installed cURL on the server and also installed the PHP-CURL extension to allow PHP to use it?
  7. Your host thinks you want to change this at the server level, which is not what is required. All you have to do is modify your own database tables, not the server itself. So check if the tables can already be modified. Loads of information here:
  8. Doubt it, as I believe those are items that do not allow html. Use an emoji instead!!
  9. Do this instead - the Editor strips empty elements, which is what the <i></i> is...the non-breaking space sorts that for you. <i class="fa fa-bomb">&nbsp;</i>
  10. OK - that plugin doesn't provide this: as the above is already possible...fontawesome 4.7 is already included with IPS. The plugin just allows FontAwesome 5 to also be used. Your actual issue is probably that the places you are trying to use the code doesn't allow HTML to be used. Elaborate on what you mean by all this: Where are you using the code exactly?
  11. You asked a specific question, and got an answer to it. I said to ask them to assist you with switching it to an MP entry - it is the recommended action to be taken, and has been mentioned multiple times on this forum already in relation to this situation.
  12. Because you have it installed as a custom application...you cannot update via the MP in that case. 2 options.. 1) contact the developer, ask for the tar file to install the update 2) log a ticket with IPS to request assistance with associating your install with the MP entry.
  13. If 'Add-on' means part of the suite, then: If 'Add-on' means application or plugin from the Marketplace then you install from directly in the ACP.
  14. I've been looking at this recently... vm.tiktok will return a 301 redirect, which then points to.. m.tiktok, with more detail in the URL - this then returns a 302 redirect, which then points to... www.tiktok, with all the detail. If tiktok change vm. to do what m. does then everybody happy!!!
  15. Yep, some time soon - don't ask for more specific than that though, as I'm on holiday time 😄
  16. Considering that a large amount of the suite uses fontawesome for icons, you don't want to disable it and I won't provide assistance on doing so.
  17. Yeah, custom css isn't going to change that. The site loads up the fonts defined in the theme....the custom css just overrides the one used. TOTALLY UNTESTED OPTION - USE AT YOUR OWN RISK Edit the global -> global -> includeCSS template and remove the chunk of code at the top which relates to loading of fonts.
  18. The above should have changed ALL - " "body *" means all elements in the body, "!important" means override anything else set in other CSS. What hasn't changed?
  19. Click the 'Edit' option for your theme (the top arrow) and go to the "Text" tab of the options - you can change font from a pre-defined set of options, to see if any of those suit your needs. If you want to use something other than those then edit your theme's HTML & CSS (the bottom arrow), then add the following to your custom.css file: body *{ font-family: Helvetica; !important } Should do the job.
  20. Your language pack is missing a few things - are you using the default installed pack, or did you download one and install that?
×
×
  • Create New...