Comments for WPlook Themes https://wplook.com/ WordPress Themes Fri, 24 Feb 2023 22:33:42 +0000 hourly 1 https://wordpress.org/?v=6.2.2 Comment on How to enable Gutenberg for WooCommerce Products by Dan https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-400199 Wed, 16 Mar 2022 01:54:06 +0000 https://wplook.com/?p=22543#comment-400199 Hello, this code doesn’t seem to work any more?

]]>
Comment on Professional Website Customization Services by Julen Etxabe https://wplook.com/product/wordpress-services/website-customization-services/#comment-326907 Mon, 04 Oct 2021 17:34:43 +0000 https://wplook.com/product/uncategorized/wordpress-speed-optimization-copy/#comment-326907 Excellent and prompt service. Just what we needed. Thanks a lot!

]]>
Comment on 10 Best Google Serif Fonts Used in 2022 by Margaret Calvert https://wplook.com/serif-fonts/#comment-325573 Sat, 02 Oct 2021 12:56:56 +0000 https://wplook.com/?p=19723#comment-325573 No doubt, that Serif fonts have the most elegant and classic font appearance. In love with the Libre Baskerville font. It has the most elegant font appearance that makes the designs look more attractive and professional. Looking to utilize this typeface in my upcoming designs. Thanks keep up the good work.

]]>
Comment on Professional Website Customization Services by Linda Reinstein https://wplook.com/product/wordpress-services/website-customization-services/#comment-306619 Thu, 26 Aug 2021 16:47:01 +0000 https://wplook.com/product/uncategorized/wordpress-speed-optimization-copy/#comment-306619 I strongly recommend the technical support from WP Look. Victor was nothing less than AMAZING! I wasted hours on trying to fix formatting and Victor expertly and quickly made my changes. I’m deeply grateful and look forward to working with Victor and WP Look Team again!. Thank you, Victor.

]]>
Comment on How to enable Gutenberg for WooCommerce Products by Josh https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-267444 Fri, 14 May 2021 18:06:38 +0000 https://wplook.com/?p=22543#comment-267444 Is it possible to enable Gutenberg on WooComerce product categories the same way?

]]>
Comment on 24+ Best Free WordPress Themes in 2022 by Jay https://wplook.com/free-wordpress-themes/#comment-258008 Thu, 22 Apr 2021 07:08:08 +0000 https://wplook.com/?p=22129#comment-258008 Great! This free wordpress theme is awesome and using this any website builder can easily make and design.

]]>
Comment on How to enable Gutenberg for WooCommerce Products by Pierre Balian https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-255876 Thu, 15 Apr 2021 20:56:25 +0000 https://wplook.com/?p=22543#comment-255876 Hello. I just tried this method out. it SEEMS to work great. However I noticed after it is enabled no changes made inside the product meta box will actually save when updating the page. For example if you go and change the product sku and hit update it acts like the page saves via ajax, but if you actually refresh the page you will see the updates didn’t save. Regular content however updates fine. Any ideas there?

Tested with bone stock woocommerce and 2021 theme.

]]>
Comment on How to enable Gutenberg for WooCommerce Products by Marcos Rego https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-253021 Thu, 08 Apr 2021 17:57:52 +0000 https://wplook.com/?p=22543#comment-253021 Works great indeed! Thanks a lot!

It was working only inside the theme functions.php but to make it work from a plugin you can change the priority to 20 for example.

Here:

function wplook_activate_gutenberg_products($can_edit, $post_type){
if($post_type == ‘product’){
$can_edit = true;
}
return $can_edit;
}
add_filter(‘use_block_editor_for_post_type’, ‘wplook_activate_gutenberg_products’, 20, 2);

function wplook_activate_gutenberg_products_cat( $args, $taxonomy_name ) {
if ( ‘product_tag’ === $taxonomy_name || ‘product_cat’ === $taxonomy_name) {
$args[‘show_in_rest’] = true;
}
return $args;
}
add_filter( ‘register_taxonomy_args’, ‘wplook_activate_gutenberg_products_cat’, 20, 2 );

]]>
Comment on 24+ Best Free WordPress Themes in 2022 by Victor Tihai https://wplook.com/free-wordpress-themes/#comment-238191 Fri, 05 Mar 2021 17:13:44 +0000 https://wplook.com/?p=22129#comment-238191 Thanks, @Gbwadl! Makenzie is one of our favorite themes. It’s an awesome theme!

]]>
Comment on How to enable Gutenberg for WooCommerce Products by Michael https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-232823 Sat, 20 Feb 2021 17:46:08 +0000 https://wplook.com/?p=22543#comment-232823 Worked GREAT, thank you a ton!

]]>
Comment on Benevolence WordPress Theme by David Salch https://wplook.com/product/themes/non-profit/benevolence-church-wordpress-theme/#comment-228110 Tue, 09 Feb 2021 13:20:32 +0000 http://wplook.com/theme/benevolence/#comment-228110 This is the ULTIMATE theme for a church organization! We have spent hours and hours looked at dozens of themes, some costing much more, and settled on Benevolence. It is head and shoulders above the others in features, clean design, and usability. The integration of so many features is beautiful and simple. Beginners can operate the features easily, which can not be said for all themes. We actually had previously purchased a more expensive theme from another author and ended up replacing it with this one due to being just too difficult to use by comparison.

The resulting look of this theme is clean and straightforward. Not cluttered with flashy features which tend to distract from content. Just enough styling and “fancy features” to make it feel modern without the website itself becoming the center of focus. The church and the content is what the viewer experiences.

The feature list has it all! integration into donations systems, maps, sliders. Easy support for sermons, publications, commerce, events, causes, projects, staff, and more. And all features are implemented in similar functionality so it is easy to learn and utilize. These guys have thought through the user needs and experience as well as the viewer.

And I must add, the customer service is over the top! These guys went above and beyond the expected, to support specific needs we had. They were helpful, polite, eager, and in the end even made a change to the theme to support a specific need.

I highly recommend trying these themes!

]]>
Comment on How to enable Gutenberg for WooCommerce Products by Álvaro https://wplook.com/how-to-enable-gutenberg-for-woocommerce-products/#comment-224821 Tue, 02 Feb 2021 03:05:02 +0000 https://wplook.com/?p=22543#comment-224821 If you want to enable both categories and tags, use this code:

function wplook_activate_gutenberg_products_cat( $args, $taxonomy_name ) {
if ( ‘product_tag’ === $taxonomy_name || ‘product_cat’ === $taxonomy_name) {
$args[‘show_in_rest’] = true;
}
return $args;
}
add_filter( ‘register_taxonomy_args’, ‘wplook_activate_gutenberg_products_cat’, 10, 2 );

]]>