Title: dapehe's Replies | WordPress.org

---

# dapehe

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Issues and Series for Newspapers, Magazines, Publishers, Writers] Error in the plugin when accessing /wp-admin/edit.php](https://wordpress.org/support/topic/error-in-the-plugin-when-accessing-wp-admin-edit-php/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/error-in-the-plugin-when-accessing-wp-admin-edit-php/#post-18871383)
 * No, I still can’t access the posts
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Telegram (Auto Post and Notifications)] Auto post content more 4096 ch](https://wordpress.org/support/topic/auto-post-content-more-4096-ch/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/auto-post-content-more-4096-ch/#post-18870808)
 * Sorry, I don’t think I explained myself clearly. What I meant was that if a post
   contains 12,288 characters, Telegram will publish it as three posts of 4,096 
   characters each… For example, if the post exceeds the limit, Telegram will split
   it into multiple posts.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Telegram (Auto Post and Notifications)] Auto post content more 4096 ch](https://wordpress.org/support/topic/auto-post-content-more-4096-ch/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/auto-post-content-more-4096-ch/#post-18870795)
 * Thank you
   It would be great if the plugin could publish the full content, detect
   when it exceeds the limit, and split it up
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Issues and Series for Newspapers, Magazines, Publishers, Writers] Error in the plugin when accessing /wp-admin/edit.php](https://wordpress.org/support/topic/error-in-the-plugin-when-accessing-wp-admin-edit-php/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/error-in-the-plugin-when-accessing-wp-admin-edit-php/#post-18870771)
 * Hi
 * Yes, in english working fine
 * Thxs
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Issues and Series for Newspapers, Magazines, Publishers, Writers] get_series_ordered() and paginate](https://wordpress.org/support/topic/get_series_ordered-and-paginate/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/get_series_ordered-and-paginate/#post-17680642)
 * Hello
   I have been looking at the plugin code and the only function that gives
   a list of series ordered by date is **_get\_series\_ordered_**, but you cannot
   paginate the results with this function. So I have decided to modify it and include
   it in functions.php. I leave it here, in case it is useful for you.
 *     ```wp-block-code
       /**
        * Get an ordered list of series.
         * 
        * @param args array
        */
       function get_series_ordered_custom($args = '')
       {
           global $wpdb;
           $post_types = apply_filters('orgseries_posttype_support', array('post'));
           $defaults = array('orderby' => 'term_id', 'order' => 'DESC', 'postTypes' => $post_types, 'hide_empty' => TRUE);
           $args = wp_parse_args($args, $defaults);
           extract($args, EXTR_SKIP);
   
           $orderby = strtolower($orderby);
           if ('post_date' == $orderby) {
               if ('ASC' == $order)
                   $_orderby = 'min(tp.post_date)';
               else
                   $_orderby = 'max(tp.post_date)';
           } else if ('post_modified' == $orderby) {
               if ('ASC' == $order)
                   $_orderby = 'min(tp.post_modified)';
               else
                   $_orderby = 'max(tp.post_modified)';
           } else if ('name' == $orderby)
               $_orderby = 't.name';
           else if ('slug' == $orderby)
               $_orderby = 't.slug';
           elseif (empty($orderby) || 'id' == $orderby || 'term_id' == $orderby)
               $_orderby = 't.term_id';
           elseif ('count' == $orderby)
               $_orderby = 'tt.count';
           elseif ('rand' == $orderby)
               $_orderby = 'RAND()';
   
           $having = '';
   
           if ($hide_empty) {
               $having = 'HAVING count(tp.id) > 0 ';
           }
   
           $postTypes = "'" . implode("','", $postTypes) . "'";
   
           $query = "SELECT t.term_id, t.name, t.slug, tt.count 
                       FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id 
                       LEFT OUTER JOIN $wpdb->term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id 
                       LEFT OUTER JOIN $wpdb->posts AS tp ON tp.ID = tr.object_id and tp.post_status IN ( 'publish', 'private' ) and tp.post_type in ($postTypes) 
                       WHERE tt.taxonomy = '" . ppseries_get_series_slug() . "' GROUP BY t.term_id, t.name, t.slug $having ORDER BY $_orderby $order LIMIT $number OFFSET $offset";
           $series = $wpdb->get_results($query);
           return $series;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16293983)
 * Thank you very much for your help
   Unfortunately, I will have to look for other
   options 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16290330)
 * Mateusz
    Activating Development Mode to On, the message disappears 🙁 I think
   the problem is Cloudflare Gracias 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16290317)
 * Hi
    No, persist 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16290271)
 * Hi
    I have the standard, default settings.
 * Caching > Configuration:
    – Caching Level: Standard – Browser Cache TTL: 1 year–
   CSAM Scanning Tool: Standard, I don’t even know what it’s for 🙂 – Crawler Hints:
   Off – Always Online: Off – Development Mode: Off
 * Caching > Cache Rules: Empty, no rules
 * Caching > Tiered Cache:
    – Argo Tiered Cache: Off
    -  This reply was modified 3 years, 7 months ago by [dapehe](https://wordpress.org/support/users/dapehe/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16290215)
 * Hi Mateusz
    —-.com Thxs!
    -  This reply was modified 3 years, 7 months ago by [dapehe](https://wordpress.org/support/users/dapehe/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16286976)
 * Here you are:
 * [https://snipboard.io/pr9uFn.jpg](https://snipboard.io/pr9uFn.jpg)
 * [https://snipboard.io/0GAbQz.jpg](https://snipboard.io/0GAbQz.jpg)
 * [https://snipboard.io/rGWljU.jpg](https://snipboard.io/rGWljU.jpg)
 * [https://snipboard.io/CEGiKF.jpg](https://snipboard.io/CEGiKF.jpg)
 * [https://snipboard.io/G3wauL.jpg](https://snipboard.io/G3wauL.jpg)
 * [https://snipboard.io/htx8rY.jpg](https://snipboard.io/htx8rY.jpg)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] Nginx + Cloudflare + Wp-Rocket server error](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/nginx-cloudflare-wp-rocket-server-error/#post-16286903)
 * Hi Mateusz
 * Thanks for your reply.
 * No, i haven`t custom rules in Cloudflare.
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack statistics in wildcard domain (*.domain.com)](https://wordpress.org/support/topic/jetpack-statistics-in-wildcard-domain-domain-com/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/jetpack-statistics-in-wildcard-domain-domain-com/#post-14077379)
 * Hi [@jenhooks](https://wordpress.org/support/users/jenhooks/)
 * Thank you for your reply.
 * I have developed my own multi-language system and I would not like to switch 
   to WPML and Polylang.
 * I have submitted a support ticket 😉
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack statistics in wildcard domain (*.domain.com)](https://wordpress.org/support/topic/jetpack-statistics-in-wildcard-domain-domain-com/)
 *  Thread Starter [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/jetpack-statistics-in-wildcard-domain-domain-com/#post-14070085)
 * Hello
 * Thank you very much for your reply.
 * Actually, my site is connected to a single URL (domain.com). The issue is that
   my site is multi-language and I use subdomains to distinguish the different languages(
   en.domain.com, ru.domain.com, es.domain.co, etc..), but in Jetpack configuration
   the url that is indicated is [https://domain.com](https://domain.com).
 * I’m afraid that Jetpack is not prepared for these situations, which are quite
   common in multi-language sites 🙁
 * It is really shame
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Trinity Audio - Text to Speech AI audio player to convert content into audio] How can I the other language?](https://wordpress.org/support/topic/how-can-i-the-other-language/)
 *  [dapehe](https://wordpress.org/support/users/dapehe/)
 * (@dapehe)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/how-can-i-the-other-language/#post-12612756)
 * Hello
    I recently contributed to the Spanish translation of the plugin, but it’s
   not available yet.
 * When will we be able to enjoy the plugin in Spanish?
 * Thank you

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

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