Jump to content

Nathan Explosion

Friends
  • Joined

Everything posted by Nathan Explosion

  1. It's your site URL plus /admin Guide on how to use is here...
  2. If your database has categories, you can make use of the following settings which are at the category level - "Set custom permissions" to ON, and "Users can see..." to OFF: And then provide that group of people access to add records in a new category - they can crack on with creating their own articles, you can then move them to a different category once ready to go.
  3. You still have this in your code - remove it. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> You also still have your JS loading set to "Just before the </body> tag" - change it to the setitng I mentioned.
  4. OK - I didn't mention anything about putting those items in the footer of the theme so that's your call. And you haven't modified the theme setting that I indicated you could change. And now you have this as your code <!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.js"></script> --> <script type="text/javascript"> jQuery.noConflict(); jQuery(document).ready(function() { jQuery('#example123').DataTable({ "bProcessing": true, "bServerSide": true, "sAjaxSource": "https://beta.marketingcheckpoint.com/admin/mailing/ajax_mail_history_dt10.php" }); }); </script> And this as your error: Why? You've commented out BOTH the jquery line and the datatables line, and you aren't loading the datatables JS at a later point. Plus you are using "jQuery" instead of "$" Use this code in the block, modify the theme setting I indicated, and then advise if it doesn't work: <script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#example').DataTable({ "bProcessing": true, "bServerSide": true, "sAjaxSource": "https://beta.marketingcheckpoint.com/admin/mailing/ajax_mail_history_dt10.php" }); }); </script>
  5. OK - first bit of advice...you don't need this as jQuery (v3.7.0) will be provided by Invision's software: <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> Secondly...in your screenshot, the error is $(...).DataTable but when I view the site, I see: $(...).dataTable is not a function The DataTable function is called "DataTable" so if you have do have it as "dataTable" in your code then correct that. Finally though, and most important...your code is BEFORE the code that loads up all of Invision's JS. That is possibly why you decided to include that first line of script to load jquery up. You can change that in your theme settings:
  6. It may be in the block, but is it loaded on the site? Provide a link to your page with the block on it.
  7. Not sure how you're stopped from doing the above, unless you're using your test installation to do your development instead of a localhost installation?
  8. Nathan Explosion replied to WebCMS's post in a topic in General Questions
    https://www.ynwa.tv/files/file/20-ne-emoji-enhancements/
  9. Ah well - that's likely the only option outside of deleting the actual icons from within your file structure. Why exactly do you want to disabled them? They are used on Retina screens for a reason (the default PNG icons probably blur a little on those screens)
  10. Give this a try - no guarantees. Add the below to your globalTemplate, just before the closing </body> tag. <script> if(typeof CKEDITOR !='undefined'){ CKEDITOR.env.hidpi=false; } </script>
  11. Based on that screenshot and the visible folders, public_html is your root. Highlight it, there are folders plus files in it.
  12. It's a file in the root of your Invision installation.
  13. It's likely affecting Chrome users more, I suspect. First things first...while you are using https there in the URL, your site is not being served up as http Check your conf_global.php, specifically the base_url value - if it is http:// then change it to https://, then clear your cache via the support tool in the ACP.
  14. https://www.videoconverterfactory.com/tips/chrome-mov.html
  15. Option 1 - you've entered the actual text into a template... Edit your theme's HTML: and then type "To protect" into the search bar: If it finds that text in a template, you'll get a result. Option 2 - you've entered the text in a language string: Start translating: And then type "To protect" in the search bar (type more of the string to refine results): If it finds it in a language string, then there will be a result. Still don't find it? Then correct...
  16. Or maybe he just means that he has Pages set as the default app for the site?
  17. It's because Authy has been deprecated by Twillio https://www.twilio.com/docs/verify/authy-vs-verify
  18. Nathan Explosion replied to LiveG's post in a topic in General Questions
    And that point is when 'you' post in it. If you haven't posted in the topic, you see the circle. If you have posted in the topic, you see the star.
  19. Just in case you mean that you did that in here - purchases were disabled on 15th September.