Let’s add to the order form the url of the page from the order came
-
RU:
Давайте добавим в форму заказа урл страницы, с которой поступил заказЗдраствуйте!
На сайте будет несколько товаров или услуг и соответственно несколько лендингов.
Лендинги для товаров и услуг я буду делать из обычных страниц WordPress, без использования плагина магазина. Потому что WooCommerce имеет много лишних сложных настроек.
Я хочу использовать плагин обратного звонка для оформления заказа.
Соответственно в админке в оформленном заказе надо вывести урл страницы, с которой поступил заказ, чтобы понимать какой товар хотят заказать.Добавить урл страницы в форму заказа не сложно.
<input type=”hidden” name=”current_url” value=”<?php echo get_permalink(); ?>”>
или
<input type=”hidden” name=”current_url” value=”<?php echo $_SERVER[“REQUEST_URI”]; ?>”>и желательно (для удобства администратора) чтобы в оформленом заказеотображались также название страницы и цену товара или услуги.
Цену можно установить и вывести с помощью плагина advanced-custom-fields
https://ru.www.ads-software.com/plugins/advanced-custom-fields/
https://ru.www.ads-software.com/plugins/acf-extended/Планируете ли вы сделать что-то подобное? Хотелось бы.
Если я это сделаю, включите ли вы мои доработки в код своего плагина?EN:
Let’s add to the order form the url of the page from the order cameHello!
The site will have several products or services and, accordingly, several landing pages.
I will make landing pages for goods and services from regular WordPress pages, without using a store plugin. Because WooCommerce has a lot of unnecessary complex settings.
I want to use a callback plugin for checkout.
Accordingly, in the admin panel in the completed order, you need to display the URL of the page from which the order was received, in order to understand what product they want to order.It is not difficult to add page url to the order form.
<input type=”hidden” name=”current_url” value=”<?php echo get_permalink(); ?>”>
or
<input type=”hidden” name=”current_url” value=”<?php echo $_SERVER[“REQUEST_URI”]; ?>”>and it is desirable (for the convenience of the administrator) that the page name and the price of the product or service are also displayed in the order.
The price can be set and displayed using the advanced-custom-fields plugin
https://ru.www.ads-software.com/plugins/advanced-custom-fields/
https://ru.www.ads-software.com/plugins/acf-extended/Are you planning to do something like this? I would like to.
If I do, will you include my customizations in your plugin code?
- The topic ‘Let’s add to the order form the url of the page from the order came’ is closed to new replies.