zefyr
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Woocommerce Checkout Field Editor] CSV EXPORTI solved it:
'column_4' => get_post_meta($order->id, 'wc_order_field_2906', true), 'column_5' => get_post_meta($order->id, 'wc_order_field_8140', true), 'column_6' => get_post_meta($order->id, 'wc_order_field_9549', true)
Forum: Plugins
In reply to: [Flexible Woocommerce Checkout Field Editor] CSS and others not loaded!1, 2) OK
2) It´s possible – see you here: https://jqueryui.com/datepicker/#inlineForum: Plugins
In reply to: [Flexible Woocommerce Checkout Field Editor] CSS and others not loaded!I tested your plugin and there are the errors and
suggestions:1) Uncaught ReferenceError: setDependsOfVisibility is not defined – app.js?ver=4.5.3:178
2) Bad datePicker position
You append datePicker at the end of html document, better way is append to the input or container with position: relative. When you change resolution of the window or change mobile device from landscape to portrait datepicker doesn´t change position.3) I use checkboxes, but in order/order email show checked like true, unchecked like false. This isn´t user friendly interpretation. Shop manager or customers doesn´t know what is it. Better is yes/no or checked/unchecked or unchecked fields not showing in the order/order email. You can use language strings for translating __(‘Checked’, ‘name-of-the-plugin’)
Or you can add additional text inputs for checkoxes, and show their content only for orders/orders email like interpretation of checked inputs.
4) IDs for new elements (for next versions of the plugin)
My IDs are: #wc_order_field_2906_field, #wc_order_field_7283_field, #wc_order_field_8140_field, …
– better generating of IDs with own sequence like wc-order-field-01, wc-order-field-02, wc-order-field-03,…Forum: Plugins
In reply to: [Flexible Woocommerce Checkout Field Editor] CSS and others not loaded!Better way is using default wordpress language and call language files.
Forum: Plugins
In reply to: [Flexible Woocommerce Checkout Field Editor] CSS and others not loaded!Ok.
Please, add to datePicker localization.
Section Localization
http://api.jqueryui.com/datepicker/#utility-noWeekends
https://github.com/jquery/jquery-ui/tree/master/ui/i18nForum: Plugins
In reply to: [České služby pro WordPress] PPL ParcelshopPlugin PPL (placený) má Musilda hotový od konce roku, kdy jsem ho po něm chtěl.
Forum: Plugins
In reply to: [Lazy Load for WooCommerce] Woocommerce list of categories with imagesYes, it´s resolved.
Forum: Plugins
In reply to: [Lazy Load for WooCommerce] Woocommerce list of categories with imagesThank´s it works!
Forum: Plugins
In reply to: [Lazy Load for WooCommerce] Woocommerce list of categories with imagesHello, It will be super! I´m waiting for this feature.
Forum: Plugins
In reply to: [Lazy Load for WooCommerce] Woocommerce list of categories with imagesOn the products it works. I have only local pages.
Every page in wordpress call jquery, you mean call lazy like this?$(function() {
$(“img.lazy”).lazyload();
});Forum: Plugins
In reply to: [Collapsing Categories] Categories not sorting by ASCAnybody help me?
Forum: Plugins
In reply to: [České služby pro WordPress] PPL ParcelshopDobrý den, přesně tak, PPL tak doručuje min. rok nebo dva roky, přesně nevím. Ano, přesně ty pobočky: http://www.pplbalik.cz/Main3.aspx?cls=KTMMap
Chtělo by to doplnit možnost výběru doručením PPL a pak PPL Parcelshop – tedy jednotlivé pobočky z jejich XML. To bych uvítal nejvíce já 🙂
Návod je tady návodForum: Plugins
In reply to: [Custom Bulk/Quick Edit] edit categories/terms description, custom fieldsIt doesn´t work for editing quick edit of categories/terms desciption etc., only for post/pages!
Forum: Plugins
In reply to: [WooCommerce] Just updated to Version 2.2.5 – How to show empty categories?I think for WC => 2.2.6 you must use new filter name:
// WC - show empty categories // for WC < 2.2.6, woocommerce_product_subcategories_args // for WC => 2.2.6, woocommerce_product_subcategories_hide_empty add_filter('woocommerce_product_subcategories_hide_empty', 'woocommerce_show_empty_categories'); function woocommerce_show_empty_categories($cat_args) { $cat_args['hide_empty']=0; return $cat_args; }Forum: Plugins
In reply to: [Collapsing Categories] Title of cagegories links// WordPress SEO description meta field
global $$wp_query; $metadesc = ''; if ( is_category() || is_tag() || is_tax() ) { $term = $wp_query->get_queried_object(); $metadesc = WPSEO_Taxonomy_Meta::get_term_meta( $cat2, $cat2->taxonomy, 'desc' ); }// link
$link2 .= 'title="' . wp_specialchars($metadesc). '"';