rollingWolf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My portfolio theme only shows 4 of my images on Smart phoneIll start with saying that it isnt very mobilefriendly theme (responsive) in the first place. Im just about to head home from work and wont have time to dig through the code but my recommendation (if proper mobile support is required) is that you try and find another theme that had responsiveness in mind when it was created. You should be able to find a free template if you google:
free wordpress responsive portfolio themethat looks basically the same.I hope I didnt sound like an arse now 🙁
Forum: Fixing WordPress
In reply to: website image not centered on all devicesOn the top of my head I think that the comments part is in your page.php and/or single.php. But there are plugins that adds comments by action and not by code in the template (eg: jetpack or disquss).
And as always when I say stuff like this, dont edit the template files directly since any changes will be lost when you update. Instead go and edit the page or post in question and disable commenting with the postoptions presented.
Forum: Fixing WordPress
In reply to: My portfolio theme only shows 4 of my images on Smart phoneIf you provide the link to the site we could take a look at the code. Otherwise its hard to give any answer based on the info youve provided.
Forum: Everything else WordPress
In reply to: using web upload from Lightroom 5The files should appear in the medialibrary regardless if the files exist on the server or not, and uploading the fiels via ftp/sftp without them being in the medialibrary solves nothing so I think the problem is before that.
Is your wp-content/uploads folder writeable?
Forum: Fixing WordPress
In reply to: 404 hits on /mypostname/&Does those requests come with a referer? Or try searching for the url to the post and see if someone is linking to it from a forum or something, mayby use the debugger at developers.facebook.com and see if it has been shared on facebook.
Is it the same ip? Or if theyre different ips are they in the same range and/or country? Ive gotten a lot of bruteforceattacks from italy lately.
If you cant find it or you assume its bots thats searching for weak servers it would be safe to assume that you can go ahead and ban those requests.
And it may so happen that you link to it yourself with some malformed link from a plugin (either to a post/page or javascript/css file) so look at the source of your site with a browser (view source) and search for it.
Forum: Fixing WordPress
In reply to: WordPress site backup without databaseUnfortenatly without the database backup you wont get your posts and pages back since those were stored in the DB. If youre lucky your host mayby have a backup of the database for you.
But if you just deleted the webpage and not specifically the databse the data may still be available, use phpmyadmin and take a look.
Forum: Fixing WordPress
In reply to: 404 hits on /mypostname/&I think iThemes Security has a setting for automatically banning “too many 404 requests”
Forum: Localhost Installs
In reply to: Website not working on mobile versionDo you have a plugin or something that serves a mobile theme when using a mobile device? Or is it the same theme.
Forum: Themes and Templates
In reply to: [Theme: Unite] Child theme ?You can create your own childtheme of unite. http://codex.wordpress.org/Child_Themes explains the process
Forum: Fixing WordPress
In reply to: Installing google analyticsForum: Fixing WordPress
In reply to: Header Logo disappearingEditing themefiles isnt usually that good of an idea since changes will be lost whenever updating. Iirc installing the jetpack plugin it allows you to add custom css which would say:
#site-logo { display: block; }Forum: Fixing WordPress
In reply to: My site has been hackedMake sure to enable “show hidden files” in whatever ftp/sftp or similiar program you use and look for files and/or folders that begins with a dot (the file .htaccess in the webroot is normally ok, unless someoneone have hacked that one too).
Forum: Themes and Templates
In reply to: [Responsive] Header image/videoa img.alignleft adds a 20px margin to the left and right of the image on line 2020 of style.css. Adjust accordingly or use another class.
Forum: Fixing WordPress
In reply to: Header Logo disappearingThat looks like a standard menu used in responsive themes so I would guess that whoeever made the theme didnt code support for headerlogo properly on narrow devices. I would suggest you contact him about this issue.
Forum: Fixing WordPress
In reply to: Installing google analyticsI wouldnt recommend you putting it in header.php at all but in footer.php just before </body></html>. There are several plugins though that adds the necessary code for you if you just provide the tracking ID if you dont want to do it yourself.
Another reason for using a plugin instead of hacking the themefiles yourself (unless youve made the theme) is because as soon as you update the theme the changes will be lost.