jonpeck777
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: IF statement inside IF Statement?You probably want to make those different if statements into variables.
There’s a real cool thread on stack overflow on ways to do that.
Cheers
https://stackoverflow.com/questions/6483323/if-statement-within-an-if-statement
Forum: Fixing WordPress
In reply to: New WordPress Updated Messed up AlignmentWish I could add a screen shot – but when I check the CSS on your sidebar it doesn’t even show me the float:left; command – like when you added it it didn’t make it there.
When I use my browser to add the above code it shifts the sidebar to the left – and looks great.
Sorry it was no help.
Forum: Fixing WordPress
In reply to: how to set background colour of #wrapperIf it’s the content like on the front page that you are trying to color the background in I would use –
article .content {
background-color:blue; !important
}Go to Appearance>Customize then choose Additional CSS and add the above CSS.
Cheers
Forum: Fixing WordPress
In reply to: New WordPress Updated Messed up AlignmentOn your theme you will probably want to target .sidebar-primary in CSS
.sidebar-primary {
float: left; !important
}
Go to Appearance>Customize and choose Additional CSS tab section on that menu to the left.
Add the above code and it should work. I made it work in my browser so that CSS is sound. Just find the Additional CSS tab, add it, and save it.
Cheers
Forum: Fixing WordPress
In reply to: I cannot login into the admin dashboard areaIf it’s been a long time it may be something that has to do with your database.
If this were me, I would backup my whole site via FTP and download a backup of my database.
go back to your ‘mysite.com/wp-login.php’ and see if you can reset your password with the ‘forgot password’ link on that page. (if that was the case)
If no progress,
Go to your phpMyAdmin – or whatever your host uses to manage your database – and look at the wp_users table to see if your admin credentials are still there.You can create another user manually through your database manager (phpMyAdmin) with SQL queries if you wish.
Good Luck!
Forum: Fixing WordPress
In reply to: Only post author can reply to commentIt looks like you need to go into your Comments settings to allow people who aren’t logged in to comment as well.
On your dashboard go to Settings>Discussion
Make sure that
‘Allow people to post comments on new articles’
‘Anyone posts a comment’
are checked –Make sure that
‘Users must be registered and logged in to comment’
‘A comment is held for moderation’
‘Comment author must have a previously approved comment’
are un checked until you see that comments start to populate.I would make sure your email is correct in your site because I like to make sure that I am in control of what is being posted on my site by checking ‘A comment is held for moderation’. It will email you when someone comments so that you can moderate it – if not you can check the Comments tab in your WordPress dashboard.
Here’s a great overview of comment settings in the WordPress codex…
https://codex.wordpress.org/Comments_in_WordPressForum: Fixing WordPress
In reply to: New WordPress Updated Messed up AlignmentGot a link?
Forum: Fixing WordPress
In reply to: how do i add an image underneath the nav but in the backgroundI don’t know if that image will work too well.
Usually you set a background image that is repetitious – like your .png would have those multi-color balloons throughout the background image without the white space in it.
Then where your content was added you would add a background color / gradient to make the verbiage visible.
You can play with your div sizes, etc. on different devices to see what works best in that case. In this scenario there’s more control over padding a margin of the white space.
Hope that makes sense –
CheersForum: Fixing WordPress
In reply to: how to set background colour of #wrapperIf you’re trying to target a specific element, or div, find the opening tag and add a style=”background-color:insertcolorhere;”
Example
<div style=”background-color:blue;”>
You can use hexadecimal or rgb color instead if you prefer.
Cheers
Forum: Fixing WordPress
In reply to: Why is my website so slow?Hey,
The site looks really good – great work.
There’s two issues that I am seeing.
1.) it took quite awhile for your server to respond to my browser’s request for your website – so there is an issue there.
2.) While your images may not be too big – they are everywhere on the first page of your site. I have been on your site for at least 10 minutes and it is still loading images on the front page, because there are so many. This is the biggest issue.
I would try removing the blog feed from your front page or changing the blog setting to only show a summary instead of the whole post. You can change your blog settings to display a summary of the post in Settings>Reading and then find ‘For each article in a feed, show’ and click on ‘Summary’ then Save Changes. https://codex.wordpress.org/Settings_Reading_Screen
Your content is awesome so removing the blog feed from the front page won’t harm but will probably help people navigate your site better. I would place a few 2-3 of your favorite images in its place possibly. Add the *short code* you removed from the front page and add it to your ‘Blog’ page. And add the Blog selection to your primary menu in Appearance>Menus.
Good luck!
Forum: Fixing WordPress
In reply to: Unable to insert image into postAre you getting any specific error messages?
Other than using your FTP to upload files to the wp-content/uploads/*year*17/*month*07 folders – This issue is most commonly caused by wrong file permissions. Your uploads directory should have correct file permissions otherwise WordPress will not be able to store your files in it or sometimes may not even display files from the upload directory.
Here’s a tutorial on that –
Hope it helps…
http://www.wpbeginner.com/wp-tutorials/how-to-fix-image-upload-issue-in-wordpress/
Forum: Fixing WordPress
In reply to: WordPress Admin Content and Top Bar Are Blank!It sounds like an issue with your database. Like the permissions are not set up correctly, or it’s an old structure. Had a similar issue earlier today on a site.
I went through this tutorial and got out of my tailspin….
http://www.inmotionhosting.com/support/edu/wordpress/333-add-admin-via-mysql
Basically adding a new admin user via your host services in phpMyAdmin.
Then you can use the new admin to clean up your user issues – hopefully.
Good Luck.
Forum: Fixing WordPress
In reply to: Website SpeedIt never took more than 4 seconds for me to load on Firefox or Chrome.
The parts of the site that loaded slowest were the images and the floating social buttons.
The best thing to ensure a quick site is not to overload it with images and plugins. If you aren’t using plugins that are installed on your site delete them. If you don’t need a plugin remove it.
The only thing I know of that could possible cut down your load times are plugins from WPMU Dev, specifically Smush and Hummingbird which would both help shrink the size of your images and minify your css.
https://premium.wpmudev.org/?ptm=b&utm_expid=3606929-108.O6f5ypXuTg-XPCV9sY1yrw.1Otherwise it is looking good.
I use xampp often – the only thing I would do to quickly see if it’s a xampp issue is if you have a live WordPress site – upload the plugin and see if it comes up with the same browser.
May be some permissions issues or SQL settings – you can see them in your my.ini file.
The plugin seems to have a lot of documentation – if what I am looking at is what you’re using – you may also want to ask this question on their Support forum as well.
Forum: Networking WordPress
In reply to: Second WP theme on subdomain?I would put store.BUSINESSNAME.com’s site in a sub folder on your server as a separate website entirely.
Like if your BUSINESSNAME.com is in the /home folder (the main access folder)
put your store.BUSINESSNAME.com site in /home/store folder
upload the WordPress files there
point the domain store.BUSINESSNAME.com to folder /home/store
run the WordPress 5-minute setup
then continue to set up your store on a separate WordPress installation
It will be much easier this way.
Cheers –