acosmin
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Events calendar plugin broke colibri WP builder@brinatorkar @archie33 You can try adding this code in your theme’s functions.php file, at the bottom:
add_filter( 'script_loader_tag', function( $tag, $handle, $src ) { if ( 'tribe-common-gutenberg-vendor' === $handle && is_customize_preview() ) { return; } return $tag; }, 999, 3 );
@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
In reply to: [Mesmerize] Images not aligning@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
In reply to: [Mesmerize Companion] Title Subtitle BugHi,
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
To be on the safe side, please consider making a backup before making any changes.
Forum: Plugins
In reply to: [Colibri Page Builder] E_Error line 71Hi,
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 likecolibri-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
In reply to: [Colibri WP] How to make space on the left and rigth?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
In reply to: [Mesmerize Companion] Cannot publish customisationsHi,
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.
Hello,
For support for pro version please contact the author at [email protected] or using the site contact form https://extendthemes.com/mesmerize/#support
Forum: Themes and Templates
In reply to: [Mesmerize] Image not load.@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.
- This reply was modified 3 years, 11 months ago by acosmin.
Hi @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
In reply to: [Colibri WP] category not apear to filter blogpost@witadmin this can be solved by changing your permalinks structure, please check the following image:
Thank you!
Forum: Themes and Templates
In reply to: [One Page Express] “Please wait, this might take a little while”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
In reply to: [Twenty Twenty] Inter Var variable font is SLOW@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
In reply to: [Twenty Twenty] Inter Var variable font is SLOW@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 5 years, 2 months ago by acosmin.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Inter Var variable font is SLOW@travisburch try kitchin’s solution, maybe include the selectors mentioned in my code…
Forum: Themes and Templates
In reply to: [Twenty Twenty] Inter Var variable font is SLOW@kitchin that seems to work as well ??