John Parris
Forum Replies Created
-
Thanks. I tested a smaller file and it was corrupt too. Can you try this and see if it works right?
– Temporarily deactivate all plugins except EDD.
– Temporarily switch to the default Twenty Sixteen theme
– Create a new test product, and upload a new image file to that product. Try this image.
– Make a test purchase and download it and see if it works right.Hi,
1. Could you go to Downloads > Tools > System Info and paste the contents here?
2. In your web folders, can you show me the contents of the .htaccess file in the root web folder, in the wp-content folder if one exists, and in the wp-content/uploads folder if one exists. You can paste the contents on pastebin.com if you like to make them easier to read.
Forum: Plugins
In reply to: [Stream] Can't use the Search Filter at allI see something similar. I don’t think it’s a Pro issue. I think it’s a bug. Reference: https://github.com/xwp/stream/issues/793
Forum: Fixing WordPress
In reply to: Problem with Visual EditorGlad to hear you got it fixed up. Thanks for the update.
Forum: Fixing WordPress
In reply to: Unable to create a post, either written or mediaGlad to hear it! Thanks for the update.
Forum: Fixing WordPress
In reply to: link the header to another website (? php echo )This should work:
<h1 class="site-title"><a href="http://yoursite.com" rel="home"><?php bloginfo( 'name' ); ?></a></h1>Which theme are you using?
Forum: Fixing WordPress
In reply to: Unable to create a post, either written or mediaIt sounds like WordPress isn’t fully installed or something. Can you try to reinstall it, or ask your web host to install it for you to see if that helps?
Forum: Fixing WordPress
In reply to: Link to change text/image within pageHi there,
What you’re looking to do isn’t a small request. 🙂
I don’t know of any plugins that do it currently, though there very well could be.
What you need is to fetch the posts for the requested category using an ajax request, build the post markup, and insert them into the DOM, replacing the HTML already in a particular container.
I just built something like this for an upcoming theme, and here’s a screencast of how this particular implementation works: http://cl.ly/0h2H1E041A2e
To do the above, I first check to see if the feature is enabled that allows for category links in the menu to be turned into a ‘mega menu’ of sorts. If it is, I filter the menu item markup to add some attributes and classes I can use to intercept the clicks with javascript so they page doesn’t reload to the full category archives.
Then I kick off an ajax request that fetches the latest 6 posts from the requested category, build the HTML markup for it, JSON encode it, return it to the javascript call so I can insert the new HTML into the container, replacing what is already there.
As you can see it’s not something you can just enable. I can share some of the code I did here once I’ve ironed it all out, and you customize it to fit your use case. Otherwise maybe you can find a plugin to help.
Forum: Fixing WordPress
In reply to: 403 Forbidden Access and pages partially loadingNo problem. Good luck!
Forum: Fixing WordPress
In reply to: Problem with Visual EditorHi there,
When you deactivated all plugins and switched themes, did you do it all at the same time, so that ALL you’re running is the stock Twenty Fifteen theme?
Forum: Fixing WordPress
In reply to: Top Bar Font ColorHi Max,
Can you share a link to your site? That’ll make it much easier to help you with the color.
Forum: Fixing WordPress
In reply to: 403 Forbidden Access and pages partially loadingIt’s working for me right now, no problems. Some web hosts use networked file systems, which means the files your site loads are pulled from another server. If your host uses that and they’re having connection problems between the servers, that could be the cause. It’s really hard to say because it could be a bunch of different things. With it only happening sometimes, it sounds like something like I described, but only the host will be able to answer that for sure.
Forum: Fixing WordPress
In reply to: link the header to another website (? php echo )It’s hard to tell because it looks like you have only shared a bit of the code, but you should be able to replace the whole line:
<?php echo esc_url( home_url( '/' ) ); ?>with the link instead.
Forum: Fixing WordPress
In reply to: "Fatal error: Cannot unset string offsets" from theme instillationHi, you can disable the theme by logging into your site via FTP and going into the wp-content/themes folder, and renaming the theme folder. This will force WordPress to deactivate the theme and fall back to the default theme installed.
If you’re not comfortable using FTP, you can ask your host to rename the folder for you.
Forum: Fixing WordPress
In reply to: 403 Forbidden Access and pages partially loadingHi Umberto,
If it’s happening intermittently like that, it could indicate some hosting issues going on under the hood. If you have access to the web server error logs, that would be a good place to look. Otherwise I recommend at least asking the hosting company if they can tell what’s going on.