Forum Replies Created
-
AuthorPosts
-
Gary JonesMember
Google does have a crawl quota, so you could suggest which areas of the site should not be crawled. Do you _need_ to? No.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberAt the absolute minimum, you have to start the Genesis engine
Not true.
Once a child theme is parsed, WordPress will then automatically parse the parent theme. All the Start the engine line does is to shortcut that process so that Genesis functions are available in the global scope. If you keep calls to Genesis functions inside of callback functions, there's no need to load Genesis early.
The issue here is that the OP is trying to treat this as a grandchild theme, but isn't pulling in the magazine pro style.css.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberhttps://kraft.blog/genesis-enews-extended/install/#campaign-monitor-hidden-custom-field would be a good starting point.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberRemove the
.entry-content
from the selector in my snippet, so that the rule applies to alla
elements, not just those inside the entry-content area.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberhttps://www.anicow.com/robots.txt is working fine.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberWordPress doesn't create them by default - they are virtual files. WordPress captures the request and sends back output that looks like a robots.txt file. If you check your hosting via FTP, you won't find them (normally).
The URL https://turbolangs.com/robots.txt seems to be working with something at least.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberEmillie,
The usual debugging process would apply - deactivate all your plugins, and maybe even change your theme to Twenty Seventeen and see if the problem persists. If it does, then you know it's something else (like a redirect in .htaccess). If it doesn't, then activate the theme and try again. If it's still working correctly, activate each plugin one at a time until it breaks again.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberYou'll need to add in responsive styles -
/* Your styles go here for all sizes UPTO XXXpx */ @media only screen and (min-width: XXXpx) { /* Your styles go here for all sizes AT OR ABOVE XXXpx */ }
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberWhat's your site URL?
What's the URL of the test results page?
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
May 6, 2018 at 9:21 am in reply to: Where to eliminate space before "class" in < class=”entry-title”> #219579Gary JonesMemberHave a look in 404.php in your theme.
Have you got Genesis 404 plugin or similar activated?
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberGary JonesMemberI can see the issue on the site.
Have you got any redirects in Yoast SEO (or Redirects plugin), that may be intercepting the comment posting?
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberUser Profile (page) -> User Permissions (heading) -> Genesis Admin Menu (checkbox).
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberThe styling of the
<div class="home-middle widget-area">
and the section / articles inside of it is off - widths + margins being more than 100% etc.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberIn your style.css, there is a:
.entry-content a { color: #e8554e; }
You can edit this hex colour code within the Theme Editor to whatever colour you wish.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberSo, edit each book, amend the publish date, so that it is in the order you want it.
Alternatively, you could add code that would filter the query, but for a small number like this, changing the publish order is easier.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberGary JonesMemberm
is one of the date parameters used by WordPress. See https://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters.As such, it's expecting it to be m={YYYYmm}, like
m=201804
for April 2018.If you try http://www.nithaskitchen.com/?m=201804 you'll see you get redirected to http://www.nithaskitchen.com/2018/04.
Conversely then, your
?m=1
is not finding any results, since that value makes no sense for what WP is expecting.You may need to hook in a function early to check for
?m=1
and remove that query arg.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
April 29, 2018 at 8:40 am in reply to: Yoast SEO plug in adding hyphen before site name in Genesis #219403Gary JonesMember@Victor - it appears you've got a particular page set as the front page.
Does that page have a Title?
If not, and you don't want it to, then you can try setting the page title in the Yoast SEO meta box for that Page.
(which is 99% the same as what Maaike said 🙂 )
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
Gary JonesMemberWrite great content, and people will naturally link to you.
Adding comments to other sites *might* help, though some sites add rel=nofollow to commenters URLs to avoid being penalised for linking to bad sites.
WordPress Engineer, and key contributor the Genesis Framework | @GaryJ
-
AuthorPosts