Greg Marshall
Forum Replies Created
-
Sounds good thanks!
Hi Tim
The SMTP used is cPanel webmail hosted on the same server. Nothing special.
We are viewing the emails from a gmail account, we can click “show original headers” and in there is where it references the plugin
Forum: Plugins
In reply to: [Nextend Social Login and Register] List of social login usersYou’re welcome @nims
It’s not something I’ve done but I don’t see why you (or someone else) couldnt write up a plugin to add something to that area based on the information returned in the query. I wouldn’t really know the best place to start though unfortunately
Forum: Plugins
In reply to: [Nextend Social Login and Register] List of social login usersIf you dont mind adding some code to your functions file or as a plugin use this line of code, I decided I only wanted 3 columns – ID Type and Link date
$social_links = $wpdb->get_results("SELECT ID, type, link_date FROM wp_social_users");if you want all the columns do this:
$social_links = $wpdb->get_results("SELECT * FROM wp_social_users");my WP table prefix in this case is ‘wp_’ make sure you update to yours if different.
This will give you an array, you can check the results simply by using print_r($social_links); this will be ugly though. Anyway you can do something with the array. I’m creating a table in a custom widget on the wp admin dashboard
Hello Kevin, that worked perfectly. I modified it a little bit and added an if statement to check the users role first.
Thank you very much this seems to be a perfect solution for now 🙂
Forum: Plugins
In reply to: [Admin Menu Editor] redirect restricted items to 404?Yep I’m happy with this, thank you very much ! 🙂
Forum: Plugins
In reply to: [Admin Menu Editor] redirect restricted items to 404?Ok so I think it’s working right, based off this codex reference – https://developer.wordpress.org/reference/hooks/admin_page_access_denied/
I came up with this…
function awol_admin_page_access_denied() { // trigger 404, custom text or redirect etc here awol_trigger_404(); // just a custom function I use to produce a 404 page die(); // force script to exit here and stops default plugin response }; // add the action add_action( 'admin_page_access_denied', 'awol_admin_page_access_denied' );Thanks for helping me in the right direction, hopefully this code will help someone else 🙂
Forum: Plugins
In reply to: [Admin Menu Editor] redirect restricted items to 404?Thanks for the quick reply 🙂
I’ll give it a go and see if I can figure that out and I’ll post back with my findings
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Has this plugin been abandoned?I just made a post on this, I was in touch with the new owners who assured me they are not abandoning it
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] I NEED MY REFUNDIf you made a purchase you should contact them via their website. I believe that is the best way to get a reply regarding a purchase
@wpdatatables Can you provide me an email address to send a private message? Your support site seems to want to forward me to 3rd party premium services. I just want support figuring out why the plugin will not read my data.
Thanks
Hello,
I now have a proper 2d array passed through ‘Serialize()’ but I am still having the same issue.
I will be glad to provide some code example of what I am doing if it helps to work out the issue.
Thank you
hello thank you for the reply,
I thought it looked right but looking back I think its actually a 3 level array rather than 2… Do you have a private address I can send the result or some code to? I shouldn’t post the live results here
If it helps I am using this with Caldera forms to replace their front end entry viewer, I have used their functions to retrieve the data submitted with the form, I believe the actual entry data itself is the 3rd array called ‘formdata’
Thanks for the quick reply
- This reply was modified 5 years, 6 months ago by Greg Marshall.
Forum: Fixing WordPress
In reply to: Forms plugin suggestions (specific features)Hello thank you very much for the reply and suggestion. I should probably have mentioned I did look at gravity but it looked like it would require the mid or top tier subscription plus a number of 3rd party plugins resulting in the price likely getting upto several hundreds…
Ideally would prefer something more affordable if it exists !
But still thanks for taking the time 🙂
Sorry for the delay I have just connected a different site on the same server and a another site on a completely different server without having to disable any rules.
It appears whatever updates you’ve done have fixed the issue as described above
Thanks !
- This reply was modified 6 years, 2 months ago by Greg Marshall.