depperson
Forum Replies Created
-
if that’s the case, it must’ve been like a 24 hour cache LOL
Thanks for helping me look into it!
I Installed WP – super cache Plug-in, Did a simple delete cache, and the header appears to be gone.
Will you confirm?
I went into the file manager, and the plugin folder is not there, and there is nothing showing regarding the Mobile Menu in my admin panel.
I did read up about possible javascript caching? but I’m not sure how I would clear that
I’m gathering that you see the header bar I speak of.
I don’t use any caching plugin – and at best am a WordPress novice – so what other mechanisms would be caching this within wordpress? The only other thing I can think of is something the webhost might do to cache the site.
Thanks for your assistance.
- This reply was modified 8 years, 1 month ago by depperson.
As far as I am aware, it does not use any cdn. I basically built it as a landing page with some design and was trying different plugins for the mobile menu.
I did check the wp-content/plugins and mobile-menu directory is not there.
When I use a User Agent spoofer on my PC, the WP Mobile Menu header bar doesn’t appear, but it does on an actual mobile device.
Forum: Themes and Templates
In reply to: [Abaris] Flex Slider onFullWidthI know this is marked resolved, but I have been unable to to get my slider image to be full width. I attempted to remove the divs as instructed, but there was no change. I’ve put the code back for now…
@stopczas, any way you can post the code you adjusted?
I was getting the same blank screen – deactivated Jetpack, but did not fix my site.
@nick Young – thanks! It did appear I had a extra space at the beginning of my calendar ID. I believe this may resolve my issue. Hopefully others will see theirs working soon also!
@nick Young – yes, I specifically indicated in my post that
My calendar is on a standard free Google account; my calendar id shows as my email address.
So my calendar id shows up in this format: [email protected] – and not like in the example shows from the link you gave.
I was wonder how I might go about adding the “show_cart” to a sidebar that is not widget enabled.
I don’t want the cart to show up on regular pages, only the ones I have for the online shop.
I put the shortcode in my template, but it didn’t work.
Forum: Fixing WordPress
In reply to: More Posts from Category below Single PostForum: Fixing WordPress
In reply to: How to hide child pages in submenu?HardHat:
Maybe you can give me insight, since you seem to have figured out your situation.
I am using the following code to display sub-pages (we’ll call 1st level down) from top level link:
<?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>this is taken directly from the WP codex. And it works great, except when I click to a 2nd level sub-page (subpage of a subpage). At that point, all the 2nd level sub-pages show up in the menu.
I’ve tried using depth= syntax, but doesn’t work. What would I look for in my CSS to see if that can be hardcoded to remove the 2nd level sub-page menu?
Forum: Fixing WordPress
In reply to: listing child pagesThe coding that vickyh used works wonderfully in my site – with one exception: HOW CAN I LIMIT IT TO ONE-SUBLEVEL?
When I click on a sub-page, if they also have sub-pages, then THEY show up in the tabble menu.
I have tried the depth=1 or depth=2 to no avail. Any help?
Forum: Fixing WordPress
In reply to: listing child pagesJust bumping this post for a similar question:
I use the them Amazing Grace theme found in the WP themes directory.
I have my pages listed at the top, but I would like the Tabs (just below the site name) to show as the the child pages respectively.Any place to start?
BTW: I am a rank amateur when it comes to coding, but if you can give me the path to take, I can cut my way through it!
Forum: Fixing WordPress
In reply to: Page Password not workingI’m having similar problems, but my exception is that the password protected page/post is still viewable WITHOUT A PASSWORD.
I will try the aforementioned solution to see if that helps.