valery2016
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What is this?/* Remove Patterns submenu in Appearance */ function mytheme_remove_menu_subitem() { $page = remove_submenu_page( 'themes.php', 'edit.php?post_type=wp_block' ); } add_action( 'admin_menu', 'mytheme_remove_menu_subitem', 999 );
This will remove the Patterns sub-item from your admin panel
Forum: Fixing WordPress
In reply to: What is this?Keep in mind WordPress’s development philosophy
Yes, you are right. 100%! Mea culpa…
Forum: Fixing WordPress
In reply to: What is this?@macmanx. O, sure. I’m sorry… The screenshot shows a page that can be accessed from “Appearance” -> “Patterns”.
Page slug is edit.php?post_type=wp_block
I removed this item from the menu in the admin panel. And I don’t use the block editor…
I don’t like that WordPress is turning into a monster with a huge amount of unnecessary functionality. Which must be disabled (hidden) when creating each new site. The keyword here is “hidden” ??
Forum: Plugins
In reply to: [Classic Editor] Classic editor EOL SupportThe deadline remains set for 2024
omg… this is bad, this is very bad
Forum: Developing with WordPress
In reply to: Custom taxonomy labelForum: Developing with WordPress
In reply to: Custom taxonomy label@k4media Robert, thank you very much!!!
Great answer that helped resolve my issue.Forum: Plugins
In reply to: [WooCommerce] Where is CSV fields map?@seank123, Yes, that’s right!!!
Especially if the work is done with csv in Excel or Libre office Calc…Thanks!
Forum: Plugins
In reply to: [WooCommerce] Where is CSV fields map?@seank123,
oops,mea culpa ??Thanks! Many thanks!
Forum: Plugins
In reply to: [WooCommerce] head contains noscript woocommerce.product.gallery@axsanford
For removing this
– open functions.php
– addadd_action( 'init', 'remove_wc_noscript' ); function remove_wc_noscript(){ remove_action( 'wp_head', 'wc_gallery_noscript' ); };
– save functions.php
Forum: Plugins
In reply to: [Cyr-To-Lat] Предупреждение@kaggdesign
Спасибо за оперативность! Проверил – всё работаетForum: Localhost Installs
In reply to: Images in webp formatHi Gerry!
Thanks for your reply!Just one question … Do you think support for webp in WordPress core is not needed?
@bcworkz
Thank! I understood youForum: Developing with WordPress
In reply to: Post filterHi All!
The hook works great. I figured it out.Now I just don’t understand how to create “controls” (filtering by color in the image in the starting post).
So far I have created a form in which, when selecting a checkbox (color – green, for example), the line/?option-color=green
is added to the URL. This is static.
How to get all the values of all metabox fields dynamically (in WordPress) I do not know. In general, I need help …If there is any tutorials on this topic, please share the link.
Thanks!Sorry for Google English ??
- This reply was modified 6 years, 4 months ago by valery2016.
Forum: Developing with WordPress
In reply to: Post filterbcworkz,
Howdy_McGeeThank you so much!!!
I will now try to implement what I have planned…
On the results (or lack thereof) I will inform youThanks!
Forum: Developing with WordPress
In reply to: Custom slideshow on front page@bcworkz
Thanks!