rcharbonxx
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] “noindex” error in Google Search ConsoleI use this plugin on two sites. One has this problem, the other doesn’t (yet).
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] PHP warningDid you fix this? If not, then it’s not resolved.
Forum: Plugins
In reply to: [WP Super Cache] PHP updateThanks, Scott. Good to know.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Change height of parallax windowThis sorta works:
Changed featured image back to full size (2000×1200)
Added CSS:
/*Computer screen */
@media screen and (min-width: 48em) {
.twentyseventeen-front-page.has-header-image .panel-image {
height: 50vh;
}
}Forum: Reviews
In reply to: [Open Graph and Twitter Card Tags] Messes with tags that should be left aloneMaybe if you had replied in less than 3 months? I tossed your plugin long ago. And I stand by my rating.
Forum: Reviews
In reply to: [Rambo] (Pro version)Lacking in fit and finish, wouldn't refundI got no response to any queries UNTIL I filed the PayPal claim, even after waiting 5 days after first sending a query through PayPal, after waiting before that for a response to my request for an exchange. So the one star is justified.
But thanks for the refund.
Forum: Themes and Templates
In reply to: [Customizr] Override Featured Page imageCustomizr Pro solution:
//override icon image for first FP
add_filter(‘fpc_img_id’, ‘my_fp_imgs’, 20, 3);
function my_fp_imgs( $fpc_img_id, $fp_single_id, $featured_page_id){
$page_img = array(
// page_id => img_id
‘6939’ => ‘7022’,
);if ( array_key_exists($featured_page_id, $page_img) ){
return $page_img[$featured_page_id];
}
return $fpc_img_id;
}Forum: Themes and Templates
In reply to: [Customizr] Edit Open Graph tags for specific pagesCustomizr Pro solution:
//override icon image for first FP
add_filter(‘fpc_img_id’, ‘my_fp_imgs’, 20, 3);
function my_fp_imgs( $fpc_img_id, $fp_single_id, $featured_page_id){
$page_img = array(
// page_id => img_id
‘6939’ => ‘7022’,
);if ( array_key_exists($featured_page_id, $page_img) ){
return $page_img[$featured_page_id];
}
return $fpc_img_id;
}Forum: Themes and Templates
In reply to: [Customizr] How to fix the open graph?My bad. The Jetpack plugin sets og:image to the Featured Image.
Forum: Fixing WordPress
In reply to: Bulk updates of invalid URLsOTOH, I could just get redirects to work. The cPanel GUI for my domain got in the way, and I’m not up to the regex expressions needed by mod_rewrite, but the much simpler Redirect directive for mod_alias worked just fine.
https://httpd.apache.org/docs/2.4/mod/mod_alias.html#redirect
Forum: Themes and Templates
In reply to: [Customizr] Edit Open Graph tags for specific pagesAha. Sorta.
On https://www.y42k.com/publishing-services/ I can turn on “Custom fields” and see that og:image is set to what I want it to be (https://www.y42k.com/wp/wp-content/uploads/2015/04/280×280.jpg). But when I load the page in a browser and look at the source code, og:image is set to the page Featured Image, apparently by Jetpack.
Anyone got any ideas?
Forum: Themes and Templates
In reply to: [Customizr] Edit Open Graph tags for specific pagesHome page problem solved:
https://jetpack.me/2013/07/12/add-a-default-image-open-graph-tag-on-home-page/Forum: Themes and Templates
In reply to: [Customizr] Edit Open Graph tags for specific pagesJetpack is apparantly what sets the default image to “blank.jpg” since my logo is too small. If I load a large logo and enable the “max logo height 100px” setting, , Customizr doesn’t retain the aspect ratio. It only reduces the height, not the width, when it resizes the logo to fit.
Forum: Themes and Templates
In reply to: [Customizr] How to fix the open graph?By default, it appears that Facebook uses the post/page’s Featured Image when you share a post/page. Search the Forums for “Open Graph” for more info.
Forum: Themes and Templates
In reply to: [Customizr] Social media setup/icons missingSometimes users are dumb, sometimes you’re the dumb user. I don’t know how I missed that panel. Thanks.