Forum Replies Created
-
AuthorPosts
-
Erik D. Slater
MemberYep ... that makes sense ... and it likely means you haven't got W3TC configured at the moment ... which means there is nothing to clear 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberOops, I forgot to say Thank you.
You didn't forget ... you remembered 🙂 But it seems many people on the StudioPress forums do forget ... or they just take the assistance they get here for granted ... at absolutely zero cost to them!!
Interestingly, the Authority forums experience is much much different ...
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberWe are talking about the little YouTube image/link that appears in the bottom right-hand corner of the header image, right?
I just checked your site on my mobile (Android) device. Seems to be working rather nicely 🙂
I wonder if your mobile device is displaying an old/cached version.
I'm also not experiencing any page speed issues.
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
Member@SavvyJackie - you JUST beat me to the punch there 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInJune 3, 2015 at 11:43 am in reply to: Agency Pro Primary and Secondary Sidebar Aside not disappearing #154728Erik D. Slater
MemberReally need to see your website at this point.
It doesn't sound like an issue with your theme since - unless you added one in - Agency Pro doesn't have a custom blog template by default, i.e. it takes the blog template from the parent framework. That markup is coming from the genesis_attr_* stuff.
Did you clear down any WP-related caching tools, e.g. W3 Total Cache?
Erik D. Slater: Digital Platform Consultant • LinkedInJune 3, 2015 at 11:00 am in reply to: Agency Pro Primary and Secondary Sidebar Aside not disappearing #154718Erik D. Slater
MemberI had a quick look through the Agency Pro theme files but didn't find anything obvious.
What is the page on your website that is giving you the problem?
Erik D. Slater: Digital Platform Consultant • LinkedInJune 3, 2015 at 10:50 am in reply to: Agency Pro Primary and Secondary Sidebar Aside not disappearing #154717Erik D. Slater
MemberWhat is your site/theme?
UPDATE: Scrap that question ... I just noticed the tags ... and the title 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberIf you can't find it in your theme files, it could have been added to a plugin ... or worse than that ... a core WP file may have been modified.
The quickest method to finding something in your WP install is to download the whole thing using FTP software to a local folder on your device, then running a search through it.
Otherwise, we're kinda just guessing 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
Member@devdesignstampa is right that the content is in the genesis_do_footer() function ... so the genesis_footer_output filter is also a contender.
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberI believe you may be looking for this ... specifically, the genesis_footer_creds_text filter.
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberNot a silly question at all 🙂
Click on the "Performance" tab down the left-hand side of your admin dashboard. That'll take you into the W3TC dashboard ... where you will see an option to "empty all caches".
I see your site is now in Maintenance Mode ... but I had noticed earlier that you applied the change and it worked 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberFirst thing to do is make sure you keep whatever you currently have in your footer widgets ... just in case something goes wrong 🙂
There are a couple of ways you could do this. One way is entirely CSS-based, which involves adding display: none; to .footer-widgets-2 and .footer-widgets-3 ... then for .footer-widgets-1, set width: 100%; and remove the margin-right definition.
The other involves popping into your functions.php file and looking for something like add_theme_support('genesis-footer-widgets', 3); ... then change that "3" to a "1". This will ensure that only one footer widget area exists in your Widgets area. You will still need to apply the CSS change for .footer-widgets-1 described above.
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberYou found the right place. Remember to clear W3 Total Cache after you have applied the change.
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberI just checked the Daily Dish Pro theme files ... which has the Content-Sidebar layout fixed for static front pages 🙂
Try taking out the following lines from the front-page.php file in your main theme folder:
// Force content-sidebar layout setting add_filter( 'genesis_site_layout', '__genesis_return_content_sidebar' );
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberThis is a CSS thing. Basically, to get the menu to stick in place like your comparison site, add the following lines of CSS code to your nav.nav-primary selector:
position: fixed; width: 100%;
Then, in order to compensate for the fixed position of your menu, you need to add the following CSS to your .site-header selector:
margin-top: 68px;
Both these selectors appear as inline CSS ... which is generated after the page has been loaded ... using "CSSHero.org Dynamic CSS & Fonts" ...
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
Member@dover makes a very good point. You usually have to update the child theme yourself. The question then becomes ...
Do you trust yourself not to overwrite your own style.css file? 🙂
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberCurious one. The following line appears as a comment in your HTML:
<!--?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?-->
This is a backend function that appears in one of your PHP theme files ... and it has been commented out.
This is the reason why you are not seeing any comments 🙂
The
!--
and--
- at the beginning and at the end respectively - need to be removed, i.e. it should look like the following:<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
Erik D. Slater: Digital Platform Consultant • LinkedInErik D. Slater
MemberOne option is Jetpack's Custom CSS Editor.
Another may be this WordPress plugin here (which I haven't used myself).
Erik D. Slater: Digital Platform Consultant • LinkedIn -
AuthorPosts