Title: acosmin's Replies | WordPress.org

---

# acosmin

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/acosmin/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/acosmin/replies/page/3/?output_format=md)…
[41](https://wordpress.org/support/users/acosmin/replies/page/41/?output_format=md)
[42](https://wordpress.org/support/users/acosmin/replies/page/42/?output_format=md)
[43](https://wordpress.org/support/users/acosmin/replies/page/43/?output_format=md)
[→](https://wordpress.org/support/users/acosmin/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Events calendar plugin broke colibri WP builder](https://wordpress.org/support/topic/events-calendar-plugin-broke-colibri-wp-builder/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/events-calendar-plugin-broke-colibri-wp-builder/#post-16535770)
 * [@brinatorkar](https://wordpress.org/support/users/brinatorkar/) [@archie33](https://wordpress.org/support/users/archie33/)
   You can try adding this code in your theme’s functions.php file, at the bottom:
 *     ```wp-block-code
       add_filter( 'script_loader_tag', function( $tag, $handle, $src ) {
           if ( 'tribe-common-gutenberg-vendor' === $handle && is_customize_preview() ) {
               return;
           }
   
           return $tag;
       }, 999, 3 );
       ```
   
 * [@d0153](https://wordpress.org/support/users/d0153/) a function/import module(_**
   r8Bu**_) from that file is leaking into the global scope and is overwriting a
   function with the same uglified name from Colibri. You should try rebuilding 
   the file, it will probably regenerate the name.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Images not aligning](https://wordpress.org/support/topic/images-not-aligning-9/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/images-not-aligning-9/#post-16293391)
 * [@baspisa](https://wordpress.org/support/users/baspisa/) Try removing the previous
   CSS and add the following:
 *     ```
       .wp-block-image.aligncenter, .wp-block-image .aligncenter, .wp-block-image.alignleft, .wp-block-image .alignleft, .wp-block-image.alignright, .wp-block-image .alignright {
           display: table;
       }
   
       .wp-block-image .aligncenter {
           margin-left: auto;
           margin-right: auto;
       }
   
       .wp-block-image img {
           height: auto;
           max-width: 100%;
           vertical-align: bottom;
       }
   
       .wp-block-image.aligncenter, .wp-block-image .aligncenter, .wp-block-image.alignleft, .wp-block-image .alignleft, .wp-block-image.alignright, .wp-block-image .alignright {
           display: table;
       }
   
       .wp-block-image .alignleft {
           float: left;
           margin: 0.5em 1em 0.5em 0;
       }
   
       .wp-block-image.aligncenter, .wp-block-image .aligncenter, .wp-block-image.alignleft, .wp-block-image .alignleft, .wp-block-image.alignright, .wp-block-image .alignright {
           display: table;
       }
   
       .wp-block-image .alignright {
           float: right;
           margin: 0.5em 0 0.5em 1em;
       }
   
       .wp-block-image:before,
       .wp-block-image:after {
       	display: none !important;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mesmerize Companion] Title Subtitle Bug](https://wordpress.org/support/topic/title-subtitle-bug/)
 *  Plugin Support [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/title-subtitle-bug/#post-15702416)
 * [@jwbdv](https://wordpress.org/support/users/jwbdv/)
 * Hi,
 * If the page is edited with Elementor, then you’ll probably not be able to edit
   the title and subtitle.
 * The solution is to convert the page back to the WordPress Editor, you can do 
   this by clicking on “Edit Page” and then on “Back to WordPress Editor”.
 * After this is done, click on “Edit with Mesmerize”, change the title/subtitle,
   Publish the changes and convert the page back to Elementor (Edit with Elementor).
 * You can see this in this video: [https://ttprivatenew.s3.amazonaws.com/pulse/extendstudio-cosmin/attachments/19595758/TinyTake02-06-2022-12-34-18.mp4](https://ttprivatenew.s3.amazonaws.com/pulse/extendstudio-cosmin/attachments/19595758/TinyTake02-06-2022-12-34-18.mp4)
 * To be on the safe side, please consider making a backup before making any changes.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Colibri Page Builder] E_Error line 71](https://wordpress.org/support/topic/e_error-line-71/)
 *  Plugin Support [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/e_error-line-71/#post-15027934)
 * Hi,
 * You can try adding the following lines at the top of your wp-config.php file
 *     ```
       @ini_set('pcre.backtrack_limit', 10000000);
       @ini_set('pcre.recursion_limit', 20000000);
       ```
   
 * These two will increase the recursion and backtracking limits.
 * If you still can’t access your wp admin panel after making these changes, then
   you can rename the `colibri-page-builder` folder to something like `colibri-page-
   builder2`. You can find this folder in your `../wp-content/plugins` path. Renaming
   the builder folder will disable the plugin and you’ll regain access to your admin
   panel.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Colibri WP] How to make space on the left and rigth?](https://wordpress.org/support/topic/how-to-make-space-on-the-left-and-rigth/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/how-to-make-space-on-the-left-and-rigth/#post-14969060)
 * Hi,
 * You can try this CSS in your Customizer > General Settings > Addtional CSS section:
 *     ```
       body {
       	background-color: #efefef;
       }
       #page-top {
       	max-width: 1280px;
       	margin: 0 auto;
       	box-shadow: 0 0 30px rgba(0,0,0,.2);
       }
       .page {
           padding: 0 2rem;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mesmerize Companion] Cannot publish customisations](https://wordpress.org/support/topic/cannot-publish-customisations/)
 *  Plugin Support [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/cannot-publish-customisations/#post-14919159)
 * Hi,
 * Try to or ask your web host to disable mod_security (if it is enabled) as a test
   for your website. This is probably caused by a security rule and the server throws
   a 406 error.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Contact Form 7 Privacy Acceptance blank and copywriter text size](https://wordpress.org/support/topic/contact-form-7-privacy-acceptance-blank-and-copywriter-text-size/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [5 years ago](https://wordpress.org/support/topic/contact-form-7-privacy-acceptance-blank-and-copywriter-text-size/#post-14365863)
 * [@carolasproloquier](https://wordpress.org/support/users/carolasproloquier/)
 * Hello,
 * For support for pro version please contact the author at [support@extendthemes.com](https://wordpress.org/support/users/acosmin/replies/support@extendthemes.com?output_format=md)
   or using the site contact form [http://extendthemes.com/mesmerize/#support](http://extendthemes.com/mesmerize/#support)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Image not load.](https://wordpress.org/support/topic/image-not-load/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [5 years ago](https://wordpress.org/support/topic/image-not-load/#post-14352867)
 * [@foxysamp97](https://wordpress.org/support/users/foxysamp97/) you also have 
   Autoptimize enabled, please disable that one too.
 * You shouldn’t use two caching plugins at the same time, SG Optimizer & Autoptimize.
 * Plus the shortpixel CDN, it directly affects images.
 * > [View post on imgur.com](https://imgur.com/un3GCSp)
    -  This reply was modified 5 years ago by [acosmin](https://wordpress.org/support/users/acosmin/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Clearfix and color overwrites messes with the WP Toolbar](https://wordpress.org/support/topic/clearfix-and-color-overwrites-messes-with-the-wp-toolbar/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/clearfix-and-color-overwrites-messes-with-the-wp-toolbar/#post-14268492)
 * Hi [@keraweb](https://wordpress.org/support/users/keraweb/)
 * Thank you for the report, I will open a ticket for this bug and it will hopefully
   get fixed in the next update.
 * Until then you can apply this quick fix, please see if it works for you. Copy-
   paste the following code in your Customizer > General Settings > Additional CSS:
 *     ```
       #wpadminbar *:before, #wpadminbar *:after {
       	width: auto;
       	display: block;
       	content: initial;
       }
       #wpadminbar *:after {
       	clear: inherit;
       }
       ```
   
 * You might need to clear your browser’s cache after Publishing/Saving the changes.
   
   Thank you and have a nice weekend!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Colibri WP] category not apear to filter blogpost](https://wordpress.org/support/topic/category-not-apear-to-filter-blogpost/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/category-not-apear-to-filter-blogpost/#post-14254624)
 * [@witadmin](https://wordpress.org/support/users/witadmin/) this can be solved
   by changing your permalinks structure, please check the following image:
 * > [View post on imgur.com](https://imgur.com/oQvqZBH)
 * Thank you!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[One Page Express] “Please wait, this might take a little while”](https://wordpress.org/support/topic/please-wait-this-might-take-a-little-while-3/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/please-wait-this-might-take-a-little-while-3/#post-13771135)
 * Hi,
 * Please press CTRL+SHIFT+I and click on the Console tab. If you have any errors(
   with red) there, please copy-paste them here.
 * Thank you!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty] Inter Var variable font is SLOW](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/page/2/#post-12279224)
 * [@finebyme](https://wordpress.org/support/users/finebyme/) go to`Customizer >
   Additional CSS` and add the following css:
 *     ```
       @supports ( font-variation-settings: normal ) {
       	body,
       	input,
       	textarea,
       	button,
       	.button,
       	.faux-button,
       	.wp-block-button__link,
       	.wp-block-file__button,
       	.has-drop-cap:not(:focus)::first-letter,
       	.entry-content .wp-block-archives,
       	.entry-content .wp-block-categories,
       	.entry-content .wp-block-cover-image,
       	.entry-content .wp-block-latest-comments,
       	.entry-content .wp-block-latest-posts,
       	.entry-content .wp-block-pullquote,
       	.entry-content .wp-block-quote.is-large,
       	.entry-content .wp-block-quote.is-style-large,
       	.entry-content cite,
       	.entry-content figcaption,
       	.entry-content .wp-caption-text {
       		font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif !important;
       	}
       }
       .widget_text p,
       .widget_text ol,
       .widget_text ul,
       .widget_text dl,
       .widget_text dt,
       .widget-content .rssSummary,
       .entry-content p,
       .entry-content ol,
       .entry-content ul,
       .entry-content dl,
       .entry-content dt {
               font-family: "Hoefler Text", Garamond, "Times New Roman", serif !important;
       }
       ```
   
 * Publish/save and enjoy.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty] Inter Var variable font is SLOW](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/page/2/#post-12273868)
 * [@travisburch](https://wordpress.org/support/users/travisburch/) also, regarding
   your child theme’s functions.php file, you shouldn’t copy paste the parent’s 
   code in it, that’s why it was causing that error.
 * In that file just add `<?php` at the very top.
    -  This reply was modified 6 years, 4 months ago by [acosmin](https://wordpress.org/support/users/acosmin/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty] Inter Var variable font is SLOW](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/page/2/#post-12273850)
 * [@travisburch](https://wordpress.org/support/users/travisburch/) try kitchin’s
   solution, maybe include the selectors mentioned in my code…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty] Inter Var variable font is SLOW](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/)
 *  [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/inter-var-variable-font-is-slow/page/2/#post-12273843)
 * [@kitchin](https://wordpress.org/support/users/kitchin/) that seems to work as
   well 🙂

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

1 [2](https://wordpress.org/support/users/acosmin/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/acosmin/replies/page/3/?output_format=md)…
[41](https://wordpress.org/support/users/acosmin/replies/page/41/?output_format=md)
[42](https://wordpress.org/support/users/acosmin/replies/page/42/?output_format=md)
[43](https://wordpress.org/support/users/acosmin/replies/page/43/?output_format=md)
[→](https://wordpress.org/support/users/acosmin/replies/page/2/?output_format=md)