Tung Du
Forum Replies Created
-
Forum: Plugins
In reply to: [Restricted Site Access] IP Adress is not acceptedHi @lettobi,
Can you give me the debug info under Tools > Site Health > Info and steps to reproduce your problem? I tested with the latest version of RSA and couldn’t reproduce your issue.
Forum: Plugins
In reply to: [Safe Redirect Manager] Adding parameters to redirect (eg utm)Hi @nfrctennant, I tested on my local installation and the redirect worked great, all query parameters remained.
Can you please test in a fresh installation or with other plugins deactivated and default theme to see if there is any conflict with other theme/plugin?
Forum: Plugins
In reply to: [Simple Local Avatars] How can I change user’s avatar via Rest API?Hi @simaru30,
You can make a get request to retrieve a user, the simple local avatar data is included in the response. For example with 123 as the user ID.
GET https://example.com/wp-json/wp/v2/users/123
Forum: Plugins
In reply to: [Simple Page Ordering] Can’t move pages only spinsHi @rsnowbeck,
Does it work without the category filter? I mean can you order pages on this page: https://www.wintellect.com/wp-admin/edit.php?post_type=wdswc-course
Did you notice any console error in the browser or any warning/error in debug.log file?
Also if you can provide us the site health info, it’d be easier for us to debug your issue. You can copy the information on Tools > Site Health > Info (tab).
Forum: Plugins
In reply to: [Restricted Site Access] “forgotten password” email addressHi @katepirie,
You can change the default name and email address by using this snippet in functions.php: https://wordpress.stackexchange.com/a/126731/83304
There is also a plugin to do that if you prefer non-coding solution: https://www.ads-software.com/plugins/wp-change-default-from-email/
About your second question, RSA doesn’t change or filter the content of reset password email, you should check to see if any of your active plugins or your theme is doing that.
Hope that helps!
Those lines belong to two functions that use max redirects data in the logic, one gets redirects from the database, and the other checks if the total redirects reach the max amount or not.
And yes for your second question, the snippet I posted above should be placed in functions.php of the active theme.
Forum: Plugins
In reply to: [Simple Page Ordering] Version 2.2.1 on WP 3.9.1 ads parent page?!?Hi @lokz,
For example, you’re dragging page A, you have page C is the child page of page B.
If you drag page A above page C, page A will become the child of B, then A’s URL will change to include the slug of page B.Hope that helps!
Forum: Plugins
In reply to: [Safe Redirect Manager] Slash at the end of urlHi @wpuser2000, can you please check the permalink setting to see if it has a slash at the end of the URL? Safe Redirect Manager (SRM) will redirect only matched URLs so it won’t do anything with ‘/sample-page’ if it isn’t an active rule.
Hi @tea23hah,
They’re the same filter. You can use that filter to create more than 250 redirect rules. For example:
add_filter( 'srm_max_redirects', function() { return 400; } );
Forum: Plugins
In reply to: [Restricted Site Access] Additional Page access to non-logged-inHi @scottgx, there are two similar questions to yours are answered, you can apply a similar approach to whitelist your pages.
https://www.ads-software.com/support/topic/contact-form-7-not-working-57/
https://www.ads-software.com/support/topic/exclude-registration/Forum: Plugins
In reply to: [Simple Local Avatars] get_avatar_url not working with thsi pluginHi @yydevelopment, thanks for the report. We have the feature you mentioned in the review queue already: https://github.com/10up/simple-local-avatars/pull/40
Your issue will be fixed in the next release.
Hi @dlovas1, can you try to roll back Simple Page Ordering to the last version that worked on your site (2.3.2)? That would give us more info to work on your issue.
You can use this plugin to make the rollback process faster https://vi.www.ads-software.com/plugins/wp-rollback/.
@dlovas1 thanks for the debug information. The memory limit looks good so it may not the resource problem. We still can’t reproduce your issue in our end but we will keep an eye on this issue. If you have any insight or updates, feel free to reply to this topic.
Forum: Plugins
In reply to: [Simple Local Avatars] Form output to front end@biqu3 Maybe this answer might help: https://wordpress.stackexchange.com/questions/202021/front-end-post-and-upload-file-image-for-users-without-plugin
Forum: Plugins
In reply to: [Simple Page Ordering] Exclude certain custom post type@dzulfriday You can use
in_array
to check for multiple post types. For example:... if ( in_array( $post_type, [ 'post_type_1', 'post_type_2' ], true ) ) { ...