scott_ease
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty] Link site-description to urlOnly style part (not entire) of the description with color, margin, font weight or size. That’s why I need the tagline to recognize html code. Thank you.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Link site-description to urlIt works. I appreciate!
If I’d like to use “My <*strong*>Impressive<*/strong*> Description” as tagline, how to make the program recognize html code?
With some other old themes, I can just change header.php file in Child Theme, replacing <?php bloginfo( ‘description’ ); ?> with <?php echo html_entity_decode(get_bloginfo(‘description’)); ?>.
But TwentyTwenty is coded different from previous themes. Is there a piece of php code snippet to make that happen?
Thank you.- This reply was modified 2 years, 3 months ago by scott_ease.
- This reply was modified 2 years, 3 months ago by scott_ease.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Link site-description to urlIn this case, the description can no longer be edited from admin panel. Is it possible to just overwrite $wrapper using php code snippet in Child Theme function.php file? Thank you.
- This reply was modified 2 years, 4 months ago by scott_ease.
Forum: Fixing WordPress
In reply to: WordPress latest versions break calendar widgetThank you, Steven. The latest versions are a little different from previous updates. This time I have to add following codes to my child theme:
.wp-calendar-nav { background: #f4f4f4; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; }
Thanks again.Forum: Fixing WordPress
In reply to: WordPress latest versions break calendar widgetThank you for your reply. I built a test website without any plugin at https://test.angelcorp.net/ You can see the footer of the Calendar is cut off. I tried 2020&2019&2017 themes. The correct way can be seen at https://angelcorp.net/blog/
In fact the error appeared in latest 2or3 versions. I thought the team would correct it. Any idea to fix the error? Thank you.I found this article very helpful
https://mhthemes.com/support/knb/overriding-parent-theme-functions-child-theme-tutorial/I followed the first instruction “simply take the function from the parent theme, without the conditional tag, put it in file functions.php of your child theme and let it run whatever you like”, and got things done.
Thank you.
Forum: Themes and Templates
In reply to: [Doctorial] Dequeue google fontsMy goal is to keep parent theme intact, and dequeue google fonts from child theme.
Is it possible?Currently I commented out line 163 of functions.php file from parent theme.
Thank you.Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & WhatsApp] Offline message require nameAs a workaround, I changed ‘Default visitor name’ from ‘Guest’ to ‘Name’ on general setting page.
You may post the change if you would like to. I can handle code hacking.
Thank you.- This reply was modified 6 years, 8 months ago by scott_ease.
Forum: Fixing WordPress
In reply to: IIS permalink conflict with WP in subdirectoryI just log in to say thanks. The problem tortured me for days. Great appreciation.
Reply from the Plugin contributor:
Add this to your theme’s stylesheet:
(yourdomain/wp-content/plugins/easy-faq-with-expanding-text/faqstyle.css).bg_faq_closed, .bg_faq_opened {
display: inline-block;
}Forum: Themes and Templates
In reply to: Add image on post pageThank you, Wpyogi.
I figured out. The same code need to be added to file “comments.php” & “category.php”.