astral4ik
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Calendar Made Simple – Pie Calendar] elementor proHello
I had one more question before purchasing the PRO version.
I looked at the instructions and video tutorials, and saw that i can add an entry to the calendar only as a recurring event. What if my event repeats randomly – for example, on August 1, August 3 and August 15. Is it possible to specify three different dates in a post entry?Forum: Plugins
In reply to: [Events Calendar Made Simple – Pie Calendar] elementor progreat.
i will buy pro version.
Plugin what causes error was TEXT REPLACE – where was rule to change “|” symbol
Forum: Plugins
In reply to: [Events Calendar Made Simple – Pie Calendar] elementor proSo
I found the plugin what made changes in the code
i can see now calendar
But warnings messages are still there
Warning: Undefined array key 0 in /data01/virt93769/domeenid/www.travelhit.ee/htdocs/ww/wp-content/plugins/pie-calendar/includes/shortcode.php on line 57
Warning: Undefined array key 0 in?/data01/virt93769/domeenid/www.travelhit.ee/htdocs/ww/wp-content/plugins/pie-calendar/includes/shortcode.php?on line?68
wp_debug is disabled
second question, how can i put two or three dates to one post?
Forum: Plugins
In reply to: [Events Calendar Made Simple – Pie Calendar] elementor proSo
Finding issues.All plugins are switch off, exept pie calendar
I can see warnings
Warning: Undefined array key 0 in /data01/virt93769/domeenid/www.travelhit.ee/htdocs/ww/wp-content/plugins/pie-calendar/includes/shortcode.php on line 57
Warning: Undefined array key 0 in /data01/virt93769/domeenid/www.travelhit.ee/htdocs/ww/wp-content/plugins/pie-calendar/includes/shortcode.php on line 68
but CALENDER works and shows all necessary data
i start to switch on all plugins, and when elementor pro is activated, calender stop working. More precisely, I don’t see the calendar itself with numbers and days, but I see a field for switching the type of calendar – month – week, etc.
you can see it here
https://travelhit.ee/testcalendar/
- This reply was modified 4 months, 2 weeks ago by astral4ik.
YES! Thanks a lot!
So it doesnt work for me
I need DOCUMENT NOTES to packing slips. Order notes (what customers write onto order) works well and shows. Document notes are what the administrator writes in the order. I need to packing slips shows it for our paching workers.
so i modified your snippet
add_action( ‘wpo_wcpdf_after_customer_notes’, ‘wpo_wcpdf_DOCUMENT_notes’, 10, 2 );
function wpo_wcpdf_DOCUMENT_notes ( $template_type, $order ) {
if ( $template_type == ‘packing-slip’ ) {
$document = wcpdf_get_document( $template_type, $order );
$document->DOCUMENT_notes();
}
}but it doesnt work for me
It shows in INVOICE, but i need it ti shows in the PACKING SLIPS too
Forum: Plugins
In reply to: [YayMail - WooCommerce Email Customizer] purchase_note DUPLACATES STRINGSand one more question. Why item description in emails begin with # ?????
OR im just paranoic and may safely use code instead this
$shortcode['[yaymail_billing_email]'] = '<a>get_billing_email() ) . '"> ' . esc_url( $order->get_billing_email() ) . '</a>';
like this
$shortcode['[yaymail_billing_email]'] = '<a>get_billing_email() . '"> ' . $order->get_billing_email() . '</a>';
- This reply was modified 2 years, 6 months ago by Steven Stern (sterndata).
Also one more thing in SHORTCODES.PHP
string
$shortcode['[yaymail_billing_email]'] = '<a>get_billing_email() ) . '">' . esc_url( $order->get_billing_email() ) . '</a>';
in emails it gives link like:
https://[email protected]
if i remove ESC_URL it looks right, but i know we should to use it for sanitize URLs and eliminate invalid characters and removes dangerous characters. For security reasons
Is it ways to make security code but showing rigt link for e-mails?
- This reply was modified 2 years, 6 months ago by Steven Stern (sterndata).
I did it already
SHORTCODES.PHPif ( ! empty( $order->get_billing_country() ) ) {
$country_code_bym = $order->get_billing_country();
$wc_countries = WC()->countries;
$billing_country_name_bym = $wc_countries->countries[$country_code_bym];$shortcode[‘[yaymail_billing_country]’] = $billing_country_name_bym;
} else {
$shortcode[‘[yaymail_billing_country]’] = ”;`Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] ERROR IN my-account/view-orderSo i turned off TRACKSHIP plugin and it works now.
But with activated trackship plugin it gives an critical errorForum: Plugins
In reply to: [YayMail - WooCommerce Email Customizer] PURCHASE NOTEnot customer notes, but PURCHASE NOTES. It shown below each product (if exists) in mails for customers, but not for admin.
I found it in email-order-items.php
// Show purchase note $purchase_note = ''; if ( $product && $product->get_purchase_note() ) { $purchase_note = $product->get_purchase_note(); } if ( ( 'customer_on_hold_order' === $this->template || 'customer_processing_order' === $this->template || 'customer_completed_order' === $this->template || 'customer_refunded_order' === $this->template || 'customer_invoice' === $this->template || 'customer_note' === $this->template ) && isset( $args['show_purchase_note'] ) && is_object( $product ) && ! empty( $purchase_note ) )
If i just add custom row
|| ‘new_order’ === $this->template
it works, BUT how can i add it by snippets to avoid resetting my changes after plugin updates.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] watermark@dpeyou Thanks, it works with order status,
but with shipping method it doesnt work
Could you write right snippet here for me?Thnks
Thanks!
Work like a charm )- This reply was modified 2 years, 9 months ago by astral4ik.
Ok.. Next question
custom_field(‘shipping_country’) and custom_field(‘shipping_state’) gives me codes, not full names. For example instead IRELAND it gives me IE and instead DUBLIN it gives D.
shipping_country_code and shipping_state_code not show anything.
If i need full names on country and state, what i need to do.