blazmate
Forum Replies Created
-
For the caption you have only the option to choose Cover and show on hover. The obvious Compliment to that is cover and show always which is unavailable
Forum: Fixing WordPress
In reply to: Gutenberg cover blockI don’t want to keep exact ratio, but I want it to look similar.
THe change from super wide to square doesn’t work for 99% of pics.It’s called ‘Minimum Height’ but whatever size viewport it’s that exact height. Nothing responsive about it.
Forum: Fixing WordPress
In reply to: Finding orphan thumbnailsthis is going into php programming right?
it’s a bit beyond me !Forum: Fixing WordPress
In reply to: Finding orphan thumbnailsNo not all 30×30 files.
You need to check like I said
There are 6-7 sizes for each filename
You can’t be sure what’s thereForum: Plugins
In reply to: [Yoast SEO] Bulk editor for custom post typesOh. I used theme 2021, CPT UI 1.8. Added new CPT, no options changed.
Doesn’t show up in SEO tools.
No other pluginsForum: Plugins
In reply to: [Yoast SEO] Bulk editor for custom post typesI use CPT UI plugin
WIth ALL plugins off but seo & cpt, I see posts, pages in the bulk editor
No CPT at all.With normal, even pages don’t show in the bulk editor.
Forum: Fixing WordPress
In reply to: Gutenberg gallery to imageSo due to gut having BOTH code and html versions of the same thing on site, there’s no way to search/replace easily.
I could generate a replace to
<!– wp:image {“id”:32301,”sizeSlug”:”large”,”className”:”nolazy”} –>
but the editor won’t take that and generate all the html below it.You have 5x the dom elements affecting your site speed and seo with a 1 image gallery. And bad thing is they will never update the alt text if you update an image. That was the original point of using a gallery in old editor.
Forum: Fixing WordPress
In reply to: Gutenberg gallery to imageabout five more Dom Elements For gallery
Forum: Plugins
In reply to: [Yoast SEO] Bulk editor for custom post typesI’m saying for yoast seo the settings appear in custom post types if you edit 1 by 1
but in the bulk editor you cannot choose it
so unless I edit 1 at a time
it won’t show it.Forum: Plugins
In reply to: [Yoast SEO] Bulk editor for custom post typesyeh it shows “posts” only
not even pageForum: Plugins
In reply to: [Contact Form 7] Check double nameok.
seems you need only things that apply to all sites on the theme- This reply was modified 4 years, 3 months ago by blazmate.
Forum: Plugins
In reply to: [Contact Form 7] Check double nameThis is a filter, so it will live inside the theme file?
Since I use
<div class=”one-half first”>[text* fname placeholder “First Name*”]</div>
<div class=”one-half”>[text* lname placeholder “Last Name*”]</div>I can’t test for a type, it’s just text?
add_filter( ‘wpcf7_validate_text*’, ‘name_validation_filter’, 20, 2 );function name_validation_filter( $result, $tag ) {
if ( ‘fname’ == $tag->name ) {
if ( $_POST[‘fname’] == $_POST[‘lname’] ) {
$result->invalidate( $tag, “Are you sure this is the correct address?” );
}
}return $result;
}This will give an eerr msg, whereas the discussion spam words will just make the msg disappear right?
Forum: Plugins
In reply to: [WP YouTube Lyte] Do we need this for gutenbergSure can I email you privately
I have a few different pages.Forum: Fixing WordPress
In reply to: Missing field ‘uploadDate’Yes that’s right. I did, but it opens the image. Ie the page is gone.
THis is how it works in many other galleries
https://visualcomposer.com/help/content-elements-structure/lightbox/