Dynamic View - Dashboard > Design > Template Designer > Advanced > Add CSS
- Paste the following code
- Preview before saving
- if happy - Apply to Blog:
.publish-info {
display: none !important;
}
.publish-info {
display: none !important;
}
[alertView performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:YES];
if(isSuceess){
UIAlertView *alertview = [[UIAlertView alloc] initWithTitle:@"Event" message:@"Event added in calendar" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
dispatch_async(dispatch_get_main_queue(), ^{
[alertview show];
});
}
else {
UIAlertView *alertview = [[UIAlertView alloc] initWithTitle:@"Event" message:[err description] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
dispatch_async(dispatch_get_main_queue(), ^{
[alertview show];
});
}