(solved) Slight uniformity correction in ACP

For documentation of changes to the PGSocial Network extension
Post Reply
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

(solved) Slight uniformity correction in ACP

Post by Mandi »

In the ACP, PG Social Settings, Settings Album, the Limit albums and Limit photos for albums wasn't in bold font. To correct this for a more uniform look, go to ext/pgreca/pgsocial/adm/style and open the file pg_social_body.html

Locate line 92 which looks like this

Code: Select all

<dt>{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</dt>
Replace with this

Code: Select all

<dt><label for="pg_social_gallery_limit">{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</label></dt>
Locate line 96 which looks like this

Code: Select all

<dt>{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</dt>
Replace with this

Code: Select all

<dt><label for="pg_social_photo_limit">{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</label></dt>
Post Reply