Been meaning to get around to this as it has been requested. What this does is turn of the required event image when creating one and so leave the default one provided. In part two I will show how to add your own default one in another tip.
You can see how the default image looks in the images below. or you can visit my site here to see a live preview https://jr-images.ning.com/events
So first off all you will need to edit the code if you have called your events page something else, if you left it as events then you just need to add the code as it is.
So if you named your events page to something else then you need to add your page name by replacing the part in bold, so if you called it something like our events then you would enter this
.page-our-events
Notice the hyphen's to replace the spaces
So here is the part you need to change in the code block
x$(' .page-events .entryEditPage #entry-form ')
So here is the code you need to add and you add this to your Social Site Manager > Custom Code > end of page section ( do not include this line with the code )
<script>
// Remove Image require in events, change to default image
x$(document).ready(function(){
x$('.page-events .entryEditPage #entry-form').attr('data-image-required','false');
});
</script>
And here are some demo images of how it would look with the default image
ACTIVITY FEED
Replies