Bhavesh Patel
Forum Replies Created
-
Forum: Hacks
In reply to: How to create drop down options that dynamically change if a user selects onesirflex10 –
As per my understanding you could achieve this by two way.
1. When you save your form record(for example fantasy football league) then create a flag in database.After successful submission remove that item by fetching only remaining item(team).2. If you are submitting a form using AJAX then you can hide item(team) using jQuery tactic.(means hide select option on change event)
If above recommendations are not pertinent,feel free to neglect it.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Buttons are not showing on dashboardHello David,
I have resolved that problem. Actually it was conflicted by my own plugin.
Thanks for your support.Forum: Hacks
In reply to: Making all categories appear in edit post pageTo alter height on edit Page
.wp-admin #category-all { min-height: 500px; max-height: 400px; }
To alter height on quick Edit mode (All post page)
.wp-admin ul.cat-checklist { height: 24em; }
Add above CSS portion to your plugin.
Forum: Hacks
In reply to: Making all categories appear in edit post pageWordPress always shows category in alphabetical order on edit post page. But it shows in two different way.
group of Checked/Unchecked category.
1. Checked category – Alphabetically
2. Unchecked category – AlphabeticallyIf the above is not pertinent, feel free to ignore it. And do let me know more about your problem.
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailsPlease read these
1.It may occurred due to other plugin.(test by deactivating other plugin)
2.Reference link:
https://contactform7.com/faq/after-submitting-the-form-i-get-an-error-message
https://contactform7.com/faq/i-get-an-error-message-with-a-red-border-so-how-can-i-solve-this/3.Contact your host.
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailsPlease provide me a link to your form page so that I would be able to look into the problem and assist you.
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailsIf WP Mail SMTP Plugin’s test email is working than your email functionality is working fine.My personal suggestion is create new contact form (Don’t change anything) and place its shortcode in new test page.check that new test page form.
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailsIf the above is not pertinent, feel free to ignore it. And do let me know more about your problem.
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailsCheck below steps, It may help you to resolve your problem.
Are you getting email when creating new user,
=>If no you need to configure SMTP setting
=>If yes than you have made mistake in Contact form settings.Mostly these are the root cause.
Forum: Hacks
In reply to: Change Link for: "Edit Profile" on Top- BarHi Gnewmann
I don’t have enough knowledge about “Ultimate Member” plugin.
You can manage your code from two location1. In your themes’ functions.php file
(Drawback:In case if you change your theme then your code(in functions.php) will not work)
2.Create Your own plugin and place your code
(Its best solution)Code to create your own plugin
<?php /* Plugin Name: Your plugin name Plugin URI: https://www.YourWebsiteURL.net Description: Author: Version: */ /* This below code you may put in your functions file also*/ add_filter( 'edit_profile_url', 'modify_profile_url_wpse_94075', 10, 3 ); function modify_profile_url_wpse_94075( $url, $user_id, $scheme ){ //It will be like https://www.abc.com/your-custom-template-link $url = site_url( '/your-custom-template-link' ); return $url; }?>
Let me know if you need more help
Forum: Hacks
In reply to: Removing plugin updateI think you can stop update notification by placing below code in either functions.php or one of your plugin
function your_function_name( $value ) { //Your plugin main file name unset( $value->response['plugin_folder/fileName.php'] ); return $value; } add_filter( 'site_transient_update_plugins', 'your_function_name' );
Forum: Hacks
In reply to: update_post_meta() and wp_mail() when adding a new psotIf you have not found your solution then i would like to give you more suggestion.
Here you can use several action (As per your requirement)And you can use like this
add_action( 'save_post', $this, 'your_function_name' ); function your_function_name($post_id) { /*Your Code here*/ }
Forum: Plugins
In reply to: [Easy Portfolio] Tutorial how to use this plugin?Hi Tushar,
I am newbie to wordpress.
I want to know that have you created any tutorial video for your plugin.It’ll be easy if you have any reference or demo.
Please do let me know if you have information regarding the same.Forum: Hacks
In reply to: How to create drop down options that dynamically change if a user selects oneHi sirflex10,
Actually your said question is vague for me and i didn’t get exactly.
Please elaborate it so i can help you.Forum: Hacks
In reply to: Hide some fields from profile.phpPlease mark it resolved.