Everything posted by Nathan Explosion
-
Enabling all services when changing the license terms
-
Can i include php datatables third party script in block code?
Good to see you got it working.
-
new to this how to i acess this admincp thing ?
It's your site URL plus /admin Guide on how to use is here...
-
Best way to handle guest writers for Pages Article database?
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.
-
Can i include php datatables third party script in block code?
-
Can i include php datatables third party script in block code?
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.
-
Can i include php datatables third party script in block code?
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>
-
Can i include php datatables third party script in block code?
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:
-
Can i include php datatables third party script in block code?
It may be in the block, but is it loaded on the site? Provide a link to your page with the block on it.
-
v5 news coming soon...
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?
-
Emoji pack
https://www.ynwa.tv/files/file/20-ne-emoji-enhancements/
-
Ckeditor hipdi icon toolbar format
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)
-
Ckeditor hipdi icon toolbar format
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>
-
Forum user cannot get past first page of any thread
Based on that screenshot and the visible folders, public_html is your root. Highlight it, there are folders plus files in it.
-
Forum user cannot get past first page of any thread
-
Forum user cannot get past first page of any thread
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.
-
Forum user cannot get past first page of any thread
Post a link.
-
Solution to play .mov files in Chrome?
https://www.videoconverterfactory.com/tips/chrome-mov.html
-
Registration Template Modification - I'm Getting Old
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...
-
504 “Gateway Timeout” Error
Or maybe he just means that he has Pages set as the default app for the site?
-
Stripe endpoint, no instructions in Invision
-
Authy 2FA deprecated?
-
Authy 2FA deprecated?
It's because Authy has been deprecated by Twillio https://www.twilio.com/docs/verify/authy-vs-verify
-
star topic
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.
-
Pickems X
Just in case you mean that you did that in here - purchases were disabled on 15th September.