Yann
Forum Replies Created
-
Hi Peter,
Thank you for your feedback and the heads-up.
We are aware of the incompatibility issues with WordPress 6.3 RC. We will update Twentig to fix these issues before the release of WordPress 6.3 on August 8.
Have a nice day
You’re welcome. Would you mind leaving us a quick review on our plugin page? This allows us to continue providing great features and helps other users to find us. 🙂
Hi Marie,
Thank you for reaching out to us.We no longer provide a link to the Customizer as WordPress now includes a built-in feature for block themes to add custom CSS. To access this feature, please follow these steps:
- Log in to your WordPress dashboard.
- Navigate to “Appearance” > “Editor.”
- Inside the Editor, you’ll find the Styles sidebar. Click on the three vertical dots to open “Additional CSS” (refer to the screenshot here: https://i.imgur.com/HIegR36.png).
Regarding access to the Customizer, you can still use it by visiting the following URL on your site (replace “example.com” with your actual site URL): https://example.com/wp-admin/customize.php
Have a nice day,
YannHi there,
To better assist you, could you please let me know which WordPress theme you are using? Also, could you clarify what you want to achieve?
Thanks.Hi,
Thanks for the feedback. Twentig isn’t fully compatible with the Gutenberg plugin as some of Gutenberg’s features are experimental and unstable. Regarding the error on your site, could you please clarify if this issue is occurring on all pages, or is it limited to specific ones?
Apologies for the oversight. You’ll also need to include the following CSS code beneath the one provided previously:
.tw-blog-grid .hentry .entry-content { pointer-events: auto; }Your videos should function properly now. 🙂
For the Twenty Twenty-One theme, you can add the following CSS code in the Customizer > Additional CSS panel to deactivate the “stretched links” option on the blog page.
.hentry h2.entry-title a::after { content: none; }Hope that helps.
Would you mind leaving us a quick review on our plugin page? This allows us to continue providing great features and helps other users to find us. 🙂
Hi,
Unfortunately, the Twenty Twenty-One theme does not allow the display of tags immediately after the content. To achieve this, you would need to create a child theme and modify the code for single post.
Have a nice day,
YannIf you’d like to remove the Google Fonts added by Twentig, you can accomplish this by adding the following PHP code into the functions.php file of your child theme. (This code also includes the solution provided in your previous thread https://wordpress.org/support/topic/twentig-overrides-child-theme-theme-json/):
function child_theme_support() { add_filter( 'twentig_curated_google_fonts', '__return_empty_array' ); remove_filter( 'wp_theme_json_data_theme', 'twentig_filter_theme_json_theme' ); remove_action( 'wp_enqueue_scripts', 'twentig_twentytwo_enqueue_scripts', 12 ); } add_action( 'after_setup_theme', 'child_theme_support', 20 );Hope that helps,
YannHi,
I understand that you’re using a child theme of Twenty Twenty-Two. By default, Twentig adds some CSS modifications to this theme, which are overriding your customization. To turn off this feature, you can add the following PHP code into the functions.php file of your child theme:
function child_theme_support() { remove_action( 'wp_enqueue_scripts', 'twentig_twentytwo_enqueue_scripts', 12 ); } add_action( 'after_setup_theme', 'child_theme_support', 20 );Hope that helps,
YannHi Anne,
Thanks for the kind words. Would you please tell me which theme you are using?
Thanks,
YannFor the Twenty Twenty-One theme, you can add the following CSS code in the Customizer > Additional CSS panel to add the word “In” in front of the category of the article.
span.cat-links::before { content: 'In '; }Hope that helps,
YannHi,
For the Twenty Twenty-One theme, you can add the following CSS code in the Customizer > Additional CSS panel to remove the # symbol in the tags and put the “Tags:” text before:
.tw-no-meta-label .tags-links a::before { content: none; } span.tags-links::before { content: 'Tags: '; }Hope that helps,
YannHello,
I regret any confusion, but Twentig does not provide the ability to add a sidebar in the Twenty Twenty and Twenty Twenty-Two themes. However, for the Twenty Twenty-One theme, the Twentig plugin does indeed have an option to add a sidebar.
In the case of the Twenty Twenty-Two theme, it has been built with the Full Site Editing (FSE) feature, which means you can create and modify templates for any area of your website including sidebars using the site editor (Appearance > Editor > Templates). There you can edit the template of your choice and add a sidebar by adding a Columns Block.
Hope that helps,
Yann
Hi
Follow these steps to enable the “Link Target” option:
- Open the Customizer, then navigate to the Menus panel.
- At the top, click on the Cog icon.
- A list of checkboxes will appear. Look for and check the box that says “Link Target”.
See screenshot: https://i.imgur.com/WN4rIsj.png
Next, click on the menu you want to edit:
- Click on the link that you want to open in a new tab.
- Under the navigation label, check the “Open link in a new tab” box.
See screenshot: https://i.imgur.com/HIMuXjY.png
I hope this helps.
Yann