ezoulou
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] since 6.4.2 one cannot change header to a specific pageHi, you may create a template for a specific page (per page), or create a blank template for your pages and include your header in the content of the pages themselves.
RegardsForum: Plugins
In reply to: [Gutenberg] patternHi, Patterns are now renamed compositions. Head to Admin > Appareance > Modify your theme > Compositions.
RegardsForum: Plugins
In reply to: [YITH Auctions for WooCommerce] Translation ignoredIn case it helps someone :
I found out my website was configured in fr_BE and was looking for this translation file : yith-auctions-for-woocommerce-fr_BE.
But the module only contained a yith-auctions-for-woocommerce-fr_FR file.
I did duplicate this yith-auctions-for-woocommerce-fr_FR file and renamed it yith-auctions-for-woocommerce-fr_BE and it worked fine.
- This reply was modified 11 months, 3 weeks ago by ezoulou. Reason: I forgot to mark as resolved
Forum: Fixing WordPress
In reply to: Hamburger menu suddenly not working on mobileHi, check your browser console, you’ll see a javascript error : missing the JQuery library.
A solution might be to request this dependencies in your theme functions.php :
function enqueue_jquery() { wp_enqueue_script('jquery'); } add_action('wp_enqueue_scripts', 'enqueue_jquery');
Cheers
- This reply was modified 1 year, 1 month ago by ezoulou.
The basic option would be using the ‘template’ option while registering new post type [https://developer.www.ads-software.com/reference/functions/register_post_type/] but you have to write the default content in php!!
Your solution is way more flexible since it uses the Synced Patterns (a.k.a reusable blocks) which can easily be edited via Gutenberg.
Thank you so much @mrfoxtalbot !!Forum: Plugins
In reply to: [Meta Field Block] IframeThanks yo so much for the quick answer, I’ll give it a try.
By the way, your fantastic plugin also solved my bug (same as mentioned here : https://github.com/WordPress/gutenberg/issues/35676#issuecomment-1567481399)
Forum: Fixing WordPress
In reply to: theme.json is cached when viewing a page/post@chrion At first I didn’t quite understand your #post-15344825 proposal.
But tryed it and it worked perfect!
Thanks you very much. U saved my day! ??Forum: Fixing WordPress
In reply to: theme.json is cached when viewing a page/postHi folks,
Having the same kind of issue here : latest styles show ok in backoffice but not in frontend (which uses data from a very old theme.json version).
I can fix this using either
define( 'WP_DEBUG', true);
or
define( 'SCRIPT_DEBUG', true);
Which is ok while developping.
But I don’t want keep these when on production.Any tips on how to force clear theme.json cache?
Cheers
Forum: Developing with WordPress
In reply to: theme.json only displays in backend editorThere must be some sort of conflict somewhere then.
How about either convert your theme into a block theme OR keep your theme but define your styles in a simple style.css file?Forum: Developing with WordPress
In reply to: theme.json only displays in backend editorCan you share your theme.json? (To be clear, you miss typography and colors for instance?)
Most settings from theme.json can be overidden via the wp FSE backoffice (https://ezoulou.com/wp-admin/site-editor.php) > theme options (moon like icon). Did you check there?
Forum: Developing with WordPress
In reply to: theme.json only displays in backend editorTry adding this in yourtheme/functions.php
add_action( 'wp_enqueue_scripts', 'mytheme_add_style' ); function mytheme_add_style() { wp_enqueue_style('theme-css', get_stylesheet_uri(), [], wp_get_theme()->get('Version')); }
Forum: Fixing WordPress
In reply to: 404 when going to another page from Home1. In général site options, site address and home URL fields : make sure locolhost IS used and not IP.
2. Eventualy try better search replace extension to change strings : IP to ‘localhost’
CheersForum: Fixing WordPress
In reply to: 404 when going to another page from HomeHow about resave permalinks?
https://192.168.20.83/mysite/wp-admin/options-permalink.phpForum: Developing with WordPress
In reply to: theme.json only displays in backend editorHi, do u have a templates/index.html file?
Forum: Developing with WordPress
In reply to: Image helpHave you tried a banner block containing a buttons block?