Goodwrk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Framework] How to remove comment bubble on post heading?Forum: Themes and Templates
In reply to: [Tiny Framework] Widgets heading link colour on hoverYes, you’re right, it’s “a:hover”.
What I found is when I added this on style.css it didn’t work, but it worked when I added it via custom css section of Customize page. Maybe will be useful to someone.Forum: Themes and Templates
In reply to: [Tiny Framework] A help with PHP related to Tiny frameworkThomas, I found some CSS to do this.
I’ll try it tomorrow.Forum: Themes and Templates
In reply to: [Tiny Framework] A help with PHP related to Tiny frameworkMy site title consists of three words. For example, if I want the first word to be white and other two to be green, I can’t do that with Customizer.
Customizer only changes to one colour.Forum: Themes and Templates
In reply to: [Tiny Framework] A help with PHP related to Tiny framework//filter first bloginfo instance add_filter( 'body_class', function ( $class ) { add_filter( 'bloginfo', 'modify_second_and_third_words', 2, 1) return $class; } ); function modify_second_and_third_words( $output, $show) { static $counter = 0; // Target the "name" part: if( 'name' === $show ) { // Target first instance: if( 1 === ++$counter ) { remove_filter( current_filter(), _FUNCTION_ ); // Modify second and third words of the blog title: $title = explode( ' ', $output ); if( count( $title) > 0 ) { $title[1,2] = sprintf( '<span>%s</span>', $title[1,2] ); } $output = join( ' ', $title ); } } return $output }This is php code. After that I added css from that webpage, but after that my website didn’t show. Can you point out what part of this code is wrong?
My site title consists of three words.Forum: Themes and Templates
In reply to: [Tiny Framework] How to change menu (mobile)Forum: Themes and Templates
In reply to: [Tiny Framework] How to change menu (mobile)Forum: Themes and Templates
In reply to: [Tiny Framework] How to change menu (mobile)I was talking about this slide out.
I want it to fill only half of the smartphone’s screen.
Forum: Themes and Templates
In reply to: [Tiny Framework] How to change menu (mobile)Hi, I tried to look at navigation section,
but couldn’t understand how to do this.
Can you give some details at what should be
added to css file?Forum: Themes and Templates
In reply to: [Tiny Framework] How to show full menu in mobile phoneI mean how to show menu like “Home”, “About”, etc when viewing on mobile phone, not as a button which shows menu if you press it.
Forum: Themes and Templates
In reply to: [Tiny Framework] Site header words with different coloursI meant site title which is on top of each page.
Forum: Themes and Templates
In reply to: [Tiny Framework] Mobile menu disappearedNo, I found that it was due to Mega menu plugin.
Now it’s visible.Forum: Themes and Templates
In reply to: [Tiny Framework] Hide featured image in post pageHi Tomas,
I found why featured images were not showing in another thread: https://wordpress.org/support/topic/tiny-framework-thumbnails/
This code was missing in Tip40 section of style.css file:
.post-thumbnail { display: block; }I added it and featured images appeared.
Forum: Themes and Templates
In reply to: [Tiny Framework] Hide featured image in post pageHi Tomas,
Featured image now is not visible in single posts.
But it’s not visible on home page too.
Plz help.Forum: Fixing WordPress
In reply to: How to edit homepage?Thanks Esmi, I’ll do what you told me.