wpexpert.zahid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warning: Cannot modify header information – headers already sent byWhat were the setting Dioniso ?
Here you can see complete file
https://eval.in/480223It was working perfectly
Can you please check the screen shot of the header.php https://prntscr.com/99zxpzI uploaded fresh WordPress and Now I am facing this problem Parse error: syntax error, unexpected end of file in wp-content/themes/themename/header.php on line 187
I also add ?> at the end of the code but it is not working
I am also facing same error I tried to add ?> at the end of the code but it is not working for me
I hide last two lines and Now the error is Fatal error: Call to undefined function wp() in wp-blog-header.php on line 14
100% from Scratch. it is the theme
Can you please tell me how to solve the Fatal error problem ?Thanks
Problem was that site showing this error Fatal error: Call to undefined function add_filter() in wp-config.php on line 87
Here is the screen shot of line 87 https://prntscr.com/99xt7z
When I hide them I am able to see admin panel but then site showing home page blank.May be this will help to solve the problem.
Thanks Matthew,
I did not make someone make it for me
Can I send you theme files may be you can get idea through that ?Its a custom theme Matthew
Thanks
Thanks both of you
Thanks Matthew.
There is a problem in the theme how can I solve that problem and how I know that why theme is creating problem.Forum: Plugins
In reply to: [WP Job Manager] Want to Hide Some Field on Submit Form (Front End)I love you Mike.
Thanks a lot for you Kind Words and I am sorry If I hurt you.
Thanks
Forum: Plugins
In reply to: [WP Job Manager] Want to Hide Some Field on Submit Form (Front End)add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' ); function custom_submit_job_form_fields( $fields ) { unset( $fields['job']['company_video'] ); unset( $fields['job']['company_website'] ); return $fields; }
Please take a look at the code which I am using in my Function.php file
Its for hiding website and video fields on frontend form