Peter Booker on "[Plugin: Kebo Twitter Feed] Removing Reply, Retweet and...
Hi OldClicker, That is fantastic, thank you very much for letting me know!
View Articlemaikai1110 on "[Plugin: Simple Sticky Footer] Not showing"
I did get it to show if I put the shortcode into the pages but i have a side swiping site with a width of 4000px. It only shows on the first 3 pages and then cuts off. Any idea how to get it to show...
View Articlesamsemi on "Analytics not tracking"
Maybe your theme lacks the wp_footer function. https://codex.wordpress.org/Function_Reference/wp_footer
View Articleajmatic on "Having an issue with social icons in the footer"
This is the website I'm working on Fenix. I am using the Divi theme from elegant themes, but have created a child theme. Because this website is a real estate site, I am also using the optima express...
View ArticleDSS-Analytics on "Analytics not tracking"
Thanks for your help and advice. I did look for the hook. I think I have that already. This what my footer looks like: <?php /** * The template for displaying the footer. * * Contains the closing of...
View Articleajmatic on "Having an issue with social icons in the footer"
I figured it out, for those of you who have had the same issue, here you go
View Articleajmatic on "Having an issue with social icons in the footer"
Oops, forgot to put the link, here ya go adding social icons to divi theme
View ArticleFirestarter1 on "[Theme: Openstrap] Change Footer Font Hover Color"
Can someone tell me how to change the hover color of the footer text? Not the widget title, just the links. The only option I see is: a:hover, a:focus this changes the hover color of the entire...
View ArticleEvan Herman on "Help adding widget to footer"
Yes, it has not been rendered on the page.
View ArticleChristopher411 on "Help adding widget to footer"
I added: <?php the_widget( 'Footer_Widgets_Left' ); ?> <?php the_widget( 'Footer_Widgets_Middle' ); ?> to the body of the footer and nothing happened.
View ArticleEvan Herman on "Help adding widget to footer"
Try: <?php dynamic_sidebar( 'Footer_Widgets_Left' ); ?> You can also test to see if the widget is active: if ( is_active_sidebar( 'Footer_Widgets_Left' ) ) { echo 'The Footer Widgets Left Widget...
View ArticleChristopher411 on "Help adding widget to footer"
I added this to themes: add_theme_support( 'post-thumbnails'); if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Footer Widgets Left', 'before_widget' => '<li...
View ArticleEvan Herman on "Help adding widget to footer"
Firstly, I should have asked before, are you using the thesis theme??
View ArticleChristopher411 on "Help adding widget to footer"
no, like I said I am a novice and just tried grabbing code to accomplish what I needed. We already have the site up with the theme whoever started the site for us used. Is there some other way to...
View ArticleEvan Herman on "Help adding widget to footer"
Oh, well than that's most likely why this isnt working. The function you are using is hooking into thesis_hook_footer. add_action('thesis_hook_footer','my_widgetized_footer','1'); Change that too...
View ArticleChristopher411 on "Help adding widget to footer"
I am learning the hard way that everything is built on what has come before so grabbing some snip-it doesn't work so well... so without the theme and css and widget and plug in and whatever...
View ArticleEvan Herman on "Help adding widget to footer"
Have you tried changing thesis_hook_footer to wp_footer? add_action('wp_footer','my_widgetized_footer');
View ArticleChristopher411 on "Help adding widget to footer"
Now we are getting somewhere!.... I am getting an error Fatal error: Call to undefined function thesis_default_widget() in.....
View ArticleEvan Herman on "Help adding widget to footer"
Oh woops, didn't see that framework specific function. As a test, do: function my_widgetized_footer() { ?> <div id="footer-widget-block"> <div class="my-footer-one footer-widgets...
View Article