kevaM
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type Auto Menu] Can’t assign CPT to Menu Item with ampersandThank you – I searched support for this issue, but didn’t check the readme.
I checked it on Mac El Capitan, Chrome 79.0.3945.88 and can’t replicate the issue.
It could be due to acceleration in Chrome, or a system font that Chromium doesn’t play well with.I also had a taxonomy with the name “Status” that caused the same error. the name probably conflicts with an internal name. I changed the taxonomy to “Article Status” (including changing the slug), and the issue went away.
I did both ‘create browser key’ and ‘create server key’, the map displayed in the main box, but I then got the same error that OP saw. So I then had to manually add the other APIs to fix it. Maybe something has changed with the API process?
to clarify, I had to add these manually:
– Google Maps Directions API
– Google Maps Distance Matrix API
– Google Maps Elevation API
– Google Places API Web Service (I didn’t see this, but enabled “Places API”)It might help to list all the APIs that need to be enabled when generating new keys.
Google Maps JavaScript API
Google Maps Geocoding API
Google Maps Directions API
Google Maps Distance Matrix API
Google Maps Elevation API
Google Places API Web ServiceThese are listed under “Use an Existing Project” but they also all need to be enable with a new project, too, and would help solve the problem OP had.
I have this same issue.
- “Add Open Graph meta tags to your shared posts or pages” is checked
- The right image is specified by the og:image tag
- The page previews correctly at https://developers.facebook.com/tools/debug/
But the B2S Facebook page post is pulling in the website’s logo instead.
The Twitter post uses the correct twitter:image.Forum: Plugins
In reply to: [Meta Box] Uploaded image not showingvvivianne, try this post, it may help: https://ww.wp.xz.cn/support/topic/how-to-display-images-in-the-front-end
Forum: Plugins
In reply to: [Meta Box] How to display images in the front end?Metabox image field returns an array. To get just the array value you need, try
<?php $image = rwmb_meta( 'unveil_background-image', 'type=image'); foreach ($image as $key => $value) { echo '<img src="' . $image[$key]['url'] . '" />'; } ?>To see all the available values in the array, add this to your template:
<?php $image = rwmb_meta( 'unveil_background-image', 'type=image'); print_r('<pre>');print_r($image);print_r('</pre>'); ?>Forum: Plugins
In reply to: [What The File] Set Toolbar display by rolethat would be great! Right now, general subscribers can see the link, which is just odd.