PaulDoesWP
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentWell, I give up. I have removed the attach file part completely, because it is just too unreliable. Having pared my site back to the Twenty Fifteen theme, and with NO plugins other than Contact Form 7, Really Simple CAPTCHA and WP Maintenance Mode, I have to conclude that the problem lies within the Contact Form 7 coding.
My clients will not be happy, but hey ho. Life sucks.
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentUgh. And now, I get a ‘file is too large’ error when trying to send a 7MB JPEG, even though I had the limit set to 20000, then increased it to 100000. What is up with this plugin?!!
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentAn update – nope, big files don’t work no Android, either.
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentNope – the problem is back. It seems random and temperamental. It seems that I can now send large files OK on Android, but not on my Windows 7 PC!
I’m currently doing a test where I have all plugins OFF except Contact Form 7, Really Simple CAPTCHA and WP Maintenance Mode. And I’m on the Twenty Fifteen theme. Everything is up to date.
I’m trying to send one 7MB picture (a .jpg) and I have the file types set to include jpg and the size limit set to 12mb. But the spinny arrows just keep on spinning. I can send smaller files (eg. 2MB) ok.
If I look at my Network Connection Status, I can see the ‘Sent’ traffic increasing. I’ve just attached a 7MB file, and hit Send, and the Network Connection Status Window steadily increased by about 7MB. It then slowed right down, indicating that the transfer is complete. But the spinny thing on the Contact Form remains.
Any thoughts? I’ve spent all day (unpaid) on this, and I’m getting rather frustrated to say the least.
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentOK – I disabled all plugins except Contact Form 7, and set the theme to Twenty Fifteen, but the problem got worse – I could not send messages with large attachments from PC, Mac nor Android! (I didn’t test iOS).
so I deleted the [file] tags completely, and created new ones, and it seems to have fixed the problem! I am now going to switch on all the plugins, to see if the situation remains happy.
Forum: Plugins
In reply to: [Contact Form 7] Cannot send email on Android with attachmentIt’s not just me who has found this problem – it was reported by some of my client’s clients who could not get in touch with them.
As I said, the problem only seems to be with Android devices while sending attached file(s).
Here is the page in question:
https://weareccfm.com/contact/Forum: Fixing WordPress
In reply to: Subfolder installation AND masked domain forwardingLuckily my website was very new, with nothing much on it.
Because I’d been changing the domain names in the dashboard, in wp-config, functions.php and even tried a search-and-replace in and exported SQL database, I thought it best to just start again from scratch.
It took another call to Godaddy to figure out how to get iambiscuit.com to point to some other space on the server. “Add-on Domains” was the answer. But now it’s up and running!
Thanks for your help and suggestions!
Ah – despite the claim that Page builder works with any theme, I have just installed a SiteOrigin theme (Influence) and now it’s appeared.
Forum: Fixing WordPress
In reply to: Subfolder installation AND masked domain forwardingThanks for your reply, leejosepho.
So unless your account at GoDaddy does not allow for more than one domain
And therein lies the problem. After all the frustration I’ve been through, I eventually discovered that indeed, GoDaddy does not allow for more than one domain forwarded to a subfolder, with their “economy” hosting which I had. I have, this morning, just upgraded it to their “Deluxe” hosting, which ,apparently, allows for multiple websites on the same server, with no domain forwarding – it should behave exactly as if I have dedicated hosting for each domain (even though it’s physically hosted on the same shared server, sharing server resources).
So – now comes the excitement of moving my WordPress site to the “new server”!
I’ve upgraded to the latest version, but went ahead and used http, not https, and it works perfectly!
Thank you yoffegil and mattergo for your help with this – it’s refreshing to see a response from an author to a user of the free version of their plug-in. So many plug-in authors don’t bother replying to users of the free versions of their products, which does not inspire one to upgrade to their paid products.
Forum: Fixing WordPress
In reply to: How to tell if I'm in the front end or DashboardWell, that was easier than I thought. A little more searching turned up this article:
http://wordpress.stackexchange.com/questions/45381/how-to-check-if-user-is-in-back-end
I was under the impression that is_admin() just checked if the user was admin and had nothing to do with front/back endness.So I’ve modified that if statement to this:
if( (!is_front_page()) && ( $pagename != 'latest-news') && (!is_admin()) ) {...
…and it seem to work perfectly!I guess I could tidy up that if statement – there are a lot of NOTs there. But it works, so I’m inclined not to touch it!
– Paul
Thanks. I will do that instead (customize the category archive).
Forum: Plugins
In reply to: [Contact Form 7] How can users remove an attachment before upload?I’m surprised that:
(a) this hasn’t been fixed in an update
and
(b) only one other person has added to this thread.– Paul
I’ve now installed the old, but working “Automatic Sign Out For Inactivity” plugin, which does the job perfectly.
I found this, by the author of this plugin: http://www.billerickson.net/code/remove-link-title-display-posts-shortcode/
I added that code to my theme’s functions.php file, and it has successfully killed off the link from the post’s title. Nice.I also changed line 23 from:
$output = '<' . $inner_wrapper . ' class="' . implode...
to
$output = '<hr><' . $inner_wrapper . ' class="' . implode...
which gives me a simple <hr> separating each post.I also added
.titleto my theme’s syle.css to make the title match my h1 style:.h1, .title { font-family: 'leckerlitworegular', cursive; color: #511c39; font-size: 30px; font-weight: normal; line-height: 1.1; text-decoration: none; }I’m not sure how I accomplished this previously, but this did the job OK.