sekirowp
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Version 6.2.6Thanks. It seems that the issue has been addressed now. Images from img field now appears both front and backend.
Forum: Themes and Templates
In reply to: [Newsmatic] How to Make Featured Image FullHere’s the screenshot: https://prnt.sc/lKaXt4MLrcoo
My thumbnail featured image has a 1280×720 in size. Other themes got a full thumbnail, while Newsmatic seems to be having some issues handling the thumb sizes.
I am also getting this generated html when I inspect the page.
<div class="post-thumbnail"> <img width="300" height="169" src="https://website.com/image-300x169.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" srcset="https://website.com/image-300x169.png 300w, https://website.com/image-850x478.png 850w, https://website.com/image.png 1024w" sizes="(max-width: 300px) 100vw, 300px"> </div>
- This reply was modified 1 year, 4 months ago by sekirowp.
Disabling PHP in plugins works for me, but is there a way to only disable PHP execution on certain plugins? Like only disable the PHP execution on Gtranslate plugin. Thanks!
Thanks! But I think you missed what I am trying to say.
Instead of Sitename, I want to use Term title on the description. No Sitename at all.
As a workaround, I just tsf()->get_blogname() with $term_name
So here are the codes that I have. Is this correct? It’s showing the description that I need.
if ( $term_name ) { $desc = sprintf( '%s This page covers all the things that you need to know about %s.', $term_name, $term_name ); }
- This reply was modified 3 years ago by sekirowp.
I tried the code that you linked and it worked. But is it possible to change the Sitename to Term title? I can’t figure it how. Thanks!
- This reply was modified 3 years ago by sekirowp.