Webbasica
Forum Replies Created
-
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Slow queryI can live with that. Most of my posts use blocks anyway, so all good.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Slow queryThanks!
Repercussions of doing this?Forum: Plugins
In reply to: [Visual Link Preview] New URL, same old CardOK, I’ll explain step by step.
I add the block, add the external URL, and the previsualization card gets created. Only, the thumbnail and the Title is from a previous previsualization card.
I have created a custom theme for the previsualization cards, which shows the URL below the Title and the excerpt. That URL changes (it’s the right one), but everything else is from an old card (wrong).
This might be all for nothing though, because today, on a new post, everything worked fine.
Forum: Plugins
In reply to: [Visual Link Preview] New URL, same old CardSorry, it’s a private site. All public links, but not the same URL, so it’s not one site.
Forum: Plugins
In reply to: [A-Z Listing] Load styles for specific category onlyThat last one worked great.
Thanks!Forum: Plugins
In reply to: [A-Z Listing] Load styles for specific category onlyThat is exactly what I’m trying to do. To load the css files on the archive page of category 20, using:
add_action( 'init', 'your_override_wrapper_function', 99 ); function your_override_wrapper_function() { if ( ! is_category( '20' ) ) { // ID is numeric, slug is a string. return; // we don't want to run for anything except the page we're interested in. } a_z_listing_force_enable_styles(); // this is the page we want, so run the function to enqueue the styles. }
Forum: Plugins
In reply to: [A-Z Listing] Load styles for specific category onlyThanks for the reply.
It is a category, and I also tried removing the conditional and the CSS loads as expected.Just one last clarification. I’m trying to load the css at the archive page, the actual category index.
Forum: Plugins
In reply to: [Super Page Cache] For a publishing site, cache takes too longCool, thanks!
Forum: Plugins
In reply to: [Polylang] 2.3.9 has a conflict with Calendar WidgetThanks, that worked.
I think I’ll wait for the migrator. Let me know when that’s available.
So, other than setting it up again, is there something that can break?
Forum: Plugins
In reply to: [FitVids for WordPress] No longer workingNever mind, it was WPRocket’s lazy loading feature.
Forum: Plugins
In reply to: [Custom Post Type UI] CPT menu items disappear after exporting codeMy plan was to disable the plugin and simply add this code to the functions.php. When I do that (and clear cache), the link disappears in the Dashboard menu, even though the custom posts show up in the frontend.
Forum: Plugins
In reply to: [Custom Post Type UI] CPT menu items disappear after exporting codeForum: Plugins
In reply to: [Custom Post Type UI] CPT menu items disappear after exporting codeI put the exported code in the theme’s functions.php file