Twentig
Forum Replies Created
-
Hi,
Thanks for your message, glad you like our plugin.
I see the error on your website but I can’t replicate it on my side. Could you please try to deactivate all your plugins except Twentig. If this resolves the issue, activate one plugin at a time until you locate the conflict. Please let us know if the issue is due to a plugin conflict
Thanks,
TomHi,
When you insert a Spotify block (or any embed block), there’s a “Resize for smaller devices” setting which is by default active. You should set it off (otherwise WordPress set a ratio of 21:9 to the embed player).
https://wordpress.org/support/article/spotify-embed/#block-settingsIt’s just a coincidence that the space disappears when you deactivate Twentig; the 21:9 ratio works with a text width of 580px (Twenty Twenty’s default width) but not with 800px as you’ve set.
Tom
Hi Richard,
The URL you gave is now not found. Have you managed to remove the space?
TomHi Richard,
Unfortunately, the blog page only displays the blog posts. And we can’t add this feature due to how the Twenty Twenty-One theme is coded.
Have a nice day,
TomHi,
Thank you for the feedback. We’ll fix this issue in the next release. In the meantime, you can add the following CSS code inside Customizer > Additional CSS:
.is-dark-theme .tw-blog-card-shadow .hentry, .is-dark-theme .tw-blog-card-shadow .entry-footer, .is-dark-theme .tw-blog-card-shadow .entry-title a { color: #000; }Have a nice day,
TomHi,
Twentig is a plugin, it can’t change the Twenty Twenty theme’s files. Even if the theme you mentioned is based on Twenty Twenty, it’s an entirely new theme. A magazine layout would require changing the blog’s HTML markup, which we can’t do inside a plugin.
Have a nice day,
TomHi,
Unfortunately, it’s not possible to achieve a magazine list layout due to how the Twenty Twenty theme is coded.
Have a nice day,
TomHi Calvin,
We’ve released Twentig 1.2.8, which includes the code.
Thanks again for the feedback.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi Richard,
The issue you encounter with the different button colors is due to the Twenty Twenty-One theme that changes the colors depending on the background color of the block’s parent.
To create a green-button class, you can try the following CSS:
.wp-block-buttons .wp-block-button.green-button .wp-block-button__link:not(:hover):not(:active) { color: whitesmoke !important; background-color: rgb(14, 199, 100) !important; } .wp-block-buttons .wp-block-button.green-button .wp-block-button__link:hover, .wp-block-buttons .wp-block-button.green-button .wp-block-button__link:active { color: whitesmoke !important; background-color: rgb(14, 199, 100, 0.8) !important; }The code is a bit complicated, but it’s needed to override the theme’s CSS.
Have a nice day,
TomHi,
The CTP Post Layout setting concerns only the layout, not the content. The content is handled by the Twenty Twenty-One theme that displays the meta only if the post type is “Post”; this is why nothing is displayed for your Portfolio post type.
As the CTP UI plugin says: “While CPTUI helps solve the problem of creating custom post types, displaying the data gleaned from them can be a whole new challenge.”
To achieve it, you need to write some custom PHP code inside your CPT archive template file. As this issue isn’t related to Twentig and I’m not familiar with this plugin, you can try opening a ticket on their support forum.
Have a nice day,
TomHi Richard,
What you can do is add a CSS class to the Columns block and add some custom CSS inside the Customizer. To do so:
- Select the Columns blocks.
- Open the sidebar settings and under Additional CSS Class(es), add the new class e.g. cols-hide
- Then open the Customizer, and inside Additional CSS, paste the following code.
@media (max-width: 1023px) { .cols-hide .wp-block-column:last-child { display: none; } } @media (max-width: 651px) { .cols-hide .wp-block-column:nth-child(2) { display: none; } }Have a nice day,
TomThanks for your answer.
In the Chrome Console panel, do you see any error messages?
Press Command+Option+J (Mac) or Control+Shift+J (Windows, Linux, Chrome OS) to open the Console panel.Hi,
I’ve deactivated Twentig and installed the WP Last Modified Info plugin with Twenty Twenty-One. It seems this plugin isn’t compatible with Twenty Twenty-One as nothing is displayed. As this issue isn’t related to Twentig, you should open a ticket on the WP Last Modified Info support forum .
Have a nice day,
TomHi,
I’m not sure to perfectly understand what you want to achieve. But if you want to remove the title on single Status Post Format, you can add some custom CSS (Customizer > Additional CSS).
.single-format-status .entry-header { border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; word-break: normal }Have a nice day,
TomHi Richard,
Thanks for your message.
To add a border around the menu button, you can add the following custom CSS (Customizer > Additional CSS). Change #212d56 with the color value you want.#site-navigation .menu-button a { border: 1px solid #212d56; }I hope the above is useful to you.
If you enjoy Twentig, please rate it. It would really help me out 🙂
Tom