Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
That is fantastic news! Can't wait to see this roll out.There's no sponsored posts feature yet, but it's planned. The idea is it'll just insert one of the sponsored posts every X amount of posts based off a probability check. All of which would be customizable.
Initially, would simply adding custom module that contains for example a linkable advertising image cause the sorts of problems you describe?For now the below auto actions in CB Auto Actions can sort of do this by injecting HTML in the middle of a stream. You can enable content plugins and insert a Joomla banner module for example, but you'll need a different banner module than Joomlas core module as it outputs really bad HTML that's going to get broken by cleaning behaviors.
Please Log in or Create an account to join the conversation.
The second auto action helps avoid the parser breaking the banner module. Normally you'd just be able to do this in 1 auto action, but because of the poorly formatted HTML for the banner module the parsing code breaks it. Sorry if I wasn't clear. The supplied auto actions usage is completely ready to go and tested with Joomlas banner module.Initially, would simply adding custom module that contains for example a linkable advertising image cause the sorts of problems you describe?
I know out the gate things like tracking impressions and clicks would need to be handle by some 3rd party extension but this would be a simple start.
There isn't a way to override system name and avatar on a per-activity basis. The best approach is probably to just use CSS and hide that information entirely. You can also make the activity more compact using compact mode, which would be enabled using the below in the first auto action.Thanks for the Auto Actions recommendation to try out. What would you suggest as a way to modify the author & profile image of the post. Your example says "System". Also some place to put the word "sponsored post", maybe just below when it was posted. OR to make it easier replace "System" with "Sponsored Post"
Please Log in or Create an account to join the conversation.
Excellent! Thank you for clarifying. Looking forward to trying this out. Between this and the ability to place ads in Kunena's pages there are some great fundraising opportunities!The second auto action helps avoid the parser breaking the banner module. Normally you'd just be able to do this in 1 auto action, but because of the poorly formatted HTML for the banner module the parsing code breaks it. Sorry if I wasn't clear. The supplied auto actions usage is completely ready to go and tested with Joomlas banner module.
There isn't a way to override system name and avatar on a per-activity basis. The best approach is probably to just use CSS and hide that information entirely. You can also make the activity more compact using compact mode, which would be enabled using the below in the first auto action.
$ad->params()->set( 'overrides.compact', true );
Please Log in or Create an account to join the conversation.
It won't hide the name, but it does hide the avatar. Likes, comments, etc.. are turned off in the first auto action, but you can turn them on I suppose by just removing their overrides but I did not give the fake activity entry a unique asset so all ad entries would share comments and likes unless you gave them all unique assets somehow.So compact mode would hide the name and avatar? Would things like being able to share and like to the post still be available?
Please Log in or Create an account to join the conversation.