Hi @Shubham_borole when we select the option as display as teaser, it will directly call the teaser resource and tesaser.html from teaser component. so item.html and list.html will not be effective in this option
We are not able to achieve to show only image and title in custom component also which extends core List. As the image is coming along with teaser resource. so it always displays description ,image and title. Only way i can think of is tamper the teaser html and hide the description based on my li...
I want to show featured image, title alone in one of our List component variations but in core list component ,only when we select display as teaser option, image is showing. along with that description also coming which I don't need.How to segregate the image from teaser and show it. From code the...
Hi @saravana_sgws were you able to achieve the above custom job in the job console. we are also looking for the same? I have created a sling job and storing csv into the var folder. can you please share how did you achieve the same in detail? I couldn't find anything in online. The mentioned packag...
Have your issue resolved? @SuprithaN1 If you are using two core bundles , check if you are exporting the model classes twice. that was the cause for us.
After we discussed with the Engineering team , we found the solution. we had other bundles included in our repo as submodules. One of the model Impl class from the other bundle has been exported in the their bundle manifest header and as well as our manifest header. Due to this, it had conflict inte...
@touseefk2181136 Since you are creating the node programatically on author, you can even publish it from author to publisher in code itself using replication apireplicator.replicate(session, ReplicationActionType.ACTIVATE, "your_path");
Hi team, we have written a commit hook by creating a service class implementing EditorProvider, here is the class @component(service = EditorProvider.class) public class AssetMetadataEditorProvider implements EditorProvider { private static final Logger log = LoggerFactory.getLogger(AssetMetadataE...