Swapnil V. Patil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to install plugin or update wordpressHi @zluja,
This seems like inconsistent file permission on your server.
Your hosting provider can assist you with this. Or maybe the hosting panel has options to reset the file permissions.
I hope my response is helpful to you,
Regards,Forum: Plugins
In reply to: [Login and Logout Redirect] Integration with BuddyBossHey @zoominphoto,
You should see options to set redirections for login and logout, when the plugin is installed and active on the settings page.
Please refer the screenshot herePlease feel free to write back to us, if you have any further queries.
Regards,
- This reply was modified 3 years, 8 months ago by Swapnil V. Patil.
Forum: Reviews
In reply to: [Login and Logout Redirect] Not working on 5.3.2Between I checked using the plugin with
Understrap
, and it does not seem to be the issue. The redirections work perfectly fine for me.Are you sure you have added complete URL’s in the Settings -> General -> Login redirect and/OR logout redirect sections? Relative URL’s in some cases might not work well.
Forum: Reviews
In reply to: [Login and Logout Redirect] Not working on 5.3.2Hey @customwebkzn,
Thank you very much for your reply. I understand the plugins you are using the updated and necessary, the deactivation is just for debugging purposes. So we understand which particular plugin it conflicts with. So we know what needs to be fixed.
It becomes increasingly difficult to determine the exact issue until we debug it well.
Forum: Reviews
In reply to: [Login and Logout Redirect] Not working on 5.3.2Hey @customwebkzn,
Did you try deactivating other plugins and reverting to the default theme? I have tested it with 5.3.2 and it works fine for me. If there are any specific theme/plugins this is conflicting with for you, please let me know.
It would be great if you could please help me with more details?
Regards,
This is a simple plugin all allows you to list all the entries from the gravity form before submission. It does not edit/ modify anything.
Regards,
Hey @nisha08,
Since currently, this plugins works on the fact that gravity form allows us to list all the entries using
{all_fields}
This essentially means that it will always show all the fields. Including the hidden once.
Of course, it would work, if there is another variable we can use, which allows us to filter hidden fields. I am not aware if there is any such field as of now.
I hope this answers your question,
Forum: Plugins
In reply to: [Login and Logout Redirect] to be compatible with WP Fastest CacheHey @emrevona, ??
Thank you for reporting this. ??
By renaming the login URL, do you mean changing the redirect URL on the login from the
Settings -> General
.I tried using both the plugin together on my dev env. and could not recreate the issue you mentioned. Maybe because I am made no config changes on the WP Fastest Cache option except for enabling the cache system. What is the combination you are using?
Do you have any guesses on why that would be happening?
Feel free to hit me an email or a reply here; would love to resolve the conflict between both the plugins, if there is one. ??
Regards,
- This reply was modified 5 years, 8 months ago by Swapnil V. Patil. Reason: typo
Forum: Plugins
In reply to: [Login and Logout Redirect] Log out From Specific PageHi @ cognisant_2000,
This has been a long pending ambition for me to update the plugin to work with user roles too. It currently does not check for these.
I didn’t test but you can use user roles with if else statement:
function redirect_after_logout() { if (!current_user_can('manage_options')) { $url = '/'; } else { $url = 'member-login?logged_out=true'; } $redirect_url = home_url( $url ); wp_safe_redirect( $redirect_url ); exit; } add_action( 'wp_logout', array( $this, 'redirect_after_logout' ) );
Here you can know more about the user capabilities and roles:
https://codex.www.ads-software.com/Roles_and_Capabilities
You will have to figure out which capability or role works as a good parameter for you to check. There is no role pre-defined as ‘User’ in WordPress unless you have added a custom role.Here is a rough logic of how this can work:
function my_login_redirect( $url, $request, $user ){ if( $user && is_object( $user ) && is_a( $user, 'WP_User' ) ) { if( $user->has_cap( 'administrator') or $user->has_cap( 'author')) { $url = admin_url(); } else { $url = home_url('/custom-page /'); } } return $url; } add_filter('login_redirect', 'my_login_redirect', 10, 3 );
I hope you find this helpful, in case you have any further question, please feel free to reply to this string.
P.S.: You can use either of the code snippets, it should go into your theme’s ‘functions.php’ file, Or as a must have plugin.
Regards,
Forum: Plugins
In reply to: [Gravity Pre-submission Confirmation] Undefined index errorsHi,
I have updated the plugin. Its tested up to the latest WordPress 4.9.8. Please let me know if this fixes your issues.
Thanks,
Forum: Fixing WordPress
In reply to: Reset Image SizesHello @kok123,
You can set the image sizes from the Media Settings Screen. Please see this URL for more details:
https://codex.www.ads-software.com/Settings_Media_ScreenI hope this helps, in case if you need any further assistance, please feel free to reply to this thread,
Regards,
Forum: Fixing WordPress
In reply to: Business Listing and Reservation per hourHi @paulgrant07,
This plugin might work for you.
https://www.ads-software.com/plugins/appointment-booking-calendar/
It allows online booking, with date and time.For Listing you might need a different plugin, considering these are two different functionalities. Having a custom post type for listing can also work, depending on your needs, you might consider having custom templates for those post type.
You can try these plugins to see if they fit your needs:
https://www.ads-software.com/plugins/business-directory-plugin/
https://www.ads-software.com/plugins/geodirectory/If they don’t exactly do what you are expecting, consider using a new custom post type. To know more about custom post types please see this:
https://codex.www.ads-software.com/Post_Types
Here is a cool plugin to build your own custom post type, right from the WordPress Dashboard.
https://www.ads-software.com/plugins/custom-post-type-ui/Also, for search, most plugins will allow you to search custom post types, read their documentation to find out more. Search is a vast thing, there are several ways, and methods you can make this work, the simplest one I can think of is using a plugin like:
https://www.ads-software.com/plugins/eps-super-search/
https://www.ads-software.com/plugins/advanced-custom-post-search/
If you wish to build a search for yourself, here is a good walkthrough:
https://webdevstudios.com/2015/09/01/search-everything-within-custom-post-types/I hope this helps, some of these things might need a developer to get things done, but it depends. In case you have any further question feel free to reply to this thread.
Regards,
Forum: Fixing WordPress
In reply to: Looking for a wordpress workflow pluginHi @mtrew2015,
Did you try conditional logic in Gravity Forms? Other form plugins like Ninja Forms, FormidablePro, Caldera Forms seem to have similar functionality too.
In case you are looking for a free tool to work with; This plugin here https://www.ads-software.com/plugins/cf7-conditional-fields/ looks promising and works with Contact Form 7.
Here you can find a comparison of the above options:
https://wpmayor.com/comparison-conditional-logic-wordpress-form-builders/
https://chrislema.com/comparing-conditional-logic-wordpress-forms/I hope this helps, in case you have any further question, please feel free to reply to this thread.
Forum: Developing with WordPress
In reply to: Hide pages from edit menu in AdminHi,
Have you considered using any plugin for this purpose. adminimize and Admin menu editor might just come in handly.
https://www.ads-software.com/plugins/adminimize/
https://www.ads-software.com/plugins/admin-menu-editor/If for some reason you need to code it yourself, here is a great tutorial that might help:
https://wpmayor.com/how-to-remove-menu-items-in-admin-depending-on-user-role/–Cheers,
- This reply was modified 6 years, 10 months ago by Swapnil V. Patil.
Forum: Plugins
In reply to: [WP Product Review Lite] Unwanted colour in review boxHey Rickard4 ,
Firstly, thanks a lot for being a part of our community, we do appreciate it a lot!
I will be happy to assist you. Could you please give me more details about the issue encountered and also a link to your website to better see what is going on.
Thanks a lot for your patience and understanding.