danna556
Forum Replies Created
-
Forum: Plugins
In reply to: [Personio Integration Light] Custom TemplatesThanks Thredi, Just fixed this on my own, I noticed there was a big O in taxonomy name, same as your answer.
Forum: Plugins
In reply to: [Personio Integration Light] Custom TemplatesThanks Threadi,
Also one more question.
I need some of the categories to be saved in the backend as well, so I can add description and image to them.
I wrote this code:add_action( 'init', 'register_my_taxonomies' ); function register_my_taxonomies() { register_taxonomy( 'personiooccupationcategory', 'personioposition', array( 'label' => __( 'Personio Occupation Category' ), 'rewrite' => array( 'slug' => 'personiooccupationcategory' ), 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_rest' => true, 'hierarchical' => true, ) ); }
Now taxonomies are showing fine, but when I am trying to open one of them it’s getting error for not existing item, but they are listed as well in the backend.
I tried to remove imported positions and add them again, but without result.
Do you have any idea what can cause this?Forum: Plugins
In reply to: [WordPress Mega Menu - QuadMenu] Problem with API callHello jmatiasmastro,
We are using child theme of Astra theme.
Both of theme and your plugin is up to the latest versions.
I don’t think problem comes from theme, because it’s same on default WP theme.
Problem comes from plugins itself.
BestHello,
Unfortunatelly, this works with another seo plugin well, but in your case it’s showing all pages and posts same as the main language.
Settings for WPML are already done to use subdirectories.
Waiting to hear back from you!
Thanks for the answer!Forum: Plugins
In reply to: [Filter Everything — Product Filter & WordPress Filter] Translate filters urlOk, Thanks – figuret-out with this code. But please if you are plan to do fixes on this part with query vars to work multilanguage, let me know in this topic. Thx!
Forum: Plugins
In reply to: [Filter Everything — Product Filter & WordPress Filter] Translate filters urlThanks,
It looks like I will need a dirty jQuery solution.I have done this – could you please check and advise me how to make it work well on AJAX functionality?
add_action('wp_head', 'shop_page_filter_translation'); function shop_page_filter_translation() { if ( is_shop() && lang_check() == 'de_DE' && ! empty( $_SERVER['QUERY_STRING'] ) ) { ?> <script> jQuery(function($) { $('a.lang-item-en').attr('href', 'en/shop') }); </script> <?php } if ( is_shop() && lang_check() == 'en_US' && ! empty( $_SERVER['QUERY_STRING'] ) ) { ?> <script> jQuery(function($) { $('a.lang-item-de').attr('href', 'einkaufen'); }); </script> <?php } }
Thanks
Forum: Plugins
In reply to: [Filter Everything — Product Filter & WordPress Filter] Translate filters urlHello again @stepasyuk and thanks for fast answer!
Unfortunatelly, when you have selected filter – for example /en/shop/?categories=dry-food and go to German using polylang widget (flags) does not show correct url (/einkaufen/?categories=hundetrockenfutter) and goes like /einkaufen/?categories=dry-food.
https://prnt.sc/4_bYjqr0t2A0 – here is the link of image.
Thanks
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Issue with adding quantityOk, thank you!
Wish you best!Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Issue with adding quantityOk, thanks!
what about adding bulk add to cart button?
Can we have this in next update or can you give me a tip how to do by myself?Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Issue with adding quantitySorry, problem was for Divi theme.
Thank you for answer!Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Issue with adding quantityyes @hakik
is with +/- input.I sended file.
Please check it and tell me can we do something to get bulk button adding like my example i sended you!
I can also help you in dev.Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Issue with adding quantityHi.
it’s Astra theme, but i solved.
Also had a improvement in plguin you can use in next update.
Now thinking for way to add bulk add to cart like this one:
https://demo.naziinfotech.com/product/hoodie/ How i can contact you?- This reply was modified 3 years, 5 months ago by danna556.
Forum: Plugins
In reply to: [Advanced Woo Search] Showing bundle products@mihail-barinov
Thank you!Forum: Plugins
In reply to: [Advanced Woo Search] Showing bundle productsThank you!
Beautifull solution!
Only want to ask is it possible to show bundle products first instead of their sub-childs.
If this is possible will be a great.
Thanks!Forum: Plugins
In reply to: [Advanced Woo Search] Showing bundle productsAny update?