Jump to content

Sonya*

Clients
  • Posts

    3,759
  • Joined

  • Days Won

    29

Community Answers

  1. Sonya*'s post in Google don't index my forum was marked as the answer   
    This is not IPS original. It is modified. You do not allow to index your website for any bot. Disallow applies in your case for User-agents lines above, like this:
    User-agent: *  User-agent: AhrefsBot Disallow: / I recommend using robots.txt generated by IPS. It will exclude tons of duplicate URLs or those with no or poor content. If you block anything, your site will not be indexed. If you allow everything, this is also bad for SEO, as Google has to crawl many URLs that have no benefit for you.
    Read more here 
     
  2. Sonya*'s post in Multiple issues with RSS import was marked as the answer   
    Final follow-up with the solution. This was not CleanTalk. The reason why the title or content was not filled via task while doing RSS import was the permissions set on the title and content field in the Pages database. The fields should have full permissions for adding content:

    In my initial setup, only the administrator was able to add content to the field. The result was - an empty title and content while importing via RSS feed imports. These fields must be writable by anyone.
    By the way, permission to create a record in the database is not considered. I do not allow someone to create records in the database except for the admin. This does not matter. But the single fields must be writable by everyone.
    Closed for now 😅
  3. Sonya*'s post in Signature not showing for Guest? was marked as the answer   
    Have you disabled the signatures for guests? In AdminCP -> Profile Settings.

  4. Sonya*'s post in Sending a private message automatically to every newly registered user was marked as the answer   
    Profile autocompletion https://invisioncommunity.com/4guides/member-functions/profile-completion-r312/ Alert (new in 4.7) https://invisioncommunity.com/news/invision-community/introducing-the-alert-system-r1254/ Auto Welcome https://invisioncommunity.com/files/file/7449-auto-welcome/
  5. Sonya*'s post in Automatically close topics by age. Not archiving was marked as the answer   
  6. Sonya*'s post in How to redirect from deleted page to external URL? was marked as the answer   
    put the URL in quotes:
    {{\IPS\Output::i()->redirect( 'https://external.url', NULL, 301);}}  
  7. Sonya*'s post in ipsSideMenu: nested or responsive? was marked as the answer   
    I know 🙃 It was a little bit late. Removing the class from child lists does it 🥴
  8. Sonya*'s post in How to get "forums.css" loaded on own page? was marked as the answer   
    If your own page is made with Pages, then you can add this to the page template:
    {{\IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'forums.css', 'forums', 'front' ) );}}  
  9. Sonya*'s post in Cover Photo Link was marked as the answer   
    {{$coverPhoto = $comment->author()->coverPhoto();}} <div class="coverphoto" style="background-image: url('{$coverPhoto->file->url}')"></div>  
  10. Sonya*'s post in Cover Photo Link was marked as the answer   
    {{$coverPhoto = $comment->author()->coverPhoto();}} <div class="coverphoto" style="background-image: url('{$coverPhoto->file->url}')"></div>  
  11. Sonya*'s post in How to edit - Update in progress - Message? was marked as the answer   
    Do not edit hard-coded files, they will be replaced with the next upgrade.  You can use the UPGRADING_PAGE constant to specify the location of a new file. See how to use constants.php
     
  12. Sonya*'s post in New records in different categories was marked as the answer   
    I would give a reciprocal database a try. Manage specialities in one database. Add a database relationship field to the doctors, where multiple specialities can be choosen. Enable cross linking.
     
  13. Sonya*'s post in Problem setting up gmail SMPT was marked as the answer   
    Have you allowed less secure apps in your Google account? https://support.google.com/accounts/answer/6010255?hl=en
  14. Sonya*'s post in Welcome Quick setup was marked as the answer   
    Call this, replacing example.com with your community domain https://example.com/admin/?app=core&module=overview&controller=onboard
  15. Sonya*'s post in How to allow members to view there application after submitting it... was marked as the answer   
    You should post your question in support thread for the application 
     
  16. Sonya*'s post in Notification was marked as the answer   
  17. Sonya*'s post in Database Article was marked as the answer   
    Your article is indexed:

  18. Sonya*'s post in how to display ad banners on my forum was marked as the answer   
  19. Sonya*'s post in How to create a guide? was marked as the answer   
    Try this
     
  20. Sonya*'s post in Managing hosting subscriptions through Invision? was marked as the answer   
  21. Sonya*'s post in Error installing hotfix update. was marked as the answer   
    I had the same error (Division by zero) with the same stack trace during the last upgrade. I had to complete the upgrade via /admin/upgrade. The latter was successful.
  22. Sonya*'s post in Custom blocks and devices was marked as the answer   
    Sorry for double-posting 😊. Is known issue now 
     
  23. 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. 
  24. Sonya*'s post in Reaction button disappears when icon replaced was marked as the answer   
    Found a solution via similar topics block 
     
  25. 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.
×
×
  • Create New...