Posts

Showing posts from May, 2019
Image
Roll out option in AEM 6.4 Touch UI Tools AEM does not provide option to rollout pages from Touch UI version of siteadmin and recommending to use classic UI for rollout option which is present under tools dropdown By making below changes we can use roll-out option in Touch UI siteadmin 1) Overlay below path from /libs to /apps     /apps/wcm/core/content/sites/jcr:content/actions/selection 2) Add rollout node (nt:unstructured) under selection with values as shown below (Mostly I used open properties /libs/wcm/core/content/sites/jcr:content/actions/selection/open) 3) Add data node (nt:unstructured) under rollout node with values as shown below 4) Once above changes are done, we can see the rollout option in Touch UI siteadmin 5) I am opening the rollout page in new window so that authors can come back to previous window and make the changes 
Adobe Search and Promote reading Open Graph tags (og:tag) Adobe Search and Promote won't allow adding meta tags having special characters (:, % etc) and if we want to read meta property values added in open graph tags (used for social network sites) then it can be achieved by filtering script and add it to a custom meta tag on the page Steps: 1) Login to Adobe Search and Promote console 2) Select account of corresponding site 3) Go to Settings --> Filtering --> Filtering Script (This is the place where you can update the page content before Search and Promote reading page details) 4) Add below code  undef $/; my $doc = <>; if ($doc) { if( $doc =~ m{<meta property="og:image" content="(.*?)"}is) {       my $imageVal = $1       $doc =~ s{</head>}{<meta name="customproperty" content="$imageVal" />\n</head>}i; } print $doc; } return 1; 5) Above code a