GreenGriot
Forum Replies Created
-
Sure.
Here’s the link to a page in my sandbox full of tagshttps://qt.greengriot.com/asidetest/
but in case that changes here’s a link to a screen shot
https://qt.greengriot.com/wp-content/uploads/2014/10/AsideTest-1024×[email protected]
Cheers!
jmwGot It!
Devil is indeed in the details
I was missing a “}” delimiter between my sets of CSS code.
It works now. And looks great.
Thanks so much!
Cheers!
jmw
That’s correct. “.entry-meta .btn-tag” I pasted the code from your solution above in the custom CSS box then took a look at my demo page after saving. Nothing changed. But it may be just me. I figured once I got my child theme up and running with a child style sheet and double checked/tweaked the numbers for the shape it would work.
Does that sound right?
Cheers
jmwDidn’t quite work off the bat when I replaced the elements and put them in the custom CSS window.
The button shape didn’t change but I think I’m on the right track. I’ll keep tweaking and post the solution when I find t.Thanks again,
jmw
Thanks, Deputy05!
This is great.
Cheers!
jmw
Forum: Fixing WordPress
In reply to: Dynamic (FaceBook-Like) External Links In WordPress SiteUnfortunately, no. The Project I was working on was put on hold but I’m still looking.
I’ll definitely post when I find it.
Good Luck.
Forum: Themes and Templates
In reply to: How To Override a Command In a Parent Theme's Functions.php FileHope This Helps.
Cheers!jmw
Forum: Themes and Templates
In reply to: How To Override a Command In a Parent Theme's Functions.php FileHi All,
Found the answer in a previous post:
The answer seems to be to use the “add_” and “remove_” function references (or “hooks”) in the child ‘functions.php’ file.
In this case the “add_filter”/”remove_filter” and “add_action”/”remove_action”When I added the following code to the functions.php of my child theme the override worked perfectly.
<?php //code to override theme function in parent theme in order to fix Image loader problem after 3.5 update add_action('wp_enqueue_scripts', 'minimatica_register_styles'); add_filter( 'ext2type', 'minimatica_file_types' ); remove_action('init', 'minimatica_register_styles'); remove_filter( 'ext2type', 'minimatica_mime_types' ); //
You’ll find more info about these functions here in the codex:
https://codex.www.ads-software.com/Function_Reference/remove_filterhttps://codex.www.ads-software.com/Function_Reference/add_filter
Actually, I do believe the “<a class=overlay..” is located in the loop-slider.php file.
Daniel references it in a similar topic in the designers support forum:
Hope This helps
Just for the sake of closure for anyone else who comes along.
I could not find the location of the <a class=”overlay” href=” line in any of the files.However, the topic of removing all the post details such as: ‘posted by’, ‘date’ and ‘filed under’ has been covered here in the designers support forum:
https://www.onedesigns.com/support/topic/removing-post-detailsCheers!