Jump to content

WWD

Snow
  • Posts

    170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by WWD

  1. @T0E This is a core issue with Veilon themes it seems. I just tried it out on my own Veilon theme. I would stay away from this buggy feature Alternatively, I would highly recommend downloading Featured Content: https://invisioncommunity.com/files/file/7290-bim42-featured-content/ It's highly customizable. A version for 4.2.x is not currently available on WebFlake, but this version still works for me on 4.2: Here are some screenshots of how I've used it on my site:
  2. @T0E It looks like it's just a CSS issue then, If I'm understanding correctly. What do you mean by: Does the articles slider not appear AT ALL, or just terribly formatted? Do you have articles to show in the first place?
  3. Probably not anything as good as Gallery...sometimes you just have to say "no" to some users
  4. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  5. @T0E Veilon does put out great themes, but is also notorious for releasing their themes unfinished. I currently use a Veilon theme and I've fixed so many coding bugs I can't even begin to count. Could you post screenshots of the relevant Theme Settings for articles? Double check to make sure they are all enabled. While you're at it, post screenshots of the Articles Slider so we can see what's up with it. If it looks terrible and beyond repair, I have some better solutions for sliders that are much more manageable!
  6. For a widget? No. The only way to "restrict" the user from seeing a specific category is to configure the permissions to view the images from that category in the first place. I don't think what you want can be done; I do think it's a good idea though.
  7. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  8. Wow, that was somewhat painful to read...glad you got it sorted though...
  9. Hi, Please add the following CSS edits to the custom.css file on your Titan theme via Theme Editor: /*CSS EDITS FOR COMMENTS*/ @media screen and (min-width: 768px){ .cPost .ipsComment_controls { position: initial !important; margin-top: 15px !important; } } @media screen and (min-width: 768px){ .cAuthorPane { padding-bottom: 15px !important; } } That should do the trick for you. It should look like this: Mobile: Desktop: (On a side note, I would highly reccomend hiding some of the fields in the profile pane on mobile. It look very cluttered, especially on smaller devices. The plugin you are using, Enhanced User Info Panel, has the option to hide fields on mobile as a setting, check it out!)
  10. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  11. @McPearse Unfortunately, IPS does not support conversion from Blogs to Forums. You can only move blog entries from one blog to another. If you wanted to move an entry to a forum, you'd have to create a new topic in that forum and copy/paste the blog entry contents. (I tried moving it to a forum on my own test board, as seen below)
  12. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  13. This is a temporary issue as Cloudflare works to recache your site. Did it help solve the issue in your original post? Also, have you already looked into titcrunch's solution?
  14. Indeed, Cloudflare does not like Invision Community Suite very much. I've had these issues myself, back when I used Cloudflare. Keep Cloudflare on (but NOT in "Under Attack" mode), go to the "Caching" tab in the dashboard and hit "Purge Everything" - this will force Cloudflare to fetch a fresh version of your site. All in all though, Cloudflare is really shitty to deal with when running IPS; I ran into so many errors on my board with it enabled.
  15. Are you using something like Cloudflare? It could be showing a cached version of your page and not the live site.
  16. @Maxqqq If you're trying to create a roster page and you don't know how to correctly use the IPS variables, then you're going to run into a LOT more issues than just displaying the photo... Can we get a screenshot of what you're envisioning to create? Chances are there is already a feature/plugin of IPS that will do the trick for you. A couple ways already come to mind. Staff feature Pages application IPS Member search But again, would need a better description/explanation of what you're trying to achieve.
  17. @STAR Would need to take a look at the CSS on your site. It appears it (amods.me) is offline right now. However, just based on those screenshots, the reactions don't seem to be the problem; rather the toolbar's CSS is the issue.
  18. @McPearse Could you be a little more specific? What type of blog? Screenshots and/or more explanation would help. "move an entry in a blog to a forum" is not very helpful.
  19. Not completely sure about this as I've never tried creating my own statistics. However, here's the code from the native Forum Statistics that you should be using to create your welcome message. The PHP file is located at /applications/forums/widgets/forumStatistics.php if you need to replicate it etc. <?php /** * @brief forumStatistics Widget * @author <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a> * @copyright (c) Invision Power Services, Inc. * @license https://www.invisioncommunity.com/legal/standards/ * @package Invision Community * @subpackage Forums * @since 27 Mar 2014 */ namespace IPS\forums\widgets; /* To prevent PHP errors (extending class does not exist) revealing path */ if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) ) { header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' ); exit; } /** * forumStatistics Widget */ class _forumStatistics extends \IPS\Widget\StaticCache { /** * @brief Widget Key */ public $key = 'forumStatistics'; /** * @brief App */ public $app = 'forums'; /** * @brief Plugin */ public $plugin = ''; /** * Render a widget * * @return string */ public function render() { $stats = array(); $stats['total_posts'] = \IPS\Db::i()->select( "COUNT(*)", 'forums_posts', array( 'queued = ?', 0 ) )->first(); if ( \IPS\Settings::i()->archive_on ) { $stats['total_posts'] += \IPS\forums\Topic\ArchivedPost::db()->select( 'COUNT(*)', 'forums_archive_posts', array( 'archive_queued = ?', 0 ) )->first(); } $stats['total_topics'] = \IPS\Db::i()->select( "COUNT(*)", 'forums_topics', array( 'approved = ?', 1 ) )->first(); return $this->output( $stats ); } } Hope this helps, if at all!
  20. Thanks for this tutorial! CSS is very shitty on my theme, but that's no problem
  21. How long ago did you move hosts? It could be that IPS is still running background tasks. Try downloading the theme and re-uploading it. Make sure you take a backup first before doing anything though. Themes > Dropdown > Download
  22. Yet it still sounds like your file storage is the issue. Make sure it matches up in your config_global.php file, or at least double check. Also, check your error logs in the ACP and paste any related ones here.
  23. Is the datastore properly configured? Does it also have the right permissions? Also look into ownership of the files. Make sure that your apache/nginx/php are all in a group where they own the web root.
  24. Maintained proper file/folder permissions?
×
×
  • Create New...