XF 2.2 snippet length settings are disappeared

Tamasita

Member
The article snippet length settings are disappeared in preview mode in my ACP. Why? But it works in the expanded view. Is it normal? How I can control otherwise?
 

Attachments

  • article snippet B.webp
    article snippet B.webp
    23.9 KB · Views: 12
  • article snippet A.webp
    article snippet A.webp
    20 KB · Views: 12
If you want to change post snippet length, you can do it in 'post_article_macros' template line 257.

Code:
                                {{ snippet($post.message, 750, {
                                    'stripQuote': true,
                                    'bbWrapper': true
                                }) }}
 
If you want to change post snippet length, you can do it in 'post_article_macros' template line 257.

Code:
                                {{ snippet($post.message, 750, {
                                    'stripQuote': true,
                                    'bbWrapper': true
                                }) }}

Yes, thank you I tried it, and it worked well. Good to know it. However, I don't understand why they removed this setting from the ACP. It was nice and easy to change it differently for specific nodes.
 
Top Bottom