varinator
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinnacle] Which php file is a Post Page template?Hey bobbyduff,
address to the site is new.karolinakuklinska.pl
I’m using Pinnacle. If you could also explain me know how I can check this in code myself, I’ll be very grateful.
Forum: Themes and Templates
In reply to: [Pinnacle] How to alter css for #content just for one page?resolved
Forum: Themes and Templates
In reply to: [Pinnacle] How to alter css for #content just for one page?hehe, that was easy… Thanks very much, it works.
where is the .blog class? I’m quite new to css and still trying to find my way around it ??
Forum: Themes and Templates
In reply to: [Pinnacle] How to alter css for #content just for one page?https://new.karolinakuklinska.pl/blog/
Thanks Kevin!
Forum: Themes and Templates
In reply to: [Theme: Pinnacle] How to change footer text in child themeThanks. There is an option, I just found it. I’m new to PHP – out of curiosity, which piece of code did indicate that there is an option in the dashboard for it?
Forum: Themes and Templates
In reply to: [habakiri] 【habakiri】iPad & iPad mini ヘッダー画像崩れる現象について42
Forum: Themes and Templates
In reply to: [Pinnacle] Language Settings / Read More editI found out why it didn’t work. I had to modify Kadence Themes code posted above. I spent 4 hours on this…. If anyone stumbles upon this post looking to change the “Read More” text and the above code doesn’t work for them, try this:
function kt_custom_excerpt_more($more) { $readmore = __('YOUR TEXT HERE', 'pinnacle') ; return ' … <a href="' . get_permalink() . '">'. $readmore . '</a>'; } function varin_excerpt_more() { remove_filter('excerpt_more', 'pinnacle_excerpt_more'); add_filter('excerpt_more', 'kt_custom_excerpt_more'); } add_action( 'after_setup_theme', 'varin_excerpt_more' );
Forum: Themes and Templates
In reply to: [Pinnacle] Language Settings / Read More editHmm, it doesn’t work for me. I’m pasting the above code in my functions.php (in child theme) and I’m changing the ‘Read More’ with no effect.
Any clue why?