webtegrity
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: User ListHi Samgallo – Try this plugin https://wordpress.org/plugins/export-user-data/
Forum: Installing WordPress
In reply to: 404 error on login /wp-admin pageLooks like we had to update both the wp-login.php file as well as the wp-admin >> includes >> update.php file
Once that was done – we were in!!
Forum: Installing WordPress
In reply to: 404 error on login /wp-admin pageHi Mariafrangleh – we’re having the same problem with one of our sites. We found this article and are trying the “Replace the wp-login.php” file options right now. I’ll let you know if it works.
Forum: Fixing WordPress
In reply to: 404 Errors on back end pagesHey jcutroni – are you using any sort of a cache plugin?
Forum: Fixing WordPress
In reply to: Help finding theme CSS selectorsAs for the text in the blog carousel at the top of the page… It is going to be impossible to view the text if it’s white. But here’s the code that might work. Again add this to your Custom CSS box or a Child Theme CSS file
.blog-shortcode-1 crsl-item p{ color: fff; }Is that what you’re trying to do? You might want to add a background color on it so that the text is visible.
Forum: Fixing WordPress
In reply to: Help finding theme CSS selectorsTo hide the date boxes you can add this code to a Child Theme CSS or to your Custom CSS box
.blog-shortcode-1 .blog-list-item-date { display: none; }Forum: Fixing WordPress
In reply to: Cannot access my blog page nor any other blog page on WordPressHi Mamtachakravorty –
Here’s a few questions for you:
Did you update anything on your site recently? Like a plugin or your theme or WordPress version?
Updating can at times break your website.
Have you contacted your hosting company to see if they can help with the error that you’re seeing? Sometimes it can simply be a hosting issue.
Forum: Fixing WordPress
In reply to: Centering LogoRemember also that your theme is responsive. So you’ll want to be sure to test the logo positioning in all devices and browsers.
Looks like there’s a random ‘ in my code above. You’re looking for
#logo { margin: 63px auto 34px 367px; }Forum: Fixing WordPress
In reply to: Centering LogoHey There on your style sheet you have a
#logo that has a
`#logo {
margin: 63px auto 34px 367px;
}That last number being so high is what is pushing that over to the right. Play with those numbers to set it more in the center.
Cheers!
Forum: Fixing WordPress
In reply to: UPME shortcode problemHi Misharnet – Sounds like there may be a problem with the UPME plugin itself then. Have you checked their forums to see if others are struggling with it?
If you’ve purchased this plugin – you’ll want to connect with its author or the support area provided to fix this issue directly.
Forum: Fixing WordPress
In reply to: map of file links?JustinBBC – this is a new plugin that might help you as well https://wordpress.org/plugins/what-template-file-am-i-viewing/
Forum: Fixing WordPress
In reply to: "no categories" showing.Yes you can add it to your style.css file – or better yet, if your author has given you an “Custom CSS” box area in the theme options you can add it to that box. This is the better scenario.
Forum: Fixing WordPress
In reply to: map of file links?Most of the files should be named according to how they’re being used. Meaning – header.php file is the header file that typically has your logo and main menu in it. The footer.php file is the footer area of your website. The index.php file is very typically the “home” page (or home.php). The single.php file references a single post, etc…
And yes there can be another theme effecting your website if you’re referencing a “child theme.”
Forum: Fixing WordPress
In reply to: "no categories" showing.Go to the area in your stylesheet that addresses this element
#main-navigation, .sf-menu li aand type in
display: none;That takes it off.
Forum: Fixing WordPress
In reply to: How to separate categories into 2 groupsI understand. So why not just make a “Parent” category called “Letters” and move all of the A, B, C’s into it.
Then create a “Parent” category called “Numbers” and move 1,2 3’s into it?
You can do this by going to Dashboard >> Posts >> Categories and Adding New.
You’ll have to go into each of your existing categories and make them “child” categories assigning the “parent”.
Does this fix the issue?