I am trying to create segment in AEM 6.1 based on referring website. I found ootb trait called referring keywords but could not find how to get referrer. Can anyone help how to create segment based on referrer.
Thanks
Related
I have followed every step given in the following repo GitHub - Adobe-Marketing-Cloud/aem-scf-sample-components-extension: Sample package for AEM Social Communities - Social
I have added the subtitle property to "com.adobe.cq.social.journal.client.endpoints.impl.JournalOperationsService" and created a page using the given template and tried to add the extended journal component and clicked on New Article and tried to enter some content and clicked on publish immediately. But after I click on Publish it's taking me to the same page and no content is being published. And I checked if the UGC is stored under /content/usergenerated/asi/jcr/content but no content is stored for the ectended Journal component.
Where as the other extended community components that are given in the above repo are are working fine. I have added the required client libraries. Can anyone help me what am I missing?
After a lot of research, I understood that when you are publishing a new blog article JS is not getting loaded.
Steps to resolve the issue:
1) Navigate to /etc/designs/acme/clientlibs/site
2) Delete the JS folder and js.txt
That's it you are good to go.
Is it possible to have different templates of the same page for each audience/target?
This is the scenario:
Suppose I have the following audience/targets: Users, Super Users and Default.
Say I want to see my index page showing a different template depending on the audience/current logged in user.
Is this possible? How would you accomplish it?
If this is not possible using templates, is there another way to solve this?
Thanks!
I have a requirement to personalise the banner content of my site homepage depending on the other site sections (segments) a visitor has previously and/or most commonly visited.
My site is basically split into 3 sections SectionA/SectionB/SectionC. Assuming a visitor frequents the SectionA most often, one would assume I could class them into sectionA segment. Likewise for the other site sections. Each of my site sections is Tagged with the name of that section.
The idea is that next time the visitor visits the my homepage, the content displayed would then be personalised to match the segment they are assumed to belong too.
I have plenty of experience personalising content with Adobe Target, but next to zero without. Am I right in thinking this can be achieved via clientContext or contextHub?
PS: I have managed to get this working with contextHub tagCloud with segments based on tagCount>n, however this uses session storage by default and I can't find a way to configure persistent storage short of writing code to override the OOTB tagcloud store. Ideally, I'd like to write a persistent cookie and have my segment resolve based on the cookie value.
Any assistance would be appreciated.
Please have a look at this Adobe Helpx article :- https://helpx.adobe.com/experience-manager/using/personal.html
You can find good answers by expert on AEM at Adobe AEM forum:- http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.html
I hope this will help you.
Thanks and Regards
Kautuk Sahni
in AEM, how does geometrixx-outdoor's Orders.html page work.
http://localhost:4502/aem/orders.html/etc/commerce/orders
my initial finding is that /libs/commerce/gui/content/orders is being rendered and data is fetched from /etc/commerce/orders folder. but i'm not able to figure out how it's fetching data for the users. i need to extend this functionality and check if i can use it for the functionality i need.
I'm posting an answer to my own question so that anyone in future might be able to find the post a bit helpful.
Resource Merger API of AEM can be used to extend admin pages in Adobe Experience Manager.
http://dev.day.com/content/ddc/en/gems/user-interface-customization-for-aem-6.html first 20 minutes of this screencast explains it really well.
more information about it is given at https://helpx.adobe.com/experience-manager/using/extending-aem-6-administrator-user.html
in short, if one wants to add a nav bar entry in AEM, create a node after /apps/cq/core/content/nav. your node will be merged with /libs/cq/core/content/nav entries.
for creating your own pages in user interface, refer to /libs/commerce/gui/content/orders and create only the order node in libs folder(having a resource type granite/ui/components/foundation/page). main thing here is that the id in order node here should match the id given in nav bar node above. /libs/cq/gui/components/siteadmin/admin/pages/pages.jsp is the actual page which resolves the nodes to make header and body of pages.
explore the orders node to know more about how pages are created by adding only nodes.
Attempting to create a feed with Zend_Feed_Writer but need to include images.
I checked and such support is offered by Media RSS (Yahoo) and their namespace: http://search.yahoo.com/mrss.
Unfortunately this is not supported by ZendFramework and I am wondering what is the best approach to create such a feed through ZF.
I believe it can be addressed via Extensions but the documentation is poor. Anyone had this need as well?
You can simply create your own Feed_Writer class that extends Zend_Feed_Writer and add methods to support the elements from the Media RSS specifications.
From your tags on your question I'm guessing you're using ZF2, right? Couldn't find an example
relating to that version, but here's a good example for creating Custom Feed and Entry Classes on ZF1. It shouldn't be too hard to understand the concept and translate it to ZF2.
Hope this helps, good luck.