diff --git a/wp-config.php b/wp-config.php index df844e0..ab6aec5 100644 --- a/wp-config.php +++ b/wp-config.php @@ -92,7 +92,6 @@ define( 'WP_DEBUG', false ); define( 'SEV_TORT_TELEGRAM_BOT_TOKEN', '8607238298:AAH_dZ-EgzFOpT0LtmYuiy4ifcsvLZxXwPk' ); define( 'SEV_TORT_TELEGRAM_CHAT_ID', '-1003995055932' ); - /* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ diff --git a/wp-content/themes/sevastopol-tort-child/front-page.php b/wp-content/themes/sevastopol-tort-child/front-page.php index cd0df65..9d16e79 100644 --- a/wp-content/themes/sevastopol-tort-child/front-page.php +++ b/wp-content/themes/sevastopol-tort-child/front-page.php @@ -83,7 +83,7 @@ get_header();
Отправьте пример, дату и пожелания по весу. Подскажем начинку, стоимость и ближайший свободный срок.
- 'portfolio' ) ); ?> + 'Оставить заявку', 'page' => 'Портфолио', 'source' => 'Встроенная форма: портфолио' ) ); ?>Укажите дату, повод, примерный вес и пожелания по декору. Если пока нет точной идеи, поможем подобрать варианты.
- 'Получить расчет', 'page' => $page['title'] ) ); ?> + 'Получить расчет', 'page' => $page['title'], 'source' => 'Встроенная форма: страница ' . $page['label'] ) ); ?> diff --git a/wp-content/themes/sevastopol-tort-child/template-parts/lead-form.php b/wp-content/themes/sevastopol-tort-child/template-parts/lead-form.php index a75ddd0..969c3d0 100644 --- a/wp-content/themes/sevastopol-tort-child/template-parts/lead-form.php +++ b/wp-content/themes/sevastopol-tort-child/template-parts/lead-form.php @@ -3,12 +3,16 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } -$form_title = isset( $args['title'] ) ? $args['title'] : 'Оставить заявку'; -$form_page = isset( $args['page'] ) ? $args['page'] : ''; +$form_args = isset( $args ) && is_array( $args ) ? $args : array(); +$form_title = isset( $form_args['title'] ) ? $form_args['title'] : 'Оставить заявку'; +$form_page = isset( $form_args['page'] ) ? $form_args['page'] : ''; +$form_source = isset( $form_args['source'] ) ? $form_args['source'] : 'Встроенная форма'; ?>