screen-b
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] How to include event posts in normal archive loop?Hello @cheskatec,
my posts are not collected on the front page, but on anoter custom page. There you can find all posts including events.
But they are not shown, when I want to display both types in a category archive, though they are categorized with the same categories.
I used a function for this feature:/* * Original Gist: https://gist.github.com/niconerd/4445c5e205ef1de3690f6094159e9f88 */ function tribe_enable_post_categories( $args ) { $args['taxonomies'][] = 'category'; return $args; } add_filter( 'tribe_events_register_event_type_args', 'tribe_enable_post_categories' );
index.php and archive.php use the same routine to run the loop. For testing I deactivated archive.php but the result is the same: on my blog page the events are visible, within category page not.
The events are stored in the table wp-post in the database. These post’s categories are related in the wp_term_relationships table. But obviously are they ignored.—————–
Finally: I did some more research and found the solution:
https://thomasgriffin.com/how-to-include-custom-post-types-in-wordpress-archive-pages/It is a wordpress core thing. But maybe you could integrate this into your feature “Show events with other posts”
Forum: Plugins
In reply to: [OSM - OpenStreetMap] Block EditorSorry, next day the feature appeared on the screen.
Forum: Plugins
In reply to: [VS Event List] ICal subscriptionThanks a lot.
I finally activated UTC via plugin – first didn’t get, what you meant.
And 30 feed postst made it!Have nice holidays!
Forum: Plugins
In reply to: [VS Event List] ICal subscriptionTime setting is Berlin, what is right and the same as in my thunderbird lightning calendar, where the strange times occur.
And page is for example this one:
https://weltweitwissen2022.de/der-kongress/programm/tag-1/Forum: Plugins
In reply to: [VS Event List] ICal subscriptionAh, great hint, thanks. I set to 20 now. But it does not work, sorry.
Times are totally wrong, also, I notice just by now. (11.30 instead of 9.30 by example)
I already switched everything off an an again.
But take a break – it does not have to work before Christmas :-).
Forum: Plugins
In reply to: [VS Event List] ICal subscriptionHi Guido,
I mean, I have events for three days: May, 4th, 5th and 6th 2022, but in my Thunderbird calender only appear events for 5th an 6th.
Jubee
Forum: Plugins
In reply to: [Page-list] depth=”1″ has no effectSame with me.
“This plugin hasn’t been tested with the latest 3 major releases of WordPress.”
The output is no longer a list, but shows <div></div> instead, whithout hierarchy.
It’s a pity. This is one of my favorite plugins and should be part of Gutenberg blocks.Forum: Plugins
In reply to: [Adminimize] customizer hiding never works+1 Same with me.
Forum: Themes and Templates
In reply to: [Kale] How to disable connection to Google Fonts serversSorry, the site is not yet open to the public.
Can I send a personal message?Forum: Themes and Templates
In reply to: [Kale] How to disable connection to Google Fonts serversHi, Diego,
I added the code you suggested:
add_action( 'wp_enqueue_scripts', 'child_theme_styles' ); function kale_dequeue_unnecessary_styles() { wp_dequeue_style( 'kale-fonts' ); wp_deregister_style( 'kale-fonts' ); } add_action( 'init', 'kale_dequeue_unnecessary_styles' );
In total:
<?php /** * Child theme stylesheet einbinden in Abh?ngigkeit vom Original-Stylesheet */ function child_theme_styles() { wp_enqueue_style( 'kale', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'mk_kale', get_stylesheet_directory_uri() .'/style.css' , array('parent-style')); } add_action( 'wp_enqueue_scripts', 'child_theme_styles' ); function kale_dequeue_unnecessary_styles() { wp_dequeue_style( 'kale-fonts' ); wp_deregister_style( 'kale-fonts' ); } add_action( 'init', 'kale_dequeue_unnecessary_styles' ); ?>
Thanks
JuttaForum: Themes and Templates
In reply to: [Kale] How to disable connection to Google Fonts serversHi Diego,
Unfortunately – no, it did not work.
Best regards
JuttaHello!
Thanks – that did it for me ??
JuttaForum: Themes and Templates
In reply to: [Kale] How to disable connection to Google Fonts serversThanks for your replay.
I already installed other fonts via child theme.
I do not not need the meta link to Google fonts.
How can I delete it?Regards
JuttaPS for others with the same problem:
The saving problem was a Strato security item.
I found this helpful hint: https://blogs54.de/blog/2013/05/wordpress-und-der-503-error-bei-strato/Hi, Robert,
OK, I solved the saving problem.
But now I want to change the basemap from OpenStreetMap to stamen for an existing layer. Or From OpenStreetMap Colored to Black and White?
How to do this?
The bulk change tool does not offer Stamen…Thanks,
Jutta