Thread Starter
hilits
(@hilits)
also in my local everything works perfect. at live – contact form corrupted and also Facebook likes at footer vanished (jatpack features)…i don’t know why. i thing the problem is in the template…maybe…
Thread Starter
hilits
(@hilits)
i have succeed to login to admin- but in the theme option i get this :
Warning: require_once(/home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/theme_options./pages/home_page_settings.php): failed to open stream: No such file or directory in /home/bizuappn/public_html/newsite/wp-includes/template.php on line 501 Fatal error: require_once(): Failed opening required ‘/home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/theme_options./pages/home_page_settings.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/bizuappn/public_html/newsite/wp-includes/template.php on line 501
so i can not update anything.
when i look at error massage where the path to home_page_settings.php- i see “.” after theme_options….
maybe this is the problem ?
when i want to activate jetpack plugin i get this:
Warning: Cannot modify header information – headers already sent by (output started at /home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/template-tag.php:54) in /home/bizuappn/public_html/newsite/wp-includes/pluggable.php on line 1179 Warning: Cannot modify header information – headers already sent by (output started at /home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/template-tag.php:54) in /home/bizuappn/public_html/newsite/wp-includes/pluggable.php on line 1179
thanks Hilit
Hi
For this
Kindly Replace the appointment >> functions >> template-tag.php and replace all the code with the code mentioned in the link.
Thanks.
Thread Starter
hilits
(@hilits)
thank you . i have replaced template-tag.php content with the code you send me buy i still get the same errors 🙁
option panel page open with same error :
Warning: require_once(/home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/theme_options./pages/home_page_settings.php): failed to open stream: No such file or directory in /home/bizuappn/public_html/newsite/wp-includes/template.php on line 501 Fatal error: require_once(): Failed opening required ‘/home/bizuappn/public_html/newsite/wp-content/themes/appointment/functions/theme_options./pages/home_page_settings.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/bizuappn/public_html/newsite/wp-includes/template.php on line 501
and also i got white page again with same error and needed to rename theme folder to get in to the admin..
can you help with it ?
thanks
Hilit
Thread Starter
hilits
(@hilits)
i have no problem to give you user and pass to the admin if you want to see it yourself.
Thread Starter
hilits
(@hilits)
pay attention to this = > …../theme_options./ should dot after the folder name should be there ?
Thread Starter
hilits
(@hilits)
OK….sorry for all emails…i found my answer by Google it…
like i suspected..it was the dot after theme_options… 🙂
see link:
https://themes.trac.ww.wp.xz.cn/ticket/23199
.
.
.
I still get follofing error on theme options page:
Warning: require_once(…/elitepress/functions/theme_options./pages/banner.php): failed to open stream: No such file or directory in …/wp-includes/template.php on line 501
Fatal error: require_once(): Failed opening required ‘…/elitepress/functions/theme_options./pages/banner.php’ (include_path=’.:…’) in …/wp-includes/template.php on line 501
This is because of . present in file path. When I change lines 47 to 64 in elitepress_option_pannel.php to following, everything works fine.
<?php load_template( dirname( __FILE__ ) . ‘/pages/banner.php’ ); ?>
<!–most 1 tabs home_page_settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_page_settings.php’ ); ?>
<!–most 2 tabs home_page_settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_slider_settings.php’ ); ?>
<!–most 22 tabs Social_media_settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_page_header_setting.php’ ); ?>
<!–most home page Project Settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_header_top_call_out_settings.php’ ); ?>
<!–most 5 tabs footer_call_out_settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_service_settings.php’ ); ?>
<!–most home page Project Settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/home_project_portfolio_settings.php’ ); ?>
<!–most 23 tabs footer_copyright_settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/footer_copyright_settings.php’ ); ?>
<!–Contact page setting–>
<!–most 8 tabs footer social media Settings –>
<?php load_template( dirname( __FILE__ ) . ‘/pages/UpgradeToPro.php’ ); ?>