valerio_cas
Forum Replies Created
-
Okay, I’ve figured this one out.
It was purging the cache on the posts in question, but not on the archive pages.
I’ve solve by writing a function to purge the entire cache when the import has run.
Thanks for your help!
I am having the exact same issue since the last update. The address data is not coming through on some PayPal orders. It seems to be random.
I’ve experienced this over the weekend on a few sites.
What I belive has happened is that the old version was removed, but the new version was not installed. Probably, there was a connection issue or a conflict.
This issue can be resolved by manually adding Elementor back into your plugins directory.
Forum: Plugins
In reply to: [Multisite Post Duplicator] Issue with Restrict MDP settingsKeep up the awesome work!
Not specific to this plugin but lenasterg’s code helped me while developing a site. It didn’t occur to me that get_home_path() was in a /wp-admin/ file, which are not included by default on the front end. I think the codex could be more clear about this.
Forum: Plugins
In reply to: [WP-Cycle] Making wp-cycle responsivehere is a quick fix I used, which requires jQuery, and for all of your images to be the same height.
<script> function responsiveSlider() { jQuery("#rotator").height(jQuery("#rotator img").first().height()); } jQuery(window).load(responsiveSlider); jQuery(window).resize(responsiveSlider); </script>
then in your css something like `
#rotator {
width: 100%;
max-width: 960px;
}`