Bhavesh Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Does WordPress store page views in database?WordPress does not keep such record like “how much time page is viewed by visitor.” And yes you can achieve it using custom field(meta-field).
Forum: Hacks
In reply to: Change form display based on drop down selectionI think you can achieve this by using jQuery. On the basis of drop-down selection(Change Event) you can show/hide different registration form.
Something like that
<!---Default show first player form--> <div id="player1">Registration Form1 shortcode</div> <div id="player2" style="display:none">Registration Form2 shortcode</div> <div id="player3" style="display:none">Registration Form3 shortcode</div> <div id="player4" style="display:none">Registration Form4 shortcode</div>
When change event occur(drop-down selection) you can show particular Registration form and hide all others.
You can write jQuery event either in footer or in Plugins
Forum: Hacks
In reply to: Hide some fields from profile.phpHello Simone,
I have done this tactic using jQuery in my one of the project.
<?php add_action('admin_head','hide_personal_options'); function hide_personal_options() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $("#email").parent().parent().remove(); // Add id of email or whatever you want to hide }); </script> <?php }
Let me know if this helps you.
Forum: Plugins
In reply to: [Contact Form 7] Success message but no email arrivedI just sorted out issue.Problem was from my end – [subject] tag has been removed from front end but still i was using it in Subject and Message body field.
By replacing [subject] with static word it works fine.
Thank you for kind support.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Internal Server ErrorSorry for delay.
i posted my log file details on [email protected] .
Please help me to out from this problem.Forum: Plugins
In reply to: [NS Cloner - Site Copier] Internal Server Errorthank you Never Settle Member,
Actually i was not aware about that.
I will push my log detail in support.
But thing is that plugin works very well in my local server.
But when test it in development server it throws 500 internal server error.
Also i get email notification about my Site creation.
But when i goto that created site it shows me empty site.
I can’t figured it out what’s going wrong with me.Again thank you very much.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Internal Server ErrorHello Never Settle Member,
I already change maximum execution time to 1000But still it’s shows internal server error.
Log file details:
[Moderated]