willss
Forum Replies Created
-
Forum: Plugins
In reply to: [Modern Events Calendar Lite] How I can I see past events on Archive Page?Guys it seems very strange to me that you have the plugin default archive page set to only display future events. What is the reasoning behind this? I’ve never seen this before. We have calendars on other websites and there is a lot of value in showing past events on different types of websites.
With “The Events Calendar”, which we use on another website, they just have different styling for past events (faded) on the calendar view. On list view, the main calendar page defaults to starting from today, but you can still go back and see previous events.
I’m using MEC pro on a website now because there are things I dont like about TEC, but this is something that I just can’t wrap my head around. I’ve never seen a calendar anywhere that completely removes past events. It makes it look like there has been nothing going on and from a user standpoint is really odd.
Forum: Reviews
In reply to: [Accessibility by UserWay] These reviews are almost all fake.And Christina I’m glad you like it, but any company that buys fake reviews needs to be called out, especially huge numbers like Userway did with this plugin. Product quality not withstanding.
Forum: Reviews
In reply to: [Accessibility by UserWay] These reviews are almost all fake.Oh really Userway? Then how do you explain that almost all of your 5-star reviews came over the same 1-2 month period nearly 3 years ago, with the reviewers accounts all being made on the same day, and only making 1 review each? And the reviews sharing a similar template? There is no. possible. way. those are organic reviews. If you didn’t buy them, you paid a company to pay for them. A cursory investigation makes this completely obvious. You’re lying here, or have no idea what you’re talking about. Prove me wrong.
Forum: Reviews
In reply to: [Gutenberg] one step forward, two steps back!I’ll give you one example (OF MANY) which may seem trivial but is just annoying. The h1 in the editor is now styled like it is on the front end. Since we have a site with uppercase styling for h1, it forces uppercase. Of course CSS is something that isn’t permanent so what if we want to remove uppercase CSS in the future? Well when you’re typing in the H1 you cant tell if you accidentally make an extra letter uppercase or not, because they’re all forced uppercase. So the only way to ensure that you get the h1 typed properly is to do it somewhere else and paste it into the header field. Stupid.
Forum: Reviews
In reply to: [Gutenberg] one step forward, two steps back!Ian, have you actually tried putting together a blog post in Gutenberg? It’s the most frustrating experience ever. For me, my wife, clients, everyone I’ve talked to.
thanks Marius
yeah that’s what I meant, changing out the code specific to Yoast to make it work for TSF…thanks for looking into it anyway!
Hey Pierre, thanks for the feedback!
I can’t disable TSF for events calendar, as then all of the pages are removed from the XML sitemap and I don’t want to do that.
Seems odd that TSF is making the Title Tag “untitled”, no?
I’ve dealt with Events Calendar support and although they are friendly, they usually don’t offer much in the way of custom code unless it’s already in their knowledgebase.
Here is the filter you’re talking about. It looks like maybe with the same code but specific to TSF, it could work?:
<?php
// Prevent Yoast from changing Event Title Tags for Event Views (Month, List, Etc,)
add_action( ‘pre_get_posts’, ‘tribe_remove_wpseo_title_rewrite’, 20 );
function tribe_remove_wpseo_title_rewrite() {
if ( class_exists( ‘Tribe__Events__Main’ ) && class_exists( ‘Tribe__Events__Pro__Main’ ) ) {
if( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() || tribe_is_day() || tribe_is_map() || tribe_is_photo() || tribe_is_week() ) {
$wpseo_front = WPSEO_Frontend::get_instance();
remove_filter( ‘wp_title’, array( $wpseo_front, ‘title’ ), 15 );
remove_filter( ‘pre_get_document_title’, array( $wpseo_front, ‘title’ ), 15 );
}
} elseif ( class_exists( ‘Tribe__Events__Main’ ) && !class_exists( ‘Tribe__Events__Pro__Main’ ) ) {
if( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() || tribe_is_day() ) {
$wpseo_front = WPSEO_Frontend::get_instance();
remove_filter( ‘wp_title’, array( $wpseo_front, ‘title’ ), 15 );
remove_filter( ‘pre_get_document_title’, array( $wpseo_front, ‘title’ ), 15 );
}
}
};Hey Sybre one more question on this. If I don’t want to noindex category pages sitewide but do want to noindex the category pages of a custom post type (in this case events from Tribe Events Pro), how would I code that?
Thanks, appreciate it Sybre!