Jack Dunstan
Forum Replies Created
-
Forum: Reviews
In reply to: [Bulk Images to Posts] Works. Nice.Great, thanks.
Forum: Plugins
In reply to: [Post Reading Time] Widget Class Constructor Changes for WP 4.3Excellent. Thanks.
Forum: Plugins
In reply to: [WP API Menus] Doesn't seem to be workingHi, I’m getting this error for v1.2
{ "ID": 80, "name": "Top Menu", "slug": "top-menu", "description": "", "count": 15, "items": [ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "meta": { "links": { "collection": "https://localhost/wordpress/wp-json/menus/", "self": "https://localhost/wordpress/wp-json/menus/80" } } }
Other API routes are working ok.
Forum: Plugins
In reply to: [WP API Menus] children hookHi,
Thanks for the insight. I’ll do some reading on filters and get to work.
Forum: Plugins
In reply to: [JSON API] Get menuHere’s another
Forum: Plugins
In reply to: [WP Frontend Profile] No Multisite support?Many thanks. I am testing as an administrator. The theme is based on Roots.io. I’ll test as a different user and see what happens.
Forum: Plugins
In reply to: [WP Frontend Profile] No Multisite support?Ok, I have done this. Still no form. I have inserted
<?php echo wpfep_show_profile(); ?>
and/or<?php wpfep_show_profile(); ?>
Any further guidance is appreciated.Forum: Plugins
In reply to: [WP Frontend Profile] No Multisite support?No problem, Installed from the WordPress repository, activated on multisite, no settings or listed as a plugin in the subsites. I have WP_DEBUG on. I hope that helps.
Forum: Plugins
In reply to: [Export Users to CSV] Did not export the entire datasetI experienced the same limitation. I received a fifth of the 1500 users in the database.
Forum: Plugins
In reply to: [Groups] Login redirect to referring page with WoocommerceI’m keen to know how this may be implemented also. ‘Groups 404 Redirect’ does not provide this functionality.
Forum: Plugins
In reply to: [Groups] Using groups at theme levelWorked it out.
This is how it can be done.
<?php $user_id = get_current_user_id(); $group = Groups_Group::read_by_name( 'Your Group Name' ); if ( Groups_User_Group::read( $user_id, $group->group_id ) ) { get_template_part('some-php-file-in-your-theme-directory'); } else { get_template_part('another-php-file-in-your-theme-directory'); } ?>
Forum: Plugins
In reply to: [WP RSS Multi Importer] BETA TESTERS NEEDEDThanks. Will let you know if I run into bugs.
Forum: Plugins
In reply to: [WP RSS Multi Importer] BETA TESTERS NEEDEDI’m keen if this permits custom post types, which you remarked would be available in the next version.
Hi, Came across this problem just now, followed this to solve give me an answer.
https://www.htaccesstools.com/articles/full-path-to-file-using-php/Sorted!