Bruno Braga
Forum Replies Created
-
Forum: Plugins
In reply to: [WP REST Cache] Multiple object typesHi!
That’s actually exactly what we ended up doing in order to get around the issue.
Thanks for the reply anyway!
Forum: Plugins
In reply to: [Yoast SEO] Yoast 19 adding sitemap links in robots to all sites – multisiteImagine a network where all the subsites have nothing to do with each other. They are completely different clients who aren’t aware of each other’s existence.
It doesn’t make sense to have one site “advertise” another.
I understand it’s not a bug, it’s an intended feature, but it would be best to have an option to disable this behaviour, because if the users aren’t devs, they won’t be able to add a filter to work around this.
Thank you
Forum: Plugins
In reply to: [Yoast SEO] Yoast 19 adding sitemap links in robots to all sites – multisiteHello
1. It happens on both scenarios.
2. Yes, but they are also added when you activate the plugin only on the subsites.
2. No. If the plugin is active on only one subsite, Yoast only generates 1 sitemap, so it’s only normal that only 1 sitemap is displayed.The thing is, I don’t understand why all these questions to try and “debug” the “issue”. The devs know exactly why this happens, because it’s intended:
public function filter_robots( $robots_txt, $public ) { // If the site isn't public, bail. if ( $public === '0' ) { return $robots_txt; } $robots_txt = $this->change_default_robots( $robots_txt ); $robots_txt = $this->add_xml_sitemap( $robots_txt ); return $this->add_subdirectory_multisite_xml_sitemaps( $robots_txt ); }
The last line runs a method that iterates through all the subsites and adds their sitemaps to the robots.txt.
- This reply was modified 2 years, 9 months ago by Bruno Braga. Reason: Provide further information
Forum: Plugins
In reply to: [Yoast SEO] Yoast 19 adding sitemap links in robots to all sites – multisiteI’m having the same issue as Jeff.
Every sitemap on the network is getting added robots.txt of every site. This shouldn’t be happening.
Either fix this or give the user a way to disable this “feature”.
Thank you.
Forum: Plugins
In reply to: [Contact Form 7] 410 Gone on Updating (save changes)@takayukister I have these installed: https://imgur.com/6Jd2hoY
Thanks for the quick responses!
Forum: Plugins
In reply to: [Contact Form 7] 410 Gone on Updating (save changes)@takayukister 4ancientdb.com
Thanks.
Never mind. It was a image upload permissions issue. I had to change some folders from 755 to 777 and it was all fixed.
- This reply was modified 7 years, 6 months ago by Bruno Braga.
Forum: Fixing WordPress
In reply to: Can’t access Permalink on WP-AdminI fixed it by moving the wordpress instalation o a new folder… I works now. Thank you anyway.
Forum: Fixing WordPress
In reply to: Can’t access Permalink on WP-AdminThanks for the reply Steve, but I’ve already done that:
“I couldn’t login anymore, until I restored the htaccess I had backed up.”
- This reply was modified 8 years, 4 months ago by Bruno Braga.
Forum: Plugins
In reply to: [Slideshow] Video Slide Remove Controls?Hi, and thank for your answer
What about the youtube controls? Where can I customize the api?
Thanks in advance
BrunoForum: Plugins
In reply to: [Loco Translate] Translating Theme – Error ForbiddenI did it!
I followed some tips from the post you linked before: deleting the language files and forcing the plugin to create new ones fixes it.
Forum: Plugins
In reply to: [Loco Translate] Translating Theme – Error ForbiddenThat’s exactly what I was trying to do, thank you BUT say what, yeah, you guessed it, forbidden.
I can download the file but BEFORE synching. If I press the synch button and then try to download it, it gives me the Forbidden error page. (both on .po and .mo download buttons)
Forum: Plugins
In reply to: [Loco Translate] Translating Theme – Error ForbiddenIs there any way I can synchronize the file with the source code without saving it?
I mean, I want to synchronize the file because there’s 96% of expressions missing on the file (yes, almost everything is missing), I want to download it and translate it myself, without Loco Translate.
Forum: Plugins
In reply to: [Loco Translate] Translating Theme – Error ForbiddenOk, thanks a lot for you fast answer and sorry for the duplicate post.
Thanks a lot for your answer! What you said really worked out BUT I want to do the REVERSE.
I don’t want to show those rows, I want to hide them. Is there a way that I can do it?
To give you some details that might help: I want to write “GREEN” or “RED” on that column. If that column is empty, it should hide the row.
EDIT: Never mind, I’m dumb. What you said is right. Thanks a lot for your answer once again. Cheers!