Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bug menu update 4.9 of administrationIF you realize bug in wordpress please add your issue here for better solutions.
Please describe your issue in full details so we can review & update solutions.
- This reply was modified 8 years, 5 months ago by Ravikumar Patel.
Forum: Fixing WordPress
In reply to: Plugins deletingDeleting Plugin : You can remove code from your server & disabled your plugin activity.
Deactivated plugin : Code exits on server but not access on sitewide.
Forum: Fixing WordPress
In reply to: /blog/ slug before categoryIf Permalink provide this functionality why not used this one ?
any issue with another custom post types url ?Forum: Fixing WordPress
In reply to: WordPress login error@cybermama,
First of you have not define which wordpress version used.
Any plugin or customized code applied for login functionality or used WordPress default login form.Forum: Fixing WordPress
In reply to: How to change 127.0.0.1 (local host) into a personal domain@collin2,
Export your mysql database using this plugin :WP Migrate DB.
Forum: Fixing WordPress
In reply to: Change the header only on index@vahn00,
1) First copy header.php and rename header-front.php.2) front-page.php (using this file access site homepage code) – copy page.php and rename with this name.
3) edit – front-page.php and replace get_header() to get_header(‘front’)
- This reply was modified 8 years, 10 months ago by Ravikumar Patel.
Forum: Fixing WordPress
In reply to: Site cannot be accessed@homemadejam,
Please check your file code which you have added or edited. Remove extra space value on top & bottom of file.As per your site run time display one space value.
@icegram, Today i have managed code with your latest plugin.
How to Contribute to your plugin?
See all screen here.
- This reply was modified 8 years, 11 months ago by Ravikumar Patel.
@lathas, Add this script on your theme js.
setTimeout(function() { jQuery('#es_msg_pg').fadeOut('fast'); }, 10000);Forum: Fixing WordPress
In reply to: Emails not sending from contact formfunction custom_set_content_type(){ return "text/html"; } add_filter( 'wp_mail_content_type','custom_set_content_type' ); function custom_wp_mail_from_name($name) { return 'Add your site name'; } add_filter('wp_mail_from_name','custom_wp_mail_from_name'); function custom_wp_mail_from($content_type) { return 'test@domain.com'; } add_filter('wp_mail_from','custom_wp_mail_from');@chrphu, Use this 3 function for set mail format,From name, From email data value.
Forum: Fixing WordPress
In reply to: Multiple Under Construction Pages@zanatos, Just redirect homepage to construction page: Wp_redirect
wp_redirect('{add your construction url}', 301 ); or wp_redirect(get_permalink({add id of your construction or any page}));Forum: Developing with WordPress
In reply to: Issues with PHP codingIn your code so many issue regarding php syntax.
try this one updated code i have fix php issue. (but without post & event i can;t test more).
IF any issue occurred then reply.
Forum: Fixing WordPress
In reply to: WordPress plugin to follow Facebook personal account@elsoar, Try with create short code with framecode.
function custom_fbfollow() { return "{add your iframe code}"; } add_shortcode( 'fbfollow', 'custom_fbfollow' );Add [fbfollow] in popup plugin content.
Forum: Fixing WordPress
In reply to: Custom upload path breaks thumbnails@theko, yes, May be possible issue related plugin conflict or theme issue. Please deactivate plugin one by one for find this issue which one conflict.
And try to use with default theme. (do in demo site).
Forum: Developing with WordPress
In reply to: Issues with PHP coding@mirellalpz3, Please post your code as per forum rules. Or please define demo url or screenshort which issue you have facing.