Jonathan Goldford
Forum Replies Created
-
We went ahead and released our own plugin at http://wordpress.org/extend/plugins/simple-razoo-donations/ based on the core features provided in this one.
If anyone has questions about this plugin feel free to reach out to us via the support forums for our plugin and we may be able to help you.
Thanks a lot. I’ll take a look at that.
I am also having this same issue. Did you ever figure out how to fix the problem?
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] can't download backup fileI’m also having this problem. When I click the download link after taking a backup nothing happens.
The file exists in wp-content/backups, but I can’t download it using that link.
Thanks for the update and for taking care of everything so quickly.
I went to update the plugin to the newest version and it says that we’re already using the newest version. Did you add those changes without tagging a new version?
Thanks for taking care of it so quickly Hector. I like the adjustment you made too, going with
|[^0-9,-]|in a replace instead of checking if they exist. Much cleaner.It took me some time, but I tracked down the problem here. The issue is on line 1460 of wordpress-popular-posts.php. The function ctype_digit returns false if it finds any minus signs in the string, so trying to exclude any categories will just return an empty string. I replaced line 1460 from:
'cat' => (ctype_digit(str_replace(",", "", $cat)) && !empty($cat)) ? $cat : '',to:
'cat' => (preg_match('/^[0-9-]*$/', str_replace(",", "", $cat)) && !empty($cat)) ? $cat : '',and that seemed to fix the problem.
Hector, if you’d like I can send over a diff file, but I figure the change is straightforward enough.
jitujazz123, I hope that’s helpful.
Forum: Fixing WordPress
In reply to: In what order does WordPress process CSS files?Can you give us a link @calvin Nix? If we could look at the code I’m sure that would be really helpful.
Forum: Fixing WordPress
In reply to: In what order does WordPress process CSS files?Not a problem. Let me know if you do some research and are still having issues.
Forum: Fixing WordPress
In reply to: Category to tag converterNot a problem. Glad that worked for you.
Forum: Fixing WordPress
In reply to: How do I disable responsiveness of themeMost of these sound like issues with the CSS. Do you have a programmer you can lean on for support? Particularly, someone with some responsive design experience.
Forum: Fixing WordPress
In reply to: Hiding my website until it's readyYep, just delete the index.html file when you’re finished. Nice suggestion @jonradio.
Forum: Fixing WordPress
In reply to: How do I disable responsiveness of themeI would also add that using a responsive theme is helpful for users, since it will be easier to view on cell phones and tablets. Is there a reason in particular you want to get rid of the responsiveness?
Forum: Fixing WordPress
In reply to: How do I disable responsiveness of themeUnfortunately, this isn’t the easiest thing to do usually. I would check in your theme settings to see if there is a way to disable this. If not, you’ll probably need a programmer to help you remove the css that causes these changes.