Jason Ryan
Forum Replies Created
-
After further reading, my apologies for the freak out, the change over to using WP Roles instead of Custom UM Roles makes sense, I should’ve read the Changelog more thoroughly.
One question however, there is a “Reset UM Role Meta” on a few different Roles in the Users list in UM, what exactly does that do? Does that remove the Community Roles entirely leaving just the WP Role? I can’t seem to find anything in the Docs about it.
Thanks
Are you kidding me with this?
https://docs.ultimatemember.com/article/1328-new-roles-logic
Why was this taken out? I built an entire app around this feature to allow those who Subscribed to a site to have personal profiles and belong to a Member Directory and now it doesn’t exist??
Ugh, now what do I do? How do I had a custom UM Role to those who have paid for a subscription through RCP? What hooks are available for this so that I can run a check – if User Role is “X”, add UM Community Role “X” to this user too?
This is heartbreaking.
Hello –
I am having a similar problem where upon Logout, it redirects to the Logout page but it is just a blank screen after I had updated from V1 to latest V2. All caches had been cleared and still does it.
Forum: Plugins
In reply to: [Zendesk Support for Wordpress] 2nd Button loads within iframe popupNevermind, I figured it out:
jQuery(function($) { $('.iframe-selector').on('load', function() { $(this).contents().find('iframe').remove(); }); });
Forum: Plugins
In reply to: [Zendesk Support for Wordpress] 2nd Button loads within iframe popupIn addition, I have found within the Developer Docs that you can remove an instance of the web widget using the following:
zE(function() { zE.hide(); });
However, I am having some trouble targeting the Parent iframe and executing that code from within the Parent to remove the Support widget.
Any insight would be appreciated.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] DataTables Range FilteringMake sure you also have “Allow Filtering/Sorting” enabled as well. Check your code and make sure that the .dataTables_wrapper class is being added to the main table as the code above relies on that being there.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] DataTables Range FilteringThis is the best I can do for you as this is the very basic implementation. You will have to read up on how to customize this code to your needs, or hire a developer to accomplish what you are looking for.
You will have to go through this code and replace the variables with your own. e.g. I was sorting an “age” column.
For this, I left the “Use DataTables” option checked so I didn’t need to load it manually, but you can also do that as well depending on your use and what you need.
jQuery.fn.dataTable.ext.search.push(function(settings, data, dataIndex) { var min = parseInt(jQuery('#min').val(), 10); var max = parseInt(jQuery('#max').val(), 10); var age = parseFloat(data[2]) || 0; // column to use for filtering if ((isNaN(min) && isNaN(max)) || (isNaN(min) && age <= max) || (min <= age && isNaN(max)) || (min <= age && age <= max)) { return true; } return false; }); jQuery(document).ready(function($) { var rangeFields = '<table cellspacing="5" cellpadding="5" border="0"><tbody><tr><td>Minimum age:</td><td><input id="min" name="min" type="text"></td></tr><tr><td>Maximum age:</td><td><input id="max" name="max" type="text"></td></tr></tbody></table>'; var table = $('.tablepress').DataTable(); $('.dataTables_wrapper').prepend(rangeFields); // Event listener to the two range filtering inputs to redraw on input $('#min, #max').keyup(function() { table.draw(false); table.order([ [2, 'asc'] ]) }); });
Good luck!
- This reply was modified 6 years, 3 months ago by Jason Ryan.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] DataTables Range Filtering@sinetro666 –
You can find information about how to accomplish what you are looking for here:
https://datatables.net/examples/plug-ins/range_filtering.html
Then as far as applying that, it all depends on your theme’s setup and capabilities. We had to custom modify some stuff on our end which probably won’t work in your scenario. But you can at least start there.
??
Forum: Plugins
In reply to: [Yoast SEO] Please Remove Indexibility Test from Ryte – False Positives@jerparx –
Sorry for the delayed response, we have been busy. I’ll check on this today on one of our sites as we went through and completely disabled Ryte Integration on all of our sites when this issue came up.
I will let you know shortly.
Being a developer, I personally don’t like front-end builders. However, to stay on top of whats out there I do research everything in order to have an some sort of awareness of other plugins and products available that “may” make it easier for non-developers or non-designers to edit their applications. So far the only two that I have found to somewhat interesting is Beaver Builder and Elementor. But by no means have I ever moved forward with including them in projects nor would I ever suggest that they be a part of core.
That being said, the allure of WordPress has always been the fact that it is a great bare-bones content management system right out of the box that can be completely customized the way you see fit for yourself, or for your clients. Again, this being forced into core is taking away from that bar-bones aspect and adding something I know that myself nor any of my clients would even use. And I will never “enable” it as the default editor because it will just create chaos and we certainly don’t have the resources in house to handle the conflicts with this plugin if they should arise.
We have a really great setup that works perfectly for our clients and it will continue to stay that way. Sorry, but I nor anyone on our team is a fan of this plugin.
Forum: Plugins
In reply to: [Yoast SEO] Please Remove Indexibility Test from Ryte – False PositivesHello –
Checked several sites and the issue still exists.
Forum: Plugins
In reply to: [Yoast SEO] Please Remove Indexibility Test from Ryte – False PositivesDidn’t realize you can disable Ryte integration now in the settings. Guess I just have to do this on 60+ websites now and every site moving forward. ugh.
Forum: Plugins
In reply to: [WPS Hide Login] Weird Redirect to 404Just updated and no change, here is a screenshot of the issue:
https://screencast.com/t/ZOdZJtJplKGt
First hit is a Status Code of 200, then it redirects to “/-/-/-/-/-/-/-/-/-/-/” eventually producing a Status Code 404.
This is also on the latest version of WP: 4.9.7
Thanks
Forum: Plugins
In reply to: [WPS Hide Login] Weird Redirect to 404It was a brand new install with the latest version, although it looks like you just updated this morning so I will have to update and still if it still happens. I will report back.
Thanks
@wfsteve –
Only problem is that it wasn’t in that view, I had already looked, which is why I whitelisted the IP temporarily because she needed to get into the site. I was able to do it before (unblocking) but for some reason it was showing in the blocked list nor in Live Traffic.