Jump to content

aXenDev

Members
  • Posts

    658
  • Joined

  • Days Won

    6

 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 aXenDev

  1. https://invisioncommunity.com/4guides/themes-and-customizations/getting-started-with-themes_324/
  2. Some pop-ups have a bigger height then screen.
  3. {template="sharelinks" app="core" group="global" params="$goal"} in goalPage template: Error: Call to undefined method IPS\donate\Goal::webShareData()
  4. In file MemberSync/Donate.php query to database is wrong: \IPS\Db::i()->update( 'donate_member', array( 'donate_member_id' => $member->member_id ), array( 'donate_member_id=?', $member2->member_id ) ); and \IPS\Db::i()->delete( 'donate_member', array( 'donate_member_id=?', $member->member_id ) ); donate_member is not exist. It should be donate_members.
  5. @Jordan Invision I'm counting on you!
  6. @SUBRTX @GillyMe @rnorth6920 Solution: Edit theme, go to core -> front -> profile -> profile, Copy all content, Click Revert button, Paste the entire document you copied before. Fix will be enable in 4.0.1 version, but I don't know if it will solve the problem for IPS 4.5.
  7. I can't reproduce this error. Please contact me by PM.
  8. When you upgraded IPS to 4.6 then you have to change version in theme.
  9. @GillyMe There is a new option in global theme settings with IPS version selection (Default is IPS 4.6).
  10. Hi, In the IPS 4.6 update user's hovercard information what user do was removed. I propose to restore this option. Currently it looks like this: The word "Online now" appears all the time for 15 minutes after the last user action. In my opinion this is confusing and should be changed. Here is my suggestion: or What do you think about it? In my opinion, this last suggestion makes the most sense.
  11. /** * @brief [Node] Parent ID Database Column */ public static $databaseColumnParent = 'parent_id';
  12. Hi users! The IPS 4.6 update is coming fast and thus also the theme update to version 4.0.0! What would you like to see in the new theme release?
  13. You have path: https://dne4i5cb88590.cloudfront.net/invisionpower-com/monthly_2021_05/501897281_707066(1).jpg.5606b771e1597608e84d8a4c2cddfb55.jpg You can't twice provide extended file (.jpg). Then in CSS looks like: Solution: Rename file 😄
  14. For me, this option works. Can you send me the image for background?
  15. Where? In body or header? Can you send me the image for testing?
  16. For example copy file from forums app: /** * Friendly URL Structure * * For each value in the $furl array: * The key should be the "SEO Template" - an identifier which you'll use when displaying a URL. * The value should be an associative array with two or three elements: 'friendly' and 'real', and optionally 'verify': * 'friendly' * The friendly URL to use - encase variables in {curly braces} containing a symbol, followed by the name of the parameter that matches in the "real" URL * The symbol should be # for numbers or @ for strings * For example, if the "real" URL contains id=XXX, where XXX is a number, you should include {#id} somewhere in the friendly URL. * You can also use the tag {?} for the "SEO Title" (that is, any variables that shouldn't be part of the real URL, such as the name of the topipc being viewed). * If you want to support more than one SEO Title, you can give them zero-indexed keys like so: {?0} {?1} {?2} * 'real' * This should be the base of the real URL. You should not include parameters which will be parsed out from the friendly URL. * 'verify' * This should be the name of a class that contains a loadFromUrl() and an url() method. The dynamic URL (i.e. app=core&...) will be passed to loadFromUrl(), and the url() * method will subsequently be called to retrieve the correct URL, ideal with ActiveRecord pattern classes. * * IMPORTANT: Ensure values are listed with the most specific ones first. This is to ensure that non-FURL redirects are done correctly. For example, if you have these FURLs: * /index.php?app=myapp&module=mymodule&controller=mycontroller&do=myaction -> /myfolder/myaction * /index.php?app=myapp&module=mymodule&controller=mycontroller -> /myfolder * They must be provided in that order, otherwise the former will redirec to /myfolder/?do=myaction rather than /myfolder/myaction */ { "topLevel": "forums", "pages": { "forums_rss": { "friendly": "forum/{#id}-{?}.xml", "real": "app=forums&module=forums&controller=forums&rss=1" }, "forums_forum": { "friendly": "forum/{#id}-{?}", "real": "app=forums&module=forums&controller=forums", "verify": "\\IPS\\forums\\Forum", "seoPagination": true }, "forums_clubs": { "friendly": "forum/clubs", "real": "app=forums&module=forums&controller=forums&do=clubs" }, "topic_copy": { "friendly": "topic/{#id}-{?}/copy", "real": "app=cms&module=database&controller=topic" }, "forums_topic": { "friendly": "topic/{#id}-{?}", "real": "app=forums&module=forums&controller=topic", "verify": "\\IPS\\forums\\Topic", "seoPagination": true }, "forums": { "friendly": "", "real": "app=forums&module=forums&controller=index" }, "topic_create": { "friendly": "submit", "real": "app=forums&module=forums&controller=forums&do=createMenu" }, "topic_non_forum_add_button": { "friendly": "startTopic", "real": "app=forums&module=forums&controller=forums&do=add" } } }
  17. Hi, One language key is missing; /** * @brief [Node] Node Title */ public static $nodeTitle = 'ccfields'; I found also lang key: category_forums_integration cf_topic
  18. Hi, Why was the "last visited" field removed from User Hovercard? It was a very useful option here. It does not significantly extend the block: I see this report: but I don't think this is bug.
×
×
  • Create New...