Doug
Forum Replies Created
-
Forum: Networking WordPress
In reply to: All sub sites of the network missing last slashHi David, thanks for the answer.
The visit link does have the final slash!However my problem is that plugins like YOAST SEO shows all subsites without the slash on the breadcrumbs and the xml sitemap.
Also another plugin “Network Latest Posts” shows them without the last slash.I could go ahead and find a way to hack these plugins to append a ‘/’ at the end, but i rather discover where are they taking this url without the final slash from?
Google has also indexed all this subsites without the slash and that annoys me because it’s not right. since it 301 redirect to the slashed version.
Forum: Plugins
In reply to: [Force Featured Image] Doesn't work at allIt’s wordpress 4.3
I thought the function was only needed if i wanted to specify a size, not to make the plugin work.
I added the function and i see the warning, but it’s no use, authors can still submit the post for review without setting the featured image, it doesn’t force them to set it up, only suggest it.“This post doesn’t have a featured image. Please add an image before publishing.
Post submitted. Preview post”I think this might be intended somehow but i need the plugin to force authors to set the features image, not warn them and still be able to submit the article without the featured image.
Maybe the plugin only stop you from publishing and not when authors submit for review if that’s the case i’ll need suggest that feature or give up on the plugin. =( Sorry
Forum: Plugins
In reply to: [Network Latest Posts] html5 validation error and solutionActually that will make the pagination works with bugs, so i’ll wait for the author input.
Forum: Reviews
In reply to: [WP Super Cache] After 6 years still same bugsYeah why would i make it up T_T
Forum: Reviews
In reply to: [WP Super Cache] After 6 years still same bugsTwenty fourteen…
the plugin even has a feature to send you an email if the front page is different than it should so that proves the error still happens.I still receive this emails today:
“Please visit /wp-admin/options-general.php?page=wpsupercache to clear the cache as the front page of your site is not correct and missing the text, “welcome”!Forum: Plugins
In reply to: [Stylish Top Author Widget] not valid hml5Hi, i’ve removed all those lines from the php file and added this:
codei.icon-android{margin-right:5px}code
to my child theme css instead.
It validates now.I have the same issue when the cache expires it tries to remake all pages at the same time, the load goes insane, even with preload enabled.
And It crashes the site:
http://postimg.org/image/iatp10a7b/Any solution? I want to limit the amount of pages that get created at the same time when the page cache expires.
Usually when that happens i uncheck the box that says
“Check this box to enable XML sitemap functionality.”
Save settings
Check it again
Save settings again
And the sitemap comes back.Try it.
Oh btw this is a multisite so yoast generates a different sitemap for each site. Does it still work if i put no sitemap? i have 11 different ones :S
Hi no i wasn’t, so this is the limiter i was looking for? It generates the cache for pages visited instantly and it also generates for pages not yet visited on the interval set?
Seems like a solution, thanks!
I never delete the cache, it expires naturally after 7 days, then the plugin tries to regenerate 3000 posts at the same time and crashes the server (load over 250+), the number of posts should be capped but it’s not…i don’t get it how can it behave like this.
no support.
Same problem i added a set of words to the array i didn’t want there, the plugin ignores them.
Forum: Plugins
In reply to: [Blogger Importer] How to clean the database after using this plugin?Thank you i think maybe as a feature the plugin could have a button to remove all it added to the db.
But thanks for the info i’ll do a manual cleaning for now trying to reduce the db backup size and i found all this data i don’t need anymore.Cheers! great plugin.
Forum: Networking WordPress
In reply to: Presetting content in the post editor on multisiteHi thanks for the reply, i think i found a better way to do it, on functions php add:
global $blog_id;
if ($blog_id == 1) {
//blog 1 content
}if ($blog_id == 2) {
//blog 2 content
}etc.