codesmithsf
Forum Replies Created
-
Forum: Plugins
In reply to: [Postie] Not working with gmailI tried IMAP and that did the trick. Thanks!!
Forum: Plugins
In reply to: [Postie] Not working with gmailThanks for the reply. I tried Sockets but not working – see below. Not sure why curl can login using pop just fine but sockets returns an error. Hosting platform is WP Engine if that helps.
getemails: Connecting to pop.gmail.com:995 (pop3-ssl) getemails: procol: pop3-ssl pConnection: mailbox: INBOX Connecting via Socket Socket: tls://pop.gmail.com:995 Socket error: 0 - Socket: POP3 socket read (0) : Socket: attempting a secure connection socket write: STLS socket read (0) : socket write: USER [email protected] socket read (0) : getemails: The username and password provided were not accepted for the POP3 server pop.gmail.com on port 995
- This reply was modified 6 years, 8 months ago by codesmithsf.
I’m not able to submit a support question here
https://wedevs.com/account/create-new-ticket/
For “Which plugin” the drop down is empty but the form submission is requiring a selection.
Please advise.
Thanks
JustinHi – let me know if I can provide more information about the Verification email not being sent. Not sure if this is an issue with the plugin or with the hosting server. It’s curious that according to the email log (great plugin btw) that the To: email is being scrubbed.
Thanks.
The verification email is not being sent to the user. See the screenshot I posted above of the Email log. In the “To” column the cell is empty.
- This reply was modified 6 years, 11 months ago by codesmithsf.
- This reply was modified 6 years, 11 months ago by codesmithsf.
Ok thanks for idea to install the “email log” plugin. I did that. I see the successful submission when logged in. I see the reason it’s not working for non-logged in users is because we have “Require Email Verification for Guests” turned on. In the email log, the To: is empty. View screenshot.
Thanks!
Thanks for the reply. This is the email set in the New Post Notification for the form. “Enable Post Notification” is checked. When a new post is submitted we are only getting an email if the user happens to be logged in. If the user is a guest visitor, no email is being sent. Checked spam, etc. Perhaps it’s an issue with the webhost but thought it was weird that we were sometimes getting the notification so thought I would ask here. Thanks!
+1
I always hesitate in recommending this plugin due to the frequency of updates. 6 releases in 8 days is ridiculous.
Forum: Plugins
In reply to: [Page-list] Shortcode broken with WP 4.4. upgradeWP 4.4.1 upgrade broke a shortcode on one of my websites as well. The short code had a space in it. Re-typing the space/re-saving did not help in either Text or Visual editor mode. Changing the name of the shortcode to remove the space solved the issue.
Forum: Plugins
In reply to: Fold Category List for 2.3.1@mystifier – Thanks for the fix. I’ve included it in the plugin as version 1.2.1 and updated the download link above. So you now can you use &exclude= followed by a comma delimited list of category ids to exclude certain categories from showing up.
Example:
wswwpx_fold_category_list ("hide_empty=1&optioncount=1&exclude=2,3");
@deeplook – Have you updated your sidebar.php to include the call to wswwpx_fold_category_list?
Forum: Plugins
In reply to: Fold Category List for 2.3.1Once you’ve installed and activated the plugin you’ll need to modify sidebar.php to call the main function. I’m not sure what all the options are (check the WebSpaceWorks site for more details) but here’s the snippet from my sidebar.php file:
<?php //standard 2.3.1 category call... //wp_list_categories("show_count=1&title_li="); //...replaced with the Fold Category List function call wswwpx_fold_category_list ("hide_empty=1&optioncount=1"); ?>
The sidebar.php file is located at wp_content/themes/default/sidebar.php