Title: grumo64's Replies | WordPress.org

---

# grumo64

  [  ](https://wordpress.org/support/users/grumo64/)

 *   [Profile](https://wordpress.org/support/users/grumo64/)
 *   [Topics Started](https://wordpress.org/support/users/grumo64/topics/)
 *   [Replies Created](https://wordpress.org/support/users/grumo64/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/grumo64/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/grumo64/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/grumo64/engagements/)
 *   [Favorites](https://wordpress.org/support/users/grumo64/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 34 total)

1 [2](https://wordpress.org/support/users/grumo64/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/grumo64/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/grumo64/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Views for Jetpack] Admin column](https://wordpress.org/support/topic/admin-column-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/admin-column-2/#post-18246379)
 * Soory duplicate topic
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] 3.2.22 Minify Doesn’t work with WooCommerce](https://wordpress.org/support/topic/3-2-22-minify-doesnt-work-with-woocommerce/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/3-2-22-minify-doesnt-work-with-woocommerce/#post-17414780)
 * I’ve got the same errors.
   I’ve already excluded:/wp-content/plugins/woocommerce/
   assets/client/blocks/wc-blocks-registry.js/wp-includes/js/dist/url.min.js/wp-
   includes/js/dist/api-fetch.min.js
 * And the only thing I can do to prevent those errors was to not defer javascipt
   files.
   Any help please?
    -  This reply was modified 2 years, 6 months ago by [grumo64](https://wordpress.org/support/users/grumo64/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Views for Jetpack] How to change cache duration](https://wordpress.org/support/topic/how-to-change-cache-duration/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/how-to-change-cache-duration/#post-17210756)
 * In fact I display 50 posts per page and work also for custom post type or page.
   
   I simply duplicate add_action/add_filter with corresponding post_type:
 *     ```wp-block-code
       //Where event is my custom post type
       add_filter( 'manage_edit-event_columns', 'kb_add_views_column' );
       add_action( 'manage_event_custom_column', 'kb_add_views_colunm_data' );
       ```
   
 * [https://developer.wordpress.org/reference/hooks/manage_screen-id_columns/](https://developer.wordpress.org/reference/hooks/manage_screen-id_columns/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Views for Jetpack] How to change cache duration](https://wordpress.org/support/topic/how-to-change-cache-duration/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/how-to-change-cache-duration/#post-17210639)
 * Thank you Jeremy!
   I saw that many people asked you to show Post count view in
   admin column.I did it already and it works. The only thing I don’t know is the
   speed performance on the admin.
 * I put my code here, let me know what you think about it:
 *     ```wp-block-code
       function kb_add_views_column( $cols ) {
           $cols['pageviews'] = 'Views';  
           return $cols;
       }
       add_filter( 'manage_edit-post_columns', 'kb_add_views_column' );
   
       function kb_add_views_colunm_data( $colname ) {
           // Make sure we're inserting into the correct column
           if ( 'pageviews' !== $colname )
               return false;
           echo do_shortcode( '[jp_post_view]' );
       }
       add_action( 'manage_posts_custom_column', 'kb_add_views_colunm_data' );
       ```
   
    -  This reply was modified 2 years, 8 months ago by [grumo64](https://wordpress.org/support/users/grumo64/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPC Show Single Variations for WooCommerce] Doesn’t work with Polylang](https://wordpress.org/support/topic/doesnt-work-with-polylang-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/doesnt-work-with-polylang-2/#post-15117849)
 * I found by myself how to display production variation with native woocommerce
   shortcode.
    Simply paste the following code:
 *     ```
       add_filter( 'woocommerce_shortcode_products_query', 'woocommerce_shortcode_products_query_post_type');
       function woocommerce_shortcode_products_query_post_type($query_args){
       	$query_args['post_type'] = array('product', 'product_variation');
       	return $query_args;
       }
       ```
   
    -  This reply was modified 4 years, 8 months ago by [grumo64](https://wordpress.org/support/users/grumo64/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPC Show Single Variations for WooCommerce] Doesn’t work with Polylang](https://wordpress.org/support/topic/doesnt-work-with-polylang-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/doesnt-work-with-polylang-2/#post-14904875)
 * I installed Polylang for woocommerce and everything works now.
    One more thing
   is it possible to show product variation when using th woocommerce shortcode(
   I know that’s anather topic but…)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPC Show Single Variations for WooCommerce] Display single variation in frontpage / shortcode](https://wordpress.org/support/topic/display-single-variation-in-frontpage-shortcode/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/display-single-variation-in-frontpage-shortcode/#post-14904518)
 * Hi [@wpclever](https://wordpress.org/support/users/wpclever/),
    Same issue here
   if I use the woocommerce shortcode, I got the select option. Sorry I can’t send
   an url cause I’m working on local environment, but I only have one product woocommerce
   and your plugin. I already tried Re-init variations
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Activity Log - Monitor & Record User Changes] Email – Does not work at all](https://wordpress.org/support/topic/email-does-not-work-at-all/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/email-does-not-work-at-all/#post-12127435)
 * Same here I didn’t receive any email notifications
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Remove CPT base] Hierarchical CPT](https://wordpress.org/support/topic/hierarchical-cpt-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/hierarchical-cpt-2/#post-11899428)
 * Due to protection of web servers from repeated attacks, we were forced to restrict
   access to administrative interface of web pages to selected countries. If you
   are currently in a foreign country, please sign in to WebAdmin, proceed to your
   domain management and disable this GeoIP filter in CMS section.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Remove CPT base] Hierarchical CPT](https://wordpress.org/support/topic/hierarchical-cpt-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/hierarchical-cpt-2/#post-11899313)
 * Ok but I could not register so how can I do?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Remove CPT base] Hierarchical CPT](https://wordpress.org/support/topic/hierarchical-cpt-2/)
 *  Thread Starter [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/hierarchical-cpt-2/#post-11899055)
 * Hello I tried to register on your forum but it doesn’t work?
    Have you test with
   3 level of hierarchical custom post? Thanks in advance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] W3 conflicts with Divi theme builder](https://wordpress.org/support/topic/w3-conflicts-with-divi-theme-builder/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [7 years ago](https://wordpress.org/support/topic/w3-conflicts-with-divi-theme-builder/page/2/#post-11781384)
 * HI there,
    for me if I enable gzip in browser cache media section then I could
   not load existing page anymore. Please help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 Shortcode Enabler] Working in message](https://wordpress.org/support/topic/working-in-message/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/working-in-message/#post-11387534)
 * I finaly got it!!
    I wanted to return an ACF field value with the [acf field=”
   value”] shortcode. But to work I needed to pass the post id too.
 * If anybody have the same problem, that’s my final code to get an ACF field in
   the email template.
 *     ```
       add_filter( 'wpcf7_special_mail_tags', 'your_special_mail_tag', 10, 3 );
       function your_special_mail_tag( $output, $name, $html ) {
           if ( 'myvideo' == $name )
               $output = do_shortcode( '[acf field="myvideolink" post_id="233"]' );
   
           return $output;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 Shortcode Enabler] Working in message](https://wordpress.org/support/topic/working-in-message/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/working-in-message/#post-11387362)
 * Can you explain me why this code doesn’t work for me?
 *     ```
       function get_acf_field(){
           $output = get_field( 'lienvideo' );
           return $output;
       }
       add_shortcode( 'myvideo', 'get_acf_field' );
   
       function my_special_mail_tag( $output, $name, $html ) {
           if ( 'my_surrogate_shortcode' == $name )
               $output = do_shortcode( '[myvideo]' );
   
           return $output;
       }
       add_filter( 'wpcf7_special_mail_tags', 'my_special_mail_tag', 10, 3 );
       ```
   
 * If I put [myvideo] in my template form I got the value of my shortcode, but when
   I put [my_surrogate_shortcode] I the mail template I got nothing.
 * Please help me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Error 500 after update to 6.4.0 (multisite)](https://wordpress.org/support/topic/error-500-after-update-to-6-4-0-multisite/)
 *  [grumo64](https://wordpress.org/support/users/grumo64/)
 * (@grumo64)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/error-500-after-update-to-6-4-0-multisite/#post-9523373)
 * Try to see if your wordpress rules are still in place.
 * For me every time I update the plugin and/or change any option the plugin remove
   everything in my htaccess causing error 500 🙁

Viewing 15 replies - 1 through 15 (of 34 total)

1 [2](https://wordpress.org/support/users/grumo64/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/grumo64/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/grumo64/replies/page/2/?output_format=md)