fashioncoree
Forum Replies Created
-
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Dynamic fieldsOk, that’s about the only thing I’m missing with your plugin, it does such a good job. I used to code my forms myself, but there’s no reason to do so anymore.
Will be eagerly awaiting this feature ??
Thank you!
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Dynamic fieldsHi!
Yea, they’ve removed the example for some reason.
Giving you another link to show you what I mean:
https://www.jqueryscript.net/demo/jQuery-Plugin-To-Dynamically-Add-More-Form-Fields-czMore/I would like to be able to do this on the front end.
Best Regards
Forum: Plugins
In reply to: [OneSignal - Web Push Notifications] Post Title in place of Site title?Forum: Plugins
In reply to: [OneSignal - Web Push Notifications] Category wise subscriptionAgreed, it would be amazing to have category support already baked into the plugin, an alternative would be creating a add-on for the plugin, that we could use until it’s officially released.
It’s been requested several times, even on their git actually. So hopefully this will be something they will look into in the near future.
Best Regards
- This reply was modified 7 years ago by fashioncoree.
Forum: Plugins
In reply to: [OneSignal - Web Push Notifications] Category wise subscriptionHi!
Yes, I got it working last week.
Though it requires some custom code to get it working.
What I did is that I set up a new segment for every category that I got on my site.
The segment uses the same name as the category and the user tag must be the slug name.
Example segment: News, user tag: news, condition: {is} true.Then I added this piece of code in my functions.php in a child theme.
/** * Send notifications based on category, Onesignal */ add_filter('onesignal_send_notification', 'onesignal_send_notification_filter', 10, 4); function onesignal_send_notification_filter($fields, $new_status, $old_status, $post) { $categories = get_the_category($post->ID); // Change which segment the notification goes to, will always be the first category $fields['included_segments'] = array($categories[0]->name); return $fields; }
I never use several categories for a post so this code works fine for me, you might need to change it if u select more than one category per post.
So now that the push is being sent to the correct segment, users need to be able to choose which category they want to subscribe to.
I solved this by adding a modal with a checkbox for each category.
Added the code below to my footer.php, so that I could call/set a-href to the modal wherever I wanted. (I’m using bootstrap and FontAwesome, you will need to change this code if you don’t)<!--subscribe--> <div class="modal fade" id="subscribe-modal" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;"> <div class="modal-dialog"> <div class="subscribemodal-container"> <h2 class="text-center"><?php esc_html_e('Subscribe to push notifications', 'sjalvservice'); ?></h2> <p class="text-center"><?php esc_html_e('Choose the categories you want to subscribe to', 'sjalvservice'); ?></p> <form action="" method="post" name="subscribeform"> <div class="form-field"> <ul class="list-group"> <?php $categories = get_categories(); foreach( $categories as $category ) { echo '<li class="list-group-item">' . esc_html( $category->name ) . '<div class="material-switch pull-right"><input id="subscribeSwitch' . esc_html( $category->slug ) . '" class="subscribecheckbox" value="' . esc_html( $category->slug ) . '" type="checkbox"/><label for="subscribeSwitch' . esc_html( $category->slug ) . '" class="label-success"></label></div></li>'; } ?> </ul> <p id="subscribe-message"></p> <a href="#" id="subscribe-submit"></a> </div> </form> </div> </div> </div> <!-- subscribe-message styling and localization. --> <style> #subscribe-message.subscribed, #subscribe-message.unsubscribed, #subscribe-message.subupdated, #subscribe-message.choosecategory { opacity: 1; } #subscribe-message.subscribed:after { content: "<?php esc_html_e('Click on allow notifications to confirm subscription!', 'sjalvservice'); ?>" !important; } #subscribe-message.unsubscribed:after { content: "<?php esc_html_e('You are now unsubscribed!', 'sjalvservice'); ?>" !important; } #subscribe-message.subupdated:after { content: "<?php esc_html_e('Subscription updated!', 'sjalvservice'); ?>" !important; } #subscribe-message.choosecategory:after { content: "<?php esc_html_e('Choose at least one category!', 'sjalvservice'); ?>" !important; } #subscribe-submit:after { content: "<?php esc_html_e('Subscribe', 'sjalvservice'); ?>"; } #subscribe-submit.unsubscribe:after { content: "<?php esc_html_e('Change/unsubscribe', 'sjalvservice'); ?>" !important; } </style>
As you can see I also added some css to a few classes, this will be used later to display a message to the subscriber.
With the code above, I can add this line wherever I want in the theme:
<a href="#subscribe-modal" id="subscribe-button" data-toggle="modal" title="Push notifications" style="display: none;"><i class="fa fa-lg fa-bell" aria-hidden="true"></i></a>
So, now the only thing that remains is the logic behind all this, we need to fetch the checkboxes selected when the user push subscribe, and also send the tags to onesignal.
This is done with javascript(should be added to the child-themes .js file), based on the OneSignal documentation, can probably be cleaned up a bit but this is what I’ve got and it works for me :
/* Push notifications */ function onManageWebPushSubscriptionButtonClicked(event) { var submessage = document.getElementById('subscribe-message'); var items = document.getElementsByClassName('subscribecheckbox'); var selectedItems = {}; var checked = false; for(var i=0; i<items.length; i++){ if(items[i].type=='checkbox' && items[i].checked==true) { selectedItems[items[i].value] = 'true'; checked = true; } else { selectedItems[items[i].value] = ' '; } } submessage.classList = ""; getSubscriptionState().then(function(state) { if (checked && state.isPushEnabled) { /* Subscribed with newly checked categories, update tags */ OneSignal.sendTags(selectedItems).then(function(tagsSent) { // Callback called when tags have finished sending submessage.classList.add('subupdated'); });; } else if (!checked && state.isPushEnabled) { /* Subscribed with no categories checked, opt them out */ OneSignal.setSubscription(false); submessage.classList.add('unsubscribed'); } else { if (!checked) { /* Unsubscribed with no categories checked, choose category */ submessage.classList.add('choosecategory'); } else { if (state.isOptedOut) { /* Opted out, opt them back in */ OneSignal.setSubscription(true); } else { /* Unsubscribed, subscribe them */ OneSignal.registerForPushNotifications(); } OneSignal.sendTags(selectedItems).then(function(tagsSent) { // Callback called when tags have finished sending submessage.classList.add('subscribed'); }); } } }); event.preventDefault(); } function updateManageWebPushSubscriptionButton(buttonSelector) { var hideWhenSubscribed = false; var subscribeClass = "subscribe"; var unsubscribeClass = "unsubscribe"; var subscribeIcon = "fa fa-lg fa-bell"; var unsubscribeIcon = "fa fa-lg fa-bell-o"; getSubscriptionState().then(function(state) { var buttonClass = !state.isPushEnabled || state.isOptedOut ? subscribeClass : unsubscribeClass; var buttonIcon = !state.isPushEnabled || state.isOptedOut ? subscribeIcon : unsubscribeIcon; var element = document.querySelector(buttonSelector); if (element === null) { return; } element.removeEventListener('click', onManageWebPushSubscriptionButtonClicked); element.addEventListener('click', onManageWebPushSubscriptionButtonClicked); element.className = buttonClass; document.querySelector("#subscribe-button").children[0].className = buttonIcon; if (state.hideWhenSubscribed && state.isPushEnabled) { document.querySelector("#subscribe-button").style.display = "none"; } else { document.querySelector("#subscribe-button").style.display = ""; } }); } function getSubscriptionState() { return Promise.all([ OneSignal.isPushNotificationsEnabled(), OneSignal.isOptedOut() ]).then(function(result) { var isPushEnabled = result[0]; var isOptedOut = result[1]; return { isPushEnabled: isPushEnabled, isOptedOut: isOptedOut }; }); } var OneSignal = OneSignal || []; var buttonSelector = "#subscribe-submit"; /* This example assumes you've already initialized OneSignal */ OneSignal.push(function() { // If we're on an unsupported browser, do nothing if (!OneSignal.isPushNotificationsSupported()) { return; } updateManageWebPushSubscriptionButton(buttonSelector); OneSignal.on("subscriptionChange", function(isSubscribed) { /* If the user's subscription state changes during the page's session, update the button text */ updateManageWebPushSubscriptionButton(buttonSelector); }); });
So what is being done here? when the user clicks the subscribe button, OneSignal is initiated, checked and unchecked checkboxes is being added to an variable object, and sent using OneSignal.sendTags, depending on what the user selects and if the user is subscribed already, the user will also get some feedback when clicking on subscribe.
If none is checked and the user is subscribed, the user will get opted out.I contacted OneSignal to support about deleteTags and they explained that sendTags also removes tags if being sent with an empty value, therefore I don’t use deleteTags to remove tags.
Hope this helps.
Best RegardsForum: Plugins
In reply to: [Next Active Directory Integration] User role “None”But is it really supposed to work like that? removing the role added by default when no security group is present? This means having a default role is not going to work while also using other roles.
I suggest checking if the user is part of a security group, if so keep only the roles linked to the security group/groups.
If the user is not part of any security group, keep/reset to the default subscriber role.“None” should never be used as it’s not an actual role and is never used by the WordPress core itself?
Best Regards
- This reply was modified 7 years, 7 months ago by fashioncoree.
Forum: Plugins
In reply to: [Next Active Directory Integration] User role “None”Hi again!
OK, I’ve done some more digging.
So the creation of a new account without a security group works fine, the new user gets the subscriber role.
But.. if I have clean existing roles enabled, once the user signs in a second time the user gets a “none” role.This is surely not how it’s supposed to be right?
I gotta be able to clean user roles for users getting changed into other security groups without it affecting users without a security group?Best Regards
- This reply was modified 7 years, 8 months ago by fashioncoree.
Forum: Plugins
In reply to: [Next Active Directory Integration] User role “None”Hi again!
Thank you for responding, I still get this issue.
Will try to see if there’s some kind of conflict somewhere.Best Regards
Forum: Plugins
In reply to: [Next Active Directory Integration] anonymous/windows authentication!it was an IIS issue, sorry to have bothered u.
Best Regards
Forum: Plugins
In reply to: [Next Active Directory Integration] anonymous/windows authentication!Hi again!
Yea, I understand that but wp-cron is built in.
I found this blog post addressing the issue, pretty old though:
https://blog.maartenballiauw.be/post/2011/05/04/wordpress-auto-sign-on-with-iis7-and-a-plugin.htmlThis might actually be a IIS problem if I understand correctly.
Best Regards
- This reply was modified 7 years, 8 months ago by fashioncoree.
Forum: Plugins
In reply to: [Post Status Notifications] Changing the email templates?Hi again!
Thank you for reaching back to me.
The issue here is that the email is being sent with some default lines that I cannot seem to change myself, unless I’m missing something?Author:
Title of post:Edit the post:
Preview it:Is all lines being added automatically without me setting it up under settings.
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Automatic BackupHi again!
I did add the cron job manually by using the hook aiowps_daily_cron_event, and it has worked since. ??
Thanks for your help!
Best Regards
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Automatic BackupHi again!
I might have found the issue here, I installed WP Crontrol to see if the Cron is actually running correctly, it seems to work as intended.
Though I can see that no cron job for WP Security is being added to the cron job list.I can add it manually to test but I don’t know what action to run?
Best Regards
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Automatic BackupHi again!
I’ve been debugging for several hours without any result, no lines even remotely connected to WP Security.
I did set the backup interval to ones every hour, nothing.
Will try another backup solution to see if it’s plugin or wordpress setup related.Best Regards
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Automatic BackupThanks, I will keep checking the log and reply here as soon as possible.