Mark
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Images don't appear when not logged inThere’s a photo in the left nav and a photo in the post.
One friend recommended I activate a caching plugin, delete the cache, and turn caching on. I don’t know much about how caching or caching plugins work, but did that, and perhaps I solved the issue. Not sure.
Forum: Plugins
In reply to: [Knight Lab Timeline] Timeline not working in Firefox or IE (Works in Chrome)Forum: Themes and Templates
In reply to: Hueman – Change font color in center of home pageThank you!
Forum: Themes and Templates
In reply to: Portfolio Press, menu not working on mobile devices.I have the same problem – no menu appearing on mobile, and I did not remove the footer. Any help would be appreciated. Thanks!
Forum: Fixing WordPress
In reply to: Add New Post is brokenWell, that was easy. Thank you @macmanx.
Evidently the PixCodes plugin included in the Heap theme was causing my problem.
Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipOk. I didn’t get it to work via the addition of that code in a functions.php in the child, but looking more closely at the WordPress SEO plugin, I made it work there. AND – added bonus – I set up my child theme so that I can now make changes to the CSS that will persist with updates to the Customizr theme. Thanks all!
Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipAhhh. The rel=publisher is coming from WordPress SEO plugin. I still don’t have rel=author code from the child functions.php showing up.
Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipOk. Interesting. The code I added specified link rel=”author” (which is why I was searching for “author” in the source) but the source says link rel=”publisher”. Any idea why it flipped or if there is a difference to Google?
Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipForum: Themes and Templates
In reply to: [Customizr] Google AuthorshipI’m not seeing the authorship code in view source. Here’s exactly what I put in the functions.php file:
<?php
/**
*
* This functions.php file is ONLY for the Child Theme
*///Add page authorship for my web site
add_action(‘wp_head’, ‘add_google_rel_author’);
function add_google_rel_author() {
echo ‘<link rel=”author” href=”https://plus.google.com/106532785326335558821″ />’;
}Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipOk Nicola, I’ve created the child theme. I think you’re saying that I create a new functions.php file in the child theme folder and that the only code in that file is what you have above – correct?
Mark
Forum: Themes and Templates
In reply to: [Customizr] Google AuthorshipThanks for the quick reply, Nicola.
Is the child theme necessary? It seems as though I could add this code snippet without it, no?Mark
Forum: Themes and Templates
In reply to: [Customizr] Favicon shows on homepage but not on pagesI found the location where favicon1.ico is expected and added it.
Forum: Themes and Templates
In reply to: [Customizr] Favicon shows on homepage but not on pagesSimilarly Google Authorship seems to only be working on homepage (that may be a different issue entirely).
Forum: Themes and Templates
In reply to: [Customizr] RSS and Social Icons not displaying in header@barlow12 Here’s what I have in my htaccess document:
Order Allow,Deny
Deny from all
<Files ~ “.(css|jpe?g|png|gif|js|woff|ttf|svg)$”>
Allow from all
</Files>Notice the Allow from all files include woff|ttf|svg. These are the filetypes of the genericons used to create those images in this theme. Make sense?
Mark