ProjectArmy
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Pictures not showing in blogThis is weird and not default behavior. The text that replaces images is just plain text and there are no hidden images or broken images. Which means images were not inserted at all on the page.
How are these images inserted? Using Gutenberg block or does it use classic editor? If you could share a screenshot of the image inserted in a post in the backend that would help better understand what’s going on.
The basic troubleshooting steps are to begin disabling plugins one at a time to see if any one of those plugins is causing images to not show up.
Forum: Fixing WordPress
In reply to: Side Bar Ads not posting correctly or at allCan you try disaling lazy loading in Jetpack settings? That might be the issue.
- Navigate to Jetpack → Settings → Performance
- Scroll to the Performance and Speed section
- Click the toggle to deactivate Lazy loading for images
Once you deactivate lazy loading, make sure you clear any caching plugins you may have. If the issue still persists, don’t re-activate lazy loading. Come back and post here again, so we can see what’s happening when lazy loading is off.
Forum: Fixing WordPress
In reply to: Images Not UploadingWordPress should provide an exact error message when this error occurs. An exact error can help troubleshoot this problem.
You’ll need Chrome browser for this.
1. Go to your Media Library and click Add New.
2. Press F12 to open Developer Tools.
3. Click on Network tab.
4. Now, try uploading an image that causes this error.
5. Once error occurs, in the Network tab look for a file called async_upload.php
6. Click on this file (async_upload.php)
7. Then click on Response tab to see error message.What you’re interested in is the “Message” part. That should describe exact error.
Post the error message here and we can try to help figure out how to fix it.
Forum: Fixing WordPress
In reply to: Assistance pleaseThe first warning “Don’t use adjoining classes” refers to
.fusion-header-backface.fusion-sticky-shadow. This is valid CSS, but older browsers like Internet Explorer 6 can have problems with 2 adjoining classes. But, that’s a very old browser and I wouldn’t worry about. Warning can be ignored.The second warning about fallback color, you simply need a HEX color:
.fusion-header-wrapper.fusion-is-sticky .fusion-header-backface.fusion-sticky-shadow { background: rgba(255,255,255,0.8) !important; background: #FFFFFF; }Also, I believe “transform” isn’t what you need. What you’re looking for is “transition” and using background-color property. The updated code below should do the trick:
/* Suggestion: Sticky bar background when scroll: */ .fusion-header-wrapper .fusion-header-backface.fusion-sticky-shadow { transition: background-color 0.3s ease; } .fusion-header-wrapper.fusion-is-sticky .fusion-header-backface.fusion-sticky-shadow { background-color: rgba(255,255,255,0.8) !important; background-color: #FFFFFF; } /* Code ends */You can put your CSS code into CSS Validator, which is more accurate than built-in WordPress warnings.
Again, you can ignore adjoining classes warning.
Forum: Localhost Installs
In reply to: Pictures not showing in blogIs the website URL you entered correct? Domain isn’t registered.
- This reply was modified 6 years, 12 months ago by ProjectArmy. Reason: typo
Forum: Fixing WordPress
In reply to: How to prevent pages being saved as PDF?You can’t find it because there’s really no such thing available. There are too many ways to generate PDF from a page. I can simply hit CTRL+P on my Chrome and instead of a printer select Save as PDF.
Or, I can simply use Adobe PDF extention for Chrome to save the page as PDF.
You could try blocking PrintFriendly’s IP with .htaccess, but I don’t know what IPs they use. Maybe blocking their primary IP would work.
There are multiple services that do that, you would have to find them and see if you can block them from
Frankly, it would be a waste of time. Just like blocking right-clicking on images to prevent them from being saved. People who do these things know how to bypass whatever you throw their way.
You need to increase memory allocated to WordPress. For this, you need to edit your wp-config.php file and add this line before the line that says “That’s all, stop editing! Happy blogging.”
define( 'WP_MEMORY_LIMIT', '256M' );That should do the trick.
Forum: Fixing WordPress
In reply to: Emails Unreliable, Sent to Spam or not at allWe don’t have experience working with Office 365, we use GSuite internally. However, you might find this article useful to find SMTP details:
https://ca.godaddy.com/help/find-my-office-365-imap-or-pop-settings-9012And a longer version from Microsoft:
https://docs.microsoft.com/en-us/exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-office-3I assume you would be using SMTP relay, this is what Microsoft notes about that in the article above:
Reasonable limits are imposed. The service can’t be used to send spam or bulk mail.
When you use your personal email as SMTP for sending transactional emails any spam issues your WordPress emails might have can disrupt your personal emails. Also, many providers put hourly/daily/monthly limits on how many emails you can send through SMTP. I would check with Godaddy to find out what those are. Otherwise you might end up with emails not sent again, including your personal emails.
This is why we don’t recommend this route. Just FYI.
Forum: Fixing WordPress
In reply to: Emails Unreliable, Sent to Spam or not at allThis is a typical issue when you rely on hosting server to send emails. It’s possible server IP might be blacklisted somewhere.
For better deliverability, we always recommend using third-party SMTP provider. We use and recommend Mailgun, they offer 10,000 emails per month for free. We’re not affiliated with them, just a customer.
You can use Easy WP SMTP plugin to make WordPress send emails using SMTP provider.
If you choose to use Mailgun, they do have a plugin for WordPress.
This is the best way to ensure better deliverability of emails sent by your website.
Have you tried simply disabling this plugin?
We noticed that Gravity Forms either re-used the code from this plugin or simply used the same naming conventions in version 2.4 and up. After disabling this addon plugin, the repeater functionality in the frontend continues to work.
However, backend form editor does not have blocks yet for repeater. So forms that were created this this addon plugin will continue to work in Gravity Forms 2.4+ but you won’t be able to edit them. And you can’t create new forms with repeater blocks.
This repeater feature is in beta now.
https://docs.gravityforms.com/repeater-fields/Forum: Fixing WordPress
In reply to: media upload fails with no error messageTry to enable debugging to see if any relevant errors show up.
Inside your wp-config.php, find the following line:
define( 'WP_DEBUG', false );And replace it with the following:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );Once saved, try uploading images in media library. Then check debug.log inside wp-content folder. Hopefully it will have some relevant errors that can help identify the issue. It would be helpful if you could share some of the log data if you’re not sure how to read/interpret it. pastebin.com is a good tool to share log data.
One more thing, what PHP version are you running on your hosting? Check with your hosting provider and see if they can upgrade you to 7.0+ (ideally 7.2+).
Forum: Fixing WordPress
In reply to: media upload fails with no error messageWith everything that you’ve done, the next step would be to re-install WordPress core files via FTP.
Make sure to backup everything.
First, you would delete everything but:
– wp-content folder
– wp-config.php
– htaccess fileThose 3 things should not be deleted.
Second, download fresh copy of WordPress and unzip the file. Once unzipped, you would need to upload everything back to your account. But, I would not upload wp-content again. You can delete that before uploading everything.
It’s highly likely that WordPress core files became corrupted during upgrade. Replacing them should fix the issue.
Forum: Fixing WordPress
In reply to: GTmatrix Shows Redirect Chain, But there is noneAre you referring to adroll.com redirects?
My best guess, looking at the source, you’re using Google Tag Manager. You need to review your tags, most likely one of them is for AdRoll. This is for remarketing. They are there and being loaded on the website, my AdBlock extension was blocking them.
^V
Forum: Plugins
In reply to: [WP-Sweep] All the media files got detachedThis plugin doesn’t have an undo button. Your only course of action is to recover database backup. Hopefully you’ve taken it before sweeping database.
^V
Just FYI for anyone still having this problem. Check your PHP version with Dreampress. Legacy DreamPress still uses PHP 5.6 and phar isn’t enabled/working. You need to upgrade your PHP to 7+. To upgrade DreamPress PHP you need to contact support, you can’t do it yourself.
Hopefully this will save people some time.