Jump to content

Oni

Contributor
  • Posts

    101
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Oni

  1. Oni

    Do you think they got a new shipment of cheese wheels at the corner market today?

  2. 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.
  3. Make sure the database credentials are correct. But I have a guess, could you show me the complete URL of the installation page?
  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. You need direct access to the plugin files, which requires a self-hosted license.
  6. We were not born omniscient, the forum is there to ask and answer questions. Imagine you need help with something in the near future and I'll answer you like that. Ensure your server meets the system requirements. You can download the Invision Community Requirements Checker from the official website to do so. Download the latest version of the Invision Power Suite here: https://webflake.sx/files/category/169-invision-community-suite-46/ Unzip the download and upload the contents to your server in the directory where you want your Community to run. Simple visit your website (in some cases you have to manually visit /admin/install in your browser from the directory where you uploaded). At this point the installer will make sure all your directory permissions are correct and prompt you to correct any issues. You will then be asked for your MySQL database issues and various other information the system may need to proceed.
  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. Yes, you just have to update the URL inside your conf_global.php.
  9. 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.
  10. By default, the permission for submitting URLs is deactivated for all user groups. You have to manually enable it for each user group: Members -> Groups -> <usergroup> -> Edit -> Downloads -> Submission Permissions -> Can submit URLs?
  11. 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.
  12. Enable it first: AdminCP ➜ System ➜ Site Promotion ➜ Social Media Promotion ➜ Our Picks. More information on how to add promotions: https://invisioncommunity.com/news/product-updates/new-promoting-content-r1009/
  13. Unfortunately, no application that is using the ExtraFields model can be searched. Was requested 5+ years ago, but discarded due to performance problems. IPS supports Elasticsearch as Search Engine, could be possible with that, but I don't want to promise you anything.
  14. Try to recount all statistics via AdminCP or set indexer to 0 manually via Database.
  15. I always recommend https://flaunt7.com to everyone. No logs (except you want so) DDoS Protection included in all services Affordable prices Fast (using LiteSpeed Web Server) Free SSL Certificate
  16. That's totally no problem! Did you change anything? It's working perfectly on my end, if you did change a few things; just to be really sure, can you show me screenshots of everything?
  17. This can be done using CSS keyframes and animation properties. You can ditch that code you have, it's bad. I rewrote it for you and added some comments: /* Add this to your custom.css */ /* Example code block, will be wrapped around the user group title */ .memberGroup { animation: colorForMemberGroup 1s infinite; } /* This is a keyframe, pay attention to the name, it must be used inside the animation property. You can change the colors using common HEX color codes or RGB,HSL,HSV and CMYK color models. */ @keyframes colorForMemberGroup { 0% { color: red; } 50% { color: blue; } 100% { color: red; } } Now you can use it like this: <span class="memberGroup">Member Name</span> and the name will change its colors from red, blue to red in an infinite loop, as mentioned above, you can change the colors as you desire. The rotating icons are the easiest thing, we can do it ourselves using CSS but we don't have to! IPS is using FontAwesome which already provides us with various built-in animation classes! In your case, you would want to use `fa-spin` just like this (as you already mentioned in your post above): <i class="fa fa-newspaper-o fa-spin"></i> Everything together would look like this: <span class="memberGroup"><i class="fa fa-newspaper-o fa-spin"></i> Member Name</span>
  18. Oni

    RSS Feed

    Internal or external feed? That URL is just not right. To get an internal RSS feed of a section: If you wish to build your own feeds (internal) to show within the main RSS link in the bottom left, you can do this from your ACP in the following location System -> Content Discovery -> RSS Feeds When creating a new feed, you can choose which sections you wish to 'feed' into this new RSS feed. Here we have created a feed named 'Test Feed', which shows information only from a specific calendar.
  19. Alright, this one requires a few lines more code if done properly. Add this on top of your postContainer: {{$rep = $rep ?: $comment->author()->pp_reputation_points;}} and place the following code where you want it in the postContainer: {{if $comment->author()->group['gbw_view_reps']}} <a href='{url="app=core&module=members&controller=profile&id={$comment->author()->member_id}&do=reputation" seoTemplate="profile_reputation" seoTitle="$comment->author()->members_seo_name"}' title="{lang="reputation_badge_tooltip_period"}" data-ipsTooltip class='ipsRepBadge ipsType_medium {{if $rep > 0}}ipsRepBadge_positive{{elseif $rep < 0}}ipsRepBadge_negative{{else}}ipsRepBadge_neutral{{endif}}'><i class='fa {{if $rep > 0}}fa-plus-circle{{elseif $rep < 0}}fa-minus-circle{{else}}fa-circle-o{{endif}}'></i> {expression="\IPS\Member::loggedIn()->language()->formatNumber( $rep )"}</a> {{else}} <span title="{lang="reputation_badge_tooltip_period"}" data-ipsTooltip class='ipsRepBadge ipsType_medium {{if $rep > 0}}ipsRepBadge_positive{{elseif $rep < 0}}ipsRepBadge_negative{{else}}ipsRepBadge_neutral{{endif}}'><i class='fa {{if $rep > 0}}fa-plus-circle{{elseif $rep < 0}}fa-minus-circle{{else}}fa-circle-o{{endif}}'></i> {expression="\IPS\Member::loggedIn()->language()->formatNumber( $rep )"}</span> {{endif}} You're welcome
  20. Oni

    Edit menu

    To change the ',' you just have to add this override to your custom.css: .ipsDataItem_subList li a::after { content: ','; } You can change the value to whatever you want e.g. .ipsDataItem_subList li a::after { content: '➜'; }
  21. 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.
  22. Rank dots were also removed with the update, but I can for sure help you with content number and reputation. Posts: {number="$comment->author()->member_posts" format="short"} Reputation: {number="$comment->author()->pp_reputation_points" format="short"} Badges: {number="$comment->author()->badgeCount()" format="short"}
×
×
  • Create New...