Amanda K.
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: why mobile present differently with demo?We’ll need a URL or some code or something to look at.
Forum: Fixing WordPress
In reply to: SEO URLYou’re using a premium theme, which we don’t have access to. But it looks like the issue is something that occurs naturally within the Lucille theme. You’d have to ask the theme developers in order to find a solution to the problem. You can submit a support ticket to the developers here:
Forum: Fixing WordPress
In reply to: How to remove shopping cart and product search bar from headerYou’re using a premium theme. Your theme’s documentation can help you figure out how to properly turn these features off:
Forum: Fixing WordPress
In reply to: Things show up that I didn’t put thereThey’re sidebar widgets.
Log into your Admin Dashboard, and on the menu along the left side go to Appearance > Widgets. You’ll most likely find them in a defined sidebar. Remove them if you don’t want them to show up.
You may also want to read your theme’s documentation to see if there is a way to disable the sidebar entirely, or if there’s a theme template that is full width, with no sidebar.
Forum: Fixing WordPress
In reply to: Can’t change permalinkIn my experience, that means you already have a page with that URL and are not able to use it twice, so WP compensates by adding the -2 to prevent duplicates. You’ll have to remove the page with the /menu/ permalink in order to name another page that.
Forum: Fixing WordPress
In reply to: Headers on mobile, not showing upCan you show a screenshot of what it should look like on mobile, by any chance? From what I can tell, I can see the headers fine on mobile devices, so I’m wondering if I’m misunderstanding.
Forum: Fixing WordPress
In reply to: Automate thumbnail regenerationThis might help:
https://github.com/REPTILEHAUS/reptilehaus-regen-wp-images-overnight
Though, keep in mind, the scripts at 3 years old now. But it might get you pointed in the right direction.
Forum: Fixing WordPress
In reply to: Reducing number of images created after uploadForum: Fixing WordPress
In reply to: How to remove Pinterest bookmarklet codeThis works, but it might cause other issues down the line, like hiding things you don’t want it to hide. I would try talking to the plugin developers, if you can. They might know more.
.entry-content span a { display: none; }Probably not the most efficient way to do this, but try adding this to your custom CSS:
.level_1, a:hover + .level_2, .level_2:hover { display: block !important; }It should at least bring your menus back. I’d check with the theme developers tho to see if they have a more correct solution.
Forum: Fixing WordPress
In reply to: How to remove Pinterest bookmarklet codeIt looks like you’re using a plugin called Social Warfare. The plugin has an option to have Pinterest pins on all your images. You should be able to turn it off from the plugin settings.
Pin All the Images Enabling the Image Hover Pin Button will place a “Pin” button over top of every image inside of your content when a reader hovers their mouse over it. This makes every image on your page highly sharable to Pinterest!Forum: Fixing WordPress
In reply to: How to lock video player/post after 10 seconds of watch?This could work:
Forum: Fixing WordPress
In reply to: Deleted wp_options table accidently.Did you replace the entire database, or just that one table with the new port?
Forum: Fixing WordPress
In reply to: Content Filling the PageTry this in your CSS :
.main { width: 100%; padding: 25px; }Forum: Fixing WordPress
In reply to: Need help to disablle AdsYou could try something along this line, where the array is made up of the page ID numbers you want the specific thing to be hidden on.
if is_page(array(365, 363, 371, 369)) { /* hide infolinks ads here */ }Likewise, I see you are including the javascript to Infolinks in your footer. You could apply the above the same way, like this:
<?php if is_page(array(365, 363, 371, 369)) { /* do nothing */ } else { ?> <script type="text/javascript"> var infolinks_pid = 3180351; var infolinks_wsid = 0; </script> <script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"> </script> <? } ?>In theory, that should remove the javascript from any pages in the ID array and only print it on the ones that aren’t that page ID.
I can’t actively test this, so I’m pretty much just going off the top of my head, but hopefully this will at least point you in the right direction.