jpurdy647
Forum Replies Created
-
1.1.84. It seems to be working now, thanks!
Forum: Plugins
In reply to: [WP Mailster] Some mails are sent 6+ times in a row immediatelykitterycoc.com
Prince manually fixed our plugin install as the public updates did not resolve the glitch. I would like to note we did not even receive an acknowledgement that our plugin did not work (after paying for it) for 5 weeks until I left a negative review to that effect.
The plugin does work now, excellently, and is the best Google drive integration currently available, as long as you don’t run into a bug.
Prince logged into my WordPress installation and fixed the plugin directly, I am assuming the changes he made will be released in a new bug fix update as the last 2 publicly released updates did not fix our glitched install
It still has no effect, files are not sorted, I even created a new short code to test, no change for uploaded or modified date, please advise, I have had people asking for this to work for over a month
Here is the feed url: https://kitterycoc.com/sermons/feed/all/
I did it that way before posting, here is the selection: https://u.pcloud.link/publink/show?code=XZ5nN9XZwRfB9tJxUdYKwKoojaeS97VenvBy
The post type feed still doesn’t show any sermons although there are over 300, and and powerpress podcast page returns a 404. I resaved permalinks to verify that was not the issue. Any other ideas? I’m not sure at this point what I am doing wrong or if there is an issue with the custom post type
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Sale not BilledAlso, I have disabled cash on delivery so I am not sure how this happened: https://i.imgur.com/w3jg00c.png
Forum: Developing with WordPress
In reply to: Running WP-Query in admin notices breaks post-new.phpYes, the issue is that both of those function cause the issue. This only happens on select back end pages. You cannot use any form of the_loop, posts have to be looped through manually because both of those functions mess with something in those pages.
If you try using either of those function in the admin notices on post.php or edit.php you will find the same side effects become apparent.
A solution was proposed however it also had side effects. No solution has been implemented because the issue is easy to work around and a best case solution has not been selected.
Forum: Developing with WordPress
In reply to: Running WP-Query in admin notices breaks post-new.phpAfter some digging I found that this is still an open bug:
https://core.trac.wordpress.org/ticket/18408#comment:14I simply rewrote my loop so as not to use the reset function and it works fine:
function kl_display_error_nonperishable_highlighted_events(){ $post_id; $perishablePosts = get_perishable_posts(); $query = new WP_Query(array('cat' => 4)); if ($query->have_posts()){ foreach ($query->get_posts() as $post){ $post_id = $post->ID; if (!in_array($post_id,$perishablePosts)){ ?> <div class="notice notice-error"><p>A highlighted post is currently not set to expire. This post will not appear on the landing page. Click <a href="http://lions.kitterycoc.com/wp-admin/post.php?post=<?php echo $post_id; ?>&action=edit">here</a> to edit the post.</p></div> <? break; } } } }Forum: Developing with WordPress
In reply to: Running WP-Query in admin notices breaks post-new.phpThanks for those corrections!
My code is based on the sample from https://codex.wordpress.org/Class_Reference/WP_Query#Multiple_Loops. It does show using wp_reset_postdata().
The sample itself produces the same result which is what I find interesting.
Forum: Fixing WordPress
In reply to: How to create a mobile device menu iconThe easiest way to improve the mobile menu is to install a plugin that does it well. I use this one:
https://wordpress.org/plugins/mobile-menu/
I also minimize plugins, doing most of the coding myself. Creating your a mobile menu is a project that will require a lot PHP JavaScript and CSS. If you go that route though it will look much better than a generic mobile menu, and improve the site load time marginally in some cases if you consolidate stylesheets and JavaScript files.To make the header sticky you can use JavaScript or jQuery to ‘detach’ the header when the user scrolls down by some set amount. The JavaScript just needs to give the header div ‘position: absolute’ and some parent element position
: relative’. The body being relative already may be fine. You probably won’t need to position it with ‘top’ and ‘right’ and ‘left’, it will just sit at the top of the page by default.You could also make the header static and always absolutely positioned so it isn’t a part of the page but sitting over it, and put a white div placeholder behind it so content can’t scroll up behind and be hidden.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Debug WarningA stack trace:
[28-Jan-2017 16:05:04 UTC] Caught Exception: Undefined index: SERVER_NAME [28-Jan-2017 16:05:04 UTC] #0 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/Postman/Postman-Mail/PostmanDefaultModuleTransport.php(37): WP_CLI\Runner->{closure}(8, 'Undefined index...', '/home/content/a...', 37, Array) #1 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/Postman/Postman-Mail/PostmanTransportRegistry.php(30): PostmanDefaultModuleTransport->init() #2 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/Postman/Postman.php(336): PostmanTransportRegistry->registerTransport(Object(PostmanDefaultModuleTransport)) #3 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/Postman/Postman.php(82): Postman->registerTransports('/home/content/a...') #4 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/postman-smtp.php(51): Postman->__construct('/home/content/a...', '1.7.2') #5 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/postman-smtp.php(42): postman_setupPostman() #6 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-content/plugins/postman-smtp/postman-smtp.php(57): postman_start(27746912) #7 /home/content/a2pnexwpnas02_data01/35/3358835/html/wp-settings.php(304): include_once('/home/content/a...') #8 phar:///opt/wp-cli/bin/wp/php/WP_CLI/Runner.php(1000): require('/home/content/a...') #9 phar:///opt/wp-cli/bin/wp/php/WP_CLI/Runner.php(944): WP_CLI\Runner->load_wordpress() #10 phar:///opt/wp-cli/bin/wp/php/wp-cli.php(21): WP_CLI\Runner->start() #11 phar:///opt/wp-cli/bin/wp/php/boot-phar.php(5): include('phar:///opt/wp-...') #12 /opt/wp-cli/bin/wp(4): include('phar:///opt/wp-...') #13 {main}Forum: Plugins
In reply to: [Gmail SMTP] Error phpmailerExceptionI also have this issue
No other mail plugins installed
- This reply was modified 9 years, 4 months ago by jpurdy647.