jgateman
Forum Replies Created
-
Forum: Plugins
In reply to: [Make Connector] Plugin discontinued? How to connect Make to WP?@integromat Is this plugin going to be made available again?
Thanks Niklas,
I will downgrade and wait for the next update that fixes that.
Hi Peter,
Autonami sent an update that has resolved the issue on our site. I can’t speak for others, but it is resolved with their most recent update. You may want to touch base with Pratik regarding this. Thank you for all of your help!
Hi Peter,
Autonami sent an update that has resolved the issue on our site. I can’t speak for others, but it is resolved with their most recent update. You may want to touch base with Pratik regarding this. Thank you for all of your help!
Thank you very much! Have a great weekend!
I would be happy to. We have been dealing through your support under a different email. I will send you a direct email now and reference this thread. Thank you!
Just watching this thread. I had put Wordfence into learning mode and everything worked as it should but once I put it back into Enabled and Protecting the problems came back again. Our server is running PHP 7.4.2
Hi Peter,
Thanks for the quick response.
Our server is running PHP 7.4.28
I switched Wordfence into learning mode and visited the urls where the problems were occurring. While in learning mode there was no issues at all. Once I switched back to Enabled and Protecting the issues came back again. Please let me know if there is anything else you would like me to try. I will also hop on the other thread to watch for replies. Thanks!
Forum: Plugins
In reply to: [Custom Content Shortcode] Displaying the AuthorNot sure if this will help but this was a block I put together to loop through a CPT and display the different authors avatar and first name and first initial of the last name.
Not sure if you will be able to use any of this or not but it worked quite well for my purposes.
[raw]
[loop type=custom_post_type]
[pass field=author meta=id]
[loop-count]
[users include={FIELD}][user avatar size=40][/users]
[field author meta=first_name]
[field author meta=last_name length=1]
[/if]
[/pass]
[/loop]
[/raw]Forum: Plugins
In reply to: [Custom Content Shortcode] Calculate sum from loopFigured out a round about solution that works.
I run the loop in an ACF text field named ‘sums:
[loop type=move author=this][field calories]+[/loop]
I then run the calc on the page:
[calc][field sums length=’-1′][/calc]
The length=’-1′ removes the last + from the end of the loop which was breaking the [calc]
I can then further isolate specific date ranges if I want to display the sum from just this week for example:
[loop type=move author=this][if field=date after=’last Sunday’][field calories]+[/if][/loop]
Forum: Plugins
In reply to: [Weight Tracker] Field growing in widthI have emailed login info.
Forum: Plugins
In reply to: [Weight Tracker] Field growing in widthI am having this same issue. The chart and fields are growing in width and height and just keep going off the right and bottom sides of the pages and grow indefinitely for as long as the user stays on the page.
Forum: Plugins
In reply to: [Custom Content Shortcode] Happy to see a new updateEcstatic to see the new update! Thanks Eliot!!!!!
Forum: Plugins
In reply to: [Custom Content Shortcode] getting worriedI 2nd this! I use this plugin on all my sites as well to the point of them being non-functional if it suddenly stopped working. I hope all is well with Eliot and that this plugin has plans of continuing development. This plugin is 2nd to none!
Forum: Plugins
In reply to: [Custom Content Shortcode] ACF Date/Time Field Renders Without FormatYou need to add the date_format variable to your shortcode. Try the following and replace the date format to one that suits your needs.
[if field=session_start_date_time value=] – [field session_start_date_time date_format=”F j, Y”][/if][if field=session_end_date_time value=] to [field session_end_date_time date_format=”F j, Y”][/if]