ctrlaltdelete
Forum Replies Created
-
Hi, no that looks like date archives.
I assume you know what “Custom Post Types” are? You have the option to preload them:
If you had a bunch of custom posts of the type “house” Their urls would be:
example.com/house/new-york/ example.com/house/california/ example.com/house/dallas/And to view the archives of all “house” post you would visit:
example.com/house/That last url is the archive of the custom post types that doesn’t get cleared when you post a new house.
So if i create a new “house”:
example.com/house/chicago/In the archives page:
example.com/house/
I will not see it, i will see the cached version with only the first 3 “house”.Does that make sense?
Basically what i’m saying is if i post a “house” i need the plugin to clear the cache of “house” archives. in here: https://i.imgur.com/yhbQQu0.png
- This reply was modified 6 years, 10 months ago by ctrlaltdelete.
I don’t have a live url but i can clarify.
I mean the archives for the custom posty type. If the post type it’s “house” the url would be:
example.com/house/I don’t mean categories or tags, There’s an option to clear them.
But there’s no option to clear the archive of the post type.You can either chose “All caches” OR “home + categories + tags + pagination”
So i’m forced to chose “All”. You might say, well do that. But i have 15,000 posts. I find it a waste of resources to clear uneeded cache.
An option for custom post types is needed.
- This reply was modified 6 years, 10 months ago by ctrlaltdelete.
Forum: Plugins
In reply to: [Redirection] My first regex, need opinionsThank you.
Thanks @finalwebsites This snippet is exactly what i needed.
I mean yeah google “got better” but i don’t really see it. What i see is a lot of useless pagination on the index.
What i recommend doing is noindex paginated archives. AND creating a stand alone “Show all posts” page. Instead of relying on indexed pagination for internal linking.Forum: Plugins
In reply to: [Redirection] My first regex, need opinionsHi, you are right it is get. I tried with 307 and jquery stops updating the content.
This is my code to load paginated on same url:
<script> (function ( $ ) { $("body").on("click", "a.page-numbers", function(e) { e.preventDefault(); $("#main").load($(this).attr("href") + " #main"); $('html, body').animate({ scrollTop: $("#content").offset().top - 70 }, "slow"); }); }(jQuery)); </script>If i set the redirect this won’t work.
When i disable the redirect this works again.
What can i do?Forum: Plugins
In reply to: [Redirection] My first regex, need opinionsI’ve noticed a problem.
I want this to 301 redirect people that come from google or elsewhere or that inserts the paginated url in the browser directly.Because i have not removed pagination. it’s just handled by Jquery now via POST method.
This 301 breaks Jquery.Could we have the option to ignore POST? Like:
https://stackoverflow.com/questions/22342141/htaccess-do-not-rewrite-url-if-post-dataElse i’ll have to move to htaccess. =?
- This reply was modified 6 years, 10 months ago by ctrlaltdelete.
Forum: Plugins
In reply to: [Redirection] Redirect pagintion keep query parametersThanks i’ll give it a go.
Didn’t work here, google simply considers one of the “/” and says couldn’t fetch (the sitemap works fine).
- This reply was modified 6 years, 11 months ago by ctrlaltdelete.
Forum: Plugins
In reply to: [Yoast SEO - Advanced SEO with real-time guidance and built-in AI] SitemapI think this happens to everyone, i don’t think yoast has a clue of why it does.
Only people that have sitemaps from before the new search console was released have no issues.- This reply was modified 6 years, 11 months ago by ctrlaltdelete.
Ideas:
1) Go to Yoast Seo -> General -> Features tab: disable the sitemap. Then enable the sitemap.
2) Go to Worpdress -> Settings – Permalinks. Click “Save Changes”.
3) Do you have many pages? Break the page sitemap into smaller ones, so it takes less time to produce. Add to functions.phpfunction max_entries_per_sitemap() { return 50; } add_filter( 'wpseo_sitemap_entries_per_page', 'max_entries_per_sitemap' );I resolved this, i don’t know how. Sorry!
Hello, now that i believe the php errors are over.
Could you confirm modifying the child theme style.css and clearing the cache also clears the above the fold inline CSS?Thanks gonna give it another go!
Great!!! Imagine sites with several thousands of attachments, backup size becomes huge. I’ll wait for new version.
Taking notes thanks! Glad you are back and well.