tomaltman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No changes taking effect anywhere in backendYou will not see anything if you don’t have database access. The domain and everything is controlled there – if you see anything, you have db access.
Have you move this site ever? Like had it on one server then moved it to another?
It reminds me of something that happened to me once – it had to do with permissions. The server needed to have the group permission changed on all the wordpress files.
Does that make any sense?
Forum: Fixing WordPress
In reply to: Deep Do-DoYou only see that when you are logged in – so I cannot see it.
Forum: Fixing WordPress
In reply to: Deep Do-DoWhat browser? It works on the “https://www.extramiledenver.com/family-office-home-page/” in Chrome.
Don’t forget to clear your cache.
Forum: Fixing WordPress
In reply to: No changes taking effect anywhere in backendDid you try the theme thing too? Or not?
Forum: Fixing WordPress
In reply to: No changes taking effect anywhere in backendHave you seen this post? See the last line…
Forum: Fixing WordPress
In reply to: Deep Do-DoChange your main column width to: 630px and you should be good. (It was 660px)
https://www.extramiledenver.com/wp-content/themes/nest/style.css
Line 67#content .column-narrow {
width: 630px;
padding: 10px 0;
}Forum: Fixing WordPress
In reply to: No changes taking effect anywhere in backendHave you renamed all the theme files with exception of Twenty Eleven? If no theme is present – it should default back to that?
Forum: Fixing WordPress
In reply to: pharma hack, base64, spammy theme?It may not be the theme – I am using a WooTheme too and was hacked – here is a post from my site explaing what happened to me and how I fixed it:
Pharma Hacked WordPress siteForum: Fixing WordPress
In reply to: Pharma hack victim looking to clean-up, close back doorsHey OGNewbs – this happened to me too. Here is a link to a post on my site and how I fixed it: Pharma Hack Fix for WordPress.
Please email me if you cannot figure it out – I would be glad to help.
Forum: Fixing WordPress
In reply to: How to Grab an Images Caption in theme?Worked great.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery]: nggDisplayRandomImages doesn′t workI think the values need quotes.
nggDisplayRandomImages(‘4′,’65’,’65’)
Hope it’s not too late! ??
I fixed it by using the following code:
<?php if (have_posts()) : ?> <?php query_posts('cat=-xx'); ?> <?php while (have_posts()) : the_post(); ?>
By replacing -xx with the category you DO NOT want included. This will skip it from being included and then you can delete the:
<?php if (in_category('10') && is_home() ) continue; ?>
Which will leave your “WP_Query_counter” intact. ??
Forum: Plugins
In reply to: Community Solution???Did you ever find anything with this? I am very interested too!