ShaunG
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Blaskan theme and Chrome, unable to click any linksOh ok, I will try to reproduce your error using my non-touch laptop and get back to you!
In the meantime, perhaps you can try a solution mentioned in this thread: http://wordpress.org/support/topic/links-not-working-in-google-chrome-but-work-with-all-other-web-browsers?replies=16
Download your entire wordpress site into a folder on your computer
Download “File String Finder” from http://www.softpedia.com/get/System/File-Management/File-String-Finder.shtml
Open File String Finder and in the “A word or phrase in the file” box put “test.js”
Under “Look In” select the folder you downloaded your wordpress site
This program will search within every file for the string “test.js” and tell you which files contain the string.
Forum: Fixing WordPress
In reply to: Moved WordPress Files without ExportingDo you have access to phpMyAdmin for http://www.x.com? if so, login to it, go to the database associated with wordpress and browse the wp_post table and check to see if your pages are in there.
If so, try exporting that table and importing it into http://www.a.com’s database.
Unforunately, this wont restore any images that you may have embedded into the pages because images are stored in wp-content/uploads and not the database.
Forum: Fixing WordPress
In reply to: Moved WordPress Files without ExportingAre you having issues specifically with the theme, or the actual wordpress installation? Can you access the admin dashboard??
I had this happen once on a dedicated server i used to run. The server turned out to be infected, which may not be the case for you, but regardless, same as Senff suggested, i think it is important for you to contact your web host regarding the issue.
Forum: Fixing WordPress
In reply to: Old Site – old host New site – new host issueI do not see a problem with option 2, if the new wordpress site has its own individual folder not associated with the old one then it should be fine.
Does the web host allow you to create more then one MySQL database? I imagine you would want the new site to use its own database during development as to not interfere with the live site. If the web host does not allow for multiple MySQL databases, then that could be a problem.
You might consider installing a xampp server and developing the new site locally on your computer to avoid issues with the web host.
Forum: Everything else WordPress
In reply to: too many ip addresses linked to domain nameContact your domain registrar concerning your A records, they should clear that up for you.
As for search engines, sometimes it can take weeks for a website to show up. It helps to submit the domain name to the search engine for indexing.
For google, go here: https://www.google.com/webmasters/tools/submit-urlForum: Fixing WordPress
In reply to: Sign in wp-admin password not agreeDo you have access to phpMyAdmin from your web host?
If so, try manually entering a password into the database server using these instructions to see if it works: http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdmin
Forum: Fixing WordPress
In reply to: Dashboard IconsHave you recently upgraded your wordpress? Do you have any admin plugins installed?
Forum: Fixing WordPress
In reply to: How to expand post width?sometimes searching the forums or google will result in the answer you seek 🙂 http://wordpress.org/support/topic/extend-post-width?replies=5
if your theme does not have a “custom css” area in your dashboard, download this http://wordpress.org/plugins/custom-css-manager-plugin/
then use it apply this css (screenshot):
.full-width .site-content .entry-header, .full-width .site-content .entry-content { margin-left: 0; max-width: 100%; }modify the css margins to meet your requirements.
Forum: Fixing WordPress
In reply to: Can't access my account, locked out!hi grapplingindustries,
assuming you have access to phpmyadmin on your hosting account then try this:
http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdminif you do not have access to phpmyadmin, then I suggest you call your web host and ask for it, also ask for them to go through your access logs to look for any suspicious activities and ban the ip of the perpetrator who hacked your wordpress.
Forum: Fixing WordPress
In reply to: Error uploading images (unable to move to wp-content/uploads)It might be a problem with the assigned owner of the folder, especially if you went from a local windows server to a unix based server. Try to rename wp-content/uploads to wp-content/uploads_old (so you dont loose your old files, if there are any) then create a new uploads folder and chmod it to 775 and see if it works.
Forum: Themes and Templates
In reply to: [Blaskan] Links won't open with left-clickPossible solution for people using Google Chrome from a touch enabled laptop: http://wordpress.org/support/topic/blaskan-theme-and-chrome-unable-to-click-any-links?replies=9#post-5276248
Forum: Themes and Templates
In reply to: Blaskan theme and Chrome, unable to click any linksOkay, I actually really like this theme so I decided to track the bug.
The issue is caused by the mobile boilerplate helper functions recognizing Chrome on touch enabled devices as a mobile browser/tablet.
The fix is simple:
1. open this file: /yourblog/wp-content/themes/blaskan/js/mylibs/helper.js
2. search for: MBP.scaleFix
you will see this:
MBP.scaleFix = function () { if (MBP.viewportmeta && /iPhone|iPad|iPod/.test(MBP.ua) && !/Opera Mini/.test(MBP.ua)) { MBP.viewportmeta.content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0"; document.addEventListener("gesturestart", MBP.gestureStart, false); } };3. You can choose to comment out these lines, or delete them. I deleted them.
After deleting them, clicking now works. Tested responsiveness in Google Chrome and IE — seems to work ok. Also tested from my Windows Phone and it appears to be functioning normally.
Hope this helps.
Forum: Themes and Templates
In reply to: Blaskan theme and Chrome, unable to click any linksI am experiencing the same problem. Apparently it is related to “touch events” and only occurs on touch enabled laptops and google chrome (not having the issue in IE)
Do you have a touch screen laptop? Try tapping the link instead of clicking.. for me that works, but i don’t expect my users to do this so until there is a fix unfortunately I am going to switch from this theme to another.
See this post: http://wordpress.org/support/topic/links-wont-open-with-left-click?replies=6