AJD
Forum Replies Created
-
Forum: Plugins
In reply to: [WP FullCalendar] WP Full Calender older and newer months not showing eventsIt was on 5.6.3 and I just updated to 5.6.4 which appears to have fixed the problem. Thanks.
Hi, actually when I think about, it is not new content being added, but old content going away. For example, the events manager plugin. It creates a list of events, I haven’t checked that the cache clears when and event is published. But it definitely doesn’t clear at the end of the day when the older events expire and newer events take their place at the top of the list.
Also at the same time, the list of upcoming events is updated on all sidebars throughout the site so the next upcoming event is at the top. Unless I can exclude the sidebar from the cache the best option seems to be a daily clear of the cache.
Also, it is not exactly clear how to implement that cron function from your link. I’m not familiar with cron, so could use more specific steps.
I would be using the add cron function in cpanel.
Thanks.
Sorry, just need a little more clarification on this, I’m not familiar on setting up cron.
To clear the cache every day at midnight?
Create a cron to run at midnight every day with this command: wfCache::clearPageCache();
OR:
Create a .php file in the same directory as wp-load.php and add the following code into the page? And then create a cron to hit that page?
<?php include 'wp-load.php'; wfCache::clearPageCache(); ?>I have the same issue. The top menu item used to work with a regular link. Is it the intended function of the menu to use a # as the menu item?
50% of attempted sales have failed due to inability to download, customer support nightmare. This plugin is not easy to update and though support is friendly and willing to make code changes to your store, they do not code properly for future updates. AVOID this plugin, do not buy the commercial version. They must do better development and make updates easy. After 1 year I am deactivating and using something else.
I am seeing this same issue. The minified style-sheet is inserted before the !DOCTYPE tag, creating invalid html…
The suggested fix did work, thanks!
AND this seems like something that shouldn’t need to be manually fixed…
Hi, I figured out a work-around:
Instead of using the standard event widget I used a text widget with a shortcode:
{is_current} and {is_future} work in the shortcode:
[events_list] {is_current}<li class="current">#_EVENTLINK - Happening Now!</li> {/is_current} {is_future}<li>#_EVENTLINK - #_EVENTDATES </li> {/is_future} [/events_list]Hi.
Here is a link: (http://) paoniafriends.org/welcome/calendar-events/
The login is: 81428
If you are able to look now I have created two test events, both are now past, but you can see them in the sidebar, but not in the main events list.
The main events list is using {is_future} to wrap the output, which creates the desired result.However if I use {is_future} in the sidebar it gets automatically wrapped in LI tags and does not display correctly.
There isn’t any cache plugin yet, as the site is still in development.
I could message you the login info if you want to see it.
The regular event list does show the most current events. It is just the widget that does not.
5.6.2
I think I have figured most of this out.
First:
Ordering by the Date recorded field is possible if a custom archive template is used and in the args you set:'order' => 'asc', 'orderby' => 'meta_value', 'meta_key' => 'date_recorded'However this doesn’t really work because the date needs to be formatted like this: yyyy/mm/dd or the order will be off anyway. The workaround is to just set the date recorded as the post published date.
Second:
The archive title was being set by my theme. I had to build a custom template anyway, so set the archive title there.Cheers
Here’s a couple plugins that achieve something like you want:
https://wordpress.org/plugins/auto-prune-posts/
https://wordpress.org/plugins/post-expirator/You could probably dig around in the code of those plugins to see how they do it….
Forum: Plugins
In reply to: [Testimonial Rotator] Include microdata on archive pageSure, here’s a link to the template in pastbin: http://pastebin.com/XkhZpv6Q
(This template was made for the Genesis framework.)
Forum: Plugins
In reply to: [Testimonial Rotator] Include microdata on archive pageI landed up creating a custom template/loop and hand coding the schema.org micro-data. http://westerncoloradorealty.com/reviews-testimonials/
Thanks
Forum: Plugins
In reply to: [Seriously Simple Podcasting] How do I customize meta field?Excellent. Thanks!