Ben Ritner - Kadence WP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kadence] Thicker fonts in Kadence.Hey,
So those themes are applying this css:-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
We follow the default which allows subpixel rendering. You can read more about this here:
https://usabilitypost.com/2012/11/05/stop-fixing-font-smoothing/
https://www.zachleat.com/web/font-smooth/I personally prefer auto with subpixel rendering. Slightly thinker fonts, or slightly less thin fonts depending on how you wan to look at things 🙂
You can easily apply if you want it with this CSS:
html{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
I’ve considered adding an option for it but I’m not sure it deserves it.
Thoughts?
Ben
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Last update (1.5)Hi @megordillo,
Thanks for confirming that your issue is because you are using a very old version of Woocommerce.
If you are not going to update Woocommerce I strongly recommend you not update woocommerce extensions. Current version of woocommerce is 6.3.
All the best,
Ben
Hi,
In your parent section block, set the flex align to horizontal.Ben
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Last update (1.5)I was thinking about this, very little changed with 1.5.0 so there is very little that could create a new error. One thing is that we updated our templates to match woocommerce 5.6+ if you are using a version of Woocommerce that is older then that could create an issue. If you are using an old version of woocommerce I suggest updating.
Ben
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Last update (1.5)Sorry to hear that. I can’t recreate an error can you tell me what the error is from your error log?
Forum: Themes and Templates
In reply to: [Kadence] Error, Unable to access library database,Hard to guess, here are some suggestions.
Contact your hosting provider and ask them to make sure there are no errors in your error log, that you have curl enabled and that they are not blocking external requests or blocking uploads.
Check your browser console log for errors.
Test with all plugins deactivated.
My best guess is something with your hosting.
Ben
Forum: Plugins
In reply to: [Gutenberg Blocks by Kadence Blocks – Page Builder Features] Icon ListThat’s fair, the plan is to add drag and drop to the items in the future, Perhaps if that update is more then a couple weeks away i’ll put back the top and bottom arrows.
Ben
Forum: Plugins
In reply to: [Gutenberg Blocks by Kadence Blocks – Page Builder Features] Icon ListHi,
Since 2.4 the options to move have been put in the toolbar, this allows you to also indent items: https://share.getcloudapp.com/GGul7Jq6Ben
Forum: Themes and Templates
In reply to: [Virtue] Image Captions always Left AlignedHey,
you can add this css:.wp-block-image .aligncenter { text-align: center; }
That would make it so only when you align the image center do the captions also align center.
Ben
Forum: Themes and Templates
In reply to: [Kadence] Server error (5xx) Google Search ConsoleHi,
What is the url? I’m not sure why that wouldn’t be important. Can you explain how to recreate this issue?
Ben
Hey,
page.php is a page template you can look at. We don’t use page templates because you can control the layout of every page through the settings. For example, if you want a sidebar, or if you want to remove the header or footer all of that is controlled in the page settings, there is no need to have to create a custom template for it.
Ben
Forum: Themes and Templates
In reply to: [Kadence] Broken Front EndHi,
I’m seeing that css isn’t loading on the front end because you have issues with https. here is the error from the console log:The page at ‘https://www.motivationparlour.com/’ was loaded over HTTPS, but requested an insecure stylesheet ‘http://www.motivationparlour.com/wp-content/litespeed/css/0f5eb43….css?ver=fbca6’. This request has been blocked; the content must be served over HTTPS.
You just need to make sure all of your content is being loaded over https. Generally this kind of issue happens when you don’t have the site URLs correctly set in the settings of your wordPress site. If your stuck unsure how to fix this I suggest contacting your hosting company.
Ben
Hi,
Can you post a link to where you can seeing this, I can give you some CSS to override the theme if that is what you are looking for,Ben
Forum: Themes and Templates
In reply to: [Kadence] Posts’ date showing twiceHey,
You have a plugin (looks like spiffycal) adding this CSS:.entry-content .updated { display: block !important; }
and that is your issue, no plugin using be adding important like this on general classes.
I don’t recommend this but if you can’t get it fixed you can add this CSS:
.entry-content .updated:not(.published) { display: none !important; }
Ben
Hi,
I can see the correct download attribute being set. Browsers don’t download for images on a different origin, perhaps there is something in your file header that is causing cross origin issues, or perhaps you have another plugin that is preventing the default download attribute from working. I suggest deactivating plugins also you don’t want index.php in your URL. So I would check with your hosting provider for getting your URL permalinks fixed.Ben