-
Posts
3,947 -
Joined
-
Days Won
34
Community Answers
-
Sonya*'s post in Unsubscribe from custom activity stream was marked as the answer
Oh, sorry. I have not tried it again. 😊 Consider forgetting it.
-
Sonya*'s post in Reaction button disappears when icon replaced was marked as the answer
Found a solution via similar topics block
-
Sonya*'s post in Description meta tag in Pages was marked as the answer
There is a workaround, if you would like to edit display record template. Add this on top of the template:
{{\IPS\Output::i()->metaTags['description'] = $record->customFieldDisplayByKey('YOUR_CUSTOM_FIELD', 'listing');}} {{\IPS\Output::i()->metaTags['og:description'] = $record->customFieldDisplayByKey('YOUR_CUSTOM_FIELD', 'listing');}} This would overwrite the default description meta tag with the value of your custom summary field.
-
Sonya*'s post in Admin CP icons broken after custom domain applied was marked as the answer
Click on Support in the upper-right corner of your AdminCP and select Clear system caches:
-
Sonya*'s post in 404 Error at Login After Server Move was marked as the answer
Check your .htaccess. https://invisioncommunity.com/4guides/promotion/seo-r295/#furls
-
Sonya*'s post in How do I update the IPS internal JS templates was marked as the answer
You do not override any core files. Use mixins to extend existing functionality -> https://invisioncommunity.com/4guides/themes-and-customizations/javascript-framework/introduction-to-the-framework/mixins-r285/
Simply download the .tar file from the Application Developer Center.
Install or update the previously downloaded .tar file on your live website.
-
Sonya*'s post in How do I pass variable to media function in templates was marked as the answer
Try this
-
Sonya*'s post in Can I increase admin area login period for dev installation? was marked as the answer
Add this to your constant.php
define('DEV_DISABLE_ACP_SESSION_TIMEOUT', TRUE);
-
Sonya*'s post in Pages: Why can we use a custom database only on one page? was marked as the answer
This this due to the url. The database itself does not have an URL, only the page. If you place the database on the page with the URL test then your records are reachable through https://www.example.com/test If you place your database on different pages then you would produce duplicate content. Means your database and all records URL would have two or more URLs pointing to the same content.