Amelia Rose
Forum Replies Created
-
I update to the new version. The error still happened. After I unchecked “Show Legacy Submissions Page” and saved the settings, this worked. Thanks for your help.
Here is the video I took showing the error.
- This reply was modified 4 months, 1 week ago by Amelia Rose.
- This reply was modified 4 months, 1 week ago by Amelia Rose.
- This reply was modified 4 months, 1 week ago by Amelia Rose.
I followed the instructions 3 times and before in the other thread and still getting the same error. I don’t know why this thread is checked off as this isn’t solved.
Forum: Developing with WordPress
In reply to: Create a WP_Query with Category and Sticky PostsThanks. The ticket you linked was closed 8 years ago. Is there no way to get something in the core that will make this easier for everyone?
Forum: Themes and Templates
In reply to: [Modern] Changing Post List to 1 ColumnThanks. The css worked out.
How come the theme isn’t designed for 1-column posts list layout?
Forum: Developing with WordPress
In reply to: Create a WP_Query with Category and Sticky Posts@bcworkz You have much more knowledge about this issue. Would you be able to create the Trac ticket if there isn’t a similar one already?
Forum: Developing with WordPress
In reply to: Create a WP_Query with Category and Sticky PostsThanks! All the advice is really good and very helpful in moving forward. I will look into everything and implement what I can.
Do you think this issue needs to go in the WordPress core trac?
I put this code in functions.php and this is working to put sticky posts first and the other posts second. If anyone tells me that there are issues with the code when they visit the website, I will make sure to make changes.
function posts_modifications_20220531($query) { if(is_admin()) { return; } if($query->is_main_query() && $query->is_home()) { $query->set('posts_per_page', 5); $query->set('cat', 1); } } add_action('pre_get_posts', 'posts_modifications_20220531');
Forum: Developing with WordPress
In reply to: Create a WP_Query with Category and Sticky PostsThanks! Are you saying that my code would work to put sticky posts first without any changes? If yes, confusing as this isn’t. Maybe something else not mentioned here is causing this problem.
I’ve used ignore_sticky_posts before with 1 or false and both didn’t do anything differently.
I had a similar problem with submissions. Even with the newest update that says the submissions are fixed, they aren’t. All I get is the spinning wheel and nothing happens.
I had to downgrade to 3.6.7 to make this work again.
Forum: Plugins
In reply to: [SMTP Mailing Queue] Send Test Mail Error sending mailThe people who made the form said they think your solution will work. If they change their mind, I will make sure to get back in touch.
Forum: Plugins
In reply to: [SMTP Mailing Queue] Send Test Mail Error sending mailThanks, this is very useful.
I’m using ninja forms. I want the thank you email to be sent by the domain email and the emails going to the targets of the forms from the signers. Will that still be possible?
Forum: Plugins
In reply to: [SMTP Mailing Queue] Send Test Mail Error sending mailI have put in the the needed text for the From and From Email. This actually made the test email this work.
I’m working on a domain not localhost.
Since this is a problem, would you be able to make sure that the plugin checks which fields are needed and add in what the no text/default will mean?
Forum: Plugins
In reply to: [SMTP Mailing Queue] Send Test Mail Error sending mailThanks. I have followed the steps and here is the outcome.
The send test email tool says this error: Error detail while sending mail : ‘The following From address failed: : MAIL FROM command failed,SMTP Envelope Sender must be valid ,550,SMTP server error: MAIL FROM command failed Detail: SMTP Envelope Sender must be valid SMTP code: 550’. Do I need to add a From Name and From Email in the SMTP Settings?
I will try the mailtrap sandbox if nothing else works.
Forum: Plugins
In reply to: [SMTP Mailing Queue] Version 1.4.1 issuesThanks for the update.
I’m using version 1.4.4. What I don’t know if I’m suppose to dismiss the warning and see if this comes back or the warning will go away on its own.
Forum: Plugins
In reply to: [SMTP Mailing Queue] Version 1.4.1 issuesI’m also getting the curl error in the original post.
SMTP Mailing Queue : Unable to call process queue due to following error ‘cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received’
I don’t know if the updates to the plugin fixed this and I need to dismiss the error. Knowing that you’re fixing the issue, I didn’t reply until now.
Below is the response I got from my host. I also wanted to ask if this was a problem on their end.
The cURL is supported and it is enabled. cURL version is?7.22.0 set on server.
In order to fix this issue, please contact the plugin vendor and ask them to allow one of the currently supported ciphers
DHE_RSA_AES_128_CBC_SHA1
DHE_RSA_AES_128_CBC_SHA256
DHE_RSA_CAMELLIA_128_CBC_SHA1
DHE_RSA_AES_256_CBC_SHA1
DHE_RSA_AES_256_CBC_SHA256
DHE_RSA_CAMELLIA_256_CBC_SHA1
DHE_RSA_3DES_EDE_CBC_SHA1
DHE_DSS_AES_128_CBC_SHA1
DHE_DSS_AES_128_CBC_SHA256
DHE_DSS_CAMELLIA_128_CBC_SHA1
DHE_DSS_AES_256_CBC_SHA1
DHE_DSS_AES_256_CBC_SHA256
DHE_DSS_CAMELLIA_256_CBC_SHA1
DHE_DSS_3DES_EDE_CBC_SHA1
DHE_DSS_ARCFOUR_SHA1
RSA_AES_128_CBC_SHA1
RSA_AES_128_CBC_SHA256
RSA_CAMELLIA_128_CBC_SHA1
RSA_AES_256_CBC_SHA1
RSA_AES_256_CBC_SHA256
RSA_CAMELLIA_256_CBC_SHA1
RSA_3DES_EDE_CBC_SHA1
RSA_ARCFOUR_SHA1
RSA_ARCFOUR_MD5