Title: tseo.pro's Replies | WordPress.org

---

# tseo.pro

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Self-referencing canonical](https://wordpress.org/support/topic/self-referencing-canonical-2/)
 *  [tseo.pro](https://wordpress.org/support/users/ibermega/)
 * (@ibermega)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/self-referencing-canonical-2/#post-16660926)
 * Another workaround to not completely remove pagination and only work on archive.
   php and category.php but not on the rest of wordpress:
 *     ```wp-block-code
       function disable_pagination_on_other_pages( $query ) {
           if ( ! is_admin() && ( is_archive() || is_category() ) && $query->is_main_query() ) {
               return;
           }
           if ( $query->is_main_query() ) {
               $query->set( 'no_found_rows', true );
           }
       }
       add_action('pre_get_posts','disable_pagination_on_other_pages');
       ```
   
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Self-referencing canonical](https://wordpress.org/support/topic/self-referencing-canonical-2/)
 *  [tseo.pro](https://wordpress.org/support/users/ibermega/)
 * (@ibermega)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/self-referencing-canonical-2/#post-16660821)
 * Since version 6.0.3 wordpress has pagination issue with all SEO plugins or all
   plugins are wrong or wordpress is the cause. This issue prevents some plugins
   from being reconfigured and also causes a very significant server overhead when/
   page/v2 appears on the front page. I have solved it on many websites by inserting
   this in functions.php:
 *     ```wp-block-code
       function temporarily_disable_pagination( $query ) {
           if ( $query->is_main_query() && !is_admin() ) {
               $query->set( 'nopaging', true );
           }
       }
       add_action('pre_get_posts','temporarily_disable_pagination');
       ```
   
 * until someone fixes the bug in wordpress or seo plugins.
 * Note. When inserting this function if in permalinks you have for example: /%category%/%
   postname%/ the function automatically changes it to /%postname%/ so you will 
   have to enter quickly and put it back correctly: /%category% / %postname%/ to
   avoid SEO problems with search engine indexing.
    -  This reply was modified 3 years, 3 months ago by [tseo.pro](https://wordpress.org/support/users/ibermega/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [fatal error](https://wordpress.org/support/topic/fatal-error-4428/)
 *  [tseo.pro](https://wordpress.org/support/users/ibermega/)
 * (@ibermega)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/fatal-error-4428/#post-16660807)
 * Since version 6.0.3 wordpress has pagination issue with all SEO plugins or all
   plugins are wrong or wordpress is the cause. This issue prevents some plugins
   from being reconfigured and also causes a very significant server overhead when/
   page/v2 appears on the front page. I have solved it on many websites by inserting
   this in functions.php:
 * function disable_pagination temporarily ($query) {
   if ( $query->is_query_main()&&!
   is_admin() ) {$query->set(‘nopagination’, true);}}add_action(‘pre_get_posts’,‘
   temporal_disable_pagination’);
 * until someone fixes the bug in wordpress or seo plugins.
 * Note. When inserting this function if in permalinks you have for example: /%category%/%
   postname%/ the function automatically changes it to /%postname%/ so you will 
   have to enter quickly and put it back correctly: /%category% / %postname%/ to
   avoid SEO problems with search engine indexing.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Athenea] Not There Yet](https://wordpress.org/support/topic/not-there-yet-2/)
 *  Theme Author [tseo.pro](https://wordpress.org/support/users/ibermega/)
 * (@ibermega)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/not-there-yet-2/#post-7882531)
 * Hi 🙂 The options menu if it works well. You should remove the navigation data
   your browser and try again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Athenea] No graba páginas el tema](https://wordpress.org/support/topic/no-graba-paginas-el-tema/)
 *  Theme Author [tseo.pro](https://wordpress.org/support/users/ibermega/)
 * (@ibermega)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/no-graba-paginas-el-tema/#post-4741059)
 * Hola universoyoga.
 * ¿A qué te refieres con que no las graba, exactamente?
 * Las plantillas solo muestran la información de tu wordpress. No ejecutan inserciones
   en la base de datos.
 * ¿Puedes poner aqui una captura de pantalla para ver el problema?
 * Un saludo

Viewing 5 replies - 1 through 5 (of 5 total)