Extend Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Colibri WP] header text copies to all pagesEdit the page where you want to change the title, remove the current heading element and drag a Page Title element instead. Here is a small video
https://iulian-extendstudio.tinytake.com/tt/MzkyNzc0NF8xMjA0ODIyOQForum: Themes and Templates
In reply to: [Colibri WP] header text copies to all pagesHello @dianamilichevich,
I think you are using a static heading element. Please replace it with a page title element ( this element behaves like a heading element but will use the actual page title as content )
Forum: Themes and Templates
In reply to: [Colibri WP] How to add a popup to a button?Hello @jurvrn,
Please try to set the things like in the images below:
Set the click trigger to something like a[href=”#pop”]
https://iulian-extendstudio.tinytake.com/tt/MzkyNjQ0NF8xMjA0NDg2Mw
And set the button URL to #pop
https://iulian-extendstudio.tinytake.com/tt/MzkyNjQ0OV8xMjA0NDg4Mw
Make sure that there are no spaces between the hash character and the rest of the text, and also, try not to use special characters for the trigger name ( for example you can replace #pop with #open-my-popup )
- This reply was modified 5 years, 3 months ago by Extend Themes.
Forum: Reviews
In reply to: [Colibri WP] Anything more unprofessional than “for free” ?Hi @willvh,
I apologise for the bad experience you’re having with our product.
Just recently we removed a significant number of restrictions from the free version of Colibri so more people could use it without paying.
We decided to leave that text there as an incentive for people who build commercial websites to upgrade to PRO. There is an entire team behind this product and PRO upgrades ensure that we’ll still be around for the years to come, maintaining and improving Colibri.
However, we’re still experimenting with the free / pro sets of features so this may change. We’re considering changing that text after getting negative feedback about it.
Forum: Themes and Templates
In reply to: [Colibri WP] Responsive logo stretchesHello,
Try to add the following CSS code into the Additional CSS field, and let me know if it solves your issue.
.logo-image, .logo-alt-image { width: auto; }
Here is how to get to the Additional CSS Area: https://docs.colibriwp.com/knowledgebase/additional-css/
Forum: Fixing WordPress
In reply to: Declaration incompatible with Walker after update to 5.3Hi @abdelelomari,
The issues you encountered are with the PRO version of the theme.
We just released an update ( Mesmerize PRO 1.6.112 ). Please check for this update and let us know if it worked for you.If you are not able to access your site to update the theme please contact us on our contact form to give you the latest version of the theme and guide you to install it via FTP or another method.
Here is a our support contact form: https://extendthemes.com/mesmerize/#support
Regards,
Extend Themes Team- This reply was modified 5 years, 4 months ago by Extend Themes.
Forum: Themes and Templates
In reply to: [Mesmerize] WordPress 5.3 Update Breaks Line 0Hi @tobiaszh @souaj67 @toddalanrose,
The issues you encountered are with the PRO version of the theme.
We just released an update ( Mesmerize PRO 1.6.112 ). Please check for this update and let us know if it worked for you.Regards,
Extend Themes Team- This reply was modified 5 years, 4 months ago by Extend Themes.
Forum: Themes and Templates
In reply to: [Colibri WP] Replacing “Products” title on woocommerce shop pageHi @rusticmodern,
If you do not use the Colibri Page Builder you can add this filter:
add_filter( 'theme_mod_header_post.title.show', function ( $value ) { $post_type = get_query_var( 'post_type' ); if ( $post_type === 'product' ) { $value = false; } return $value; } );
If you use Colibri Page Builder you can override the title shortcode for product pages with a code like this one:
add_action( 'wp', function () { $post_type = get_query_var( 'post_type' ); if ( is_customize_preview() ) { return; } if ( $post_type === 'product' ) { remove_shortcode( 'colibri_page_title' ); add_shortcode( 'colibri_page_title', '__return_empty_string' ); } } );
Please make sure to create a child theme ( or a plugin ) so your code will not be removed on a future update
- This reply was modified 5 years, 4 months ago by Extend Themes.
Hello @baselibrary,
The issue you encountered is a macOS issue and is not related to the theme. It seems to be trigger by the Dock process ( the app bar ) on the macOS ( https://www.howtogeek.com/363857/how-to-fix-your-mac%E2%80%99s-dock-when-it-gets-stuck/ ).
The theme archive contains only web-specific files ( CSS, Javascript, and PHP), which are executed only by the web-server and are not capable of triggering a kernel panic
Forum: Reviews
In reply to: [Colibri WP] Schei?e, w?re noch ein KomplimentHi @printpi,
Please contact us for the pro support at https://colibriwp.com/#support
Do you have blog posts that don’t appear? We do not touch blog posts. Maybe they just don’t show up because the template that shows the blog post is broken. If you edited the blog page template and added static content we can fix it for you and blog post will appear correctly.
Forum: Themes and Templates
In reply to: [Colibri WP] no right sidebar widget areaHi @mrblues-1,
Do you want the show the sidebar as for blog, or a different one ?
Forum: Reviews
In reply to: [Colibri WP] i wish i could rate it with 0 stars.Hi @tonygogotsis,
We will investigate “weird page” issue when using a child theme. The problem may be that the style.css from the parent theme is loaded in child theme, and it should not be loaded at all, because the css comes from the plugin when its enabled.
The theme itself can be used without the Colibri Page Builder, in which case it can be modified from php as with any other theme using a child theme.
The limitations that you are experiencing are related to the Colibri Page Builder plugin overwriting the php header template. This allows us to offer unlimited customization of the header from the page editor. We can’t have it both ways, changing it from php and from a page builder in the same time.
The theme + plugin workflow is made to be friendly for beginners, but if a user really needs to change the content dynamically, it can do so, not by editing the php files, but by using some filters from php. For example, by using the ‘colibri_dynamic_content’ filter to manipulate the output of the header.
As for css/js, it can be added using WordPress Custom Css Feature or by adding them from functions.php of the child theme. For example a user can drop a text under the logo and style it from css, to create a logo with text under it.
We are sorry that the theme didn’t fit well with your workflow.
Forum: Reviews
In reply to: [Colibri WP] i wish i could rate it with 0 stars.Hello @tonygogotsis,
First of all, we are sorry that you have issues with the theme.
We tried to create a child theme with the Child Theme Configurator plugin and it seemed to work. When you install the Colibri Page Builder plugin to be able to entirely edit the header and footer of the theme ( e.g. to change the structure of the header and the footer ) the plugin needs to take over those areas and store the content in the database. In other words, The Colibri Page Builder in addition to editing the page content allows editing the header and footer content and you might not even need a child theme. Can you tell us how you intended to modify the Colibri WP theme within the child, so we can share a solution that will integrate with the Colibri Page Builder?
You can edit any page with the Colibri Page Builder free plugin, please let us know if you have issues editing the sites inner pages ( some screenshots might help so we can better understand the issue )
Forum: Themes and Templates
In reply to: [Colibri WP] Form Integration not workingHello @lintond03,
Please add this css code in the Additional CSS field in customizer:
.wpforms-field-checkbox ul, .wpforms-field-radio ul { text-align: left; } .wpforms-field-checkbox ul li, .wpforms-field-radio ul li { display: flex !important; flex-grow: 0; flex-wrap: nowrap; align-content: center; justify-content: flex-start; } .wpforms-field-radio ul li input[type="radio"]{ border-radius:300px!important; } .wpforms-field-checkbox ul li.wpforms-selected input, .wpforms-field-radio ul li.wpforms-selected input { background-color:#cdeefd !important; }
And let us know if it works.
Do you have a /wp-content/debug.log file in your wordpress root folder ?