mandalareopens
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoco Payments] Using with EcwidBy the way, your website appears to be down – https://reclaimdesign.org/ Or should I say, not loading properly, before you pick me out for being inaccurate again ??
- This reply was modified 4 years, 4 months ago by mandalareopens.
Forum: Plugins
In reply to: [Yoco Payments] Using with EcwidI think it adds a lot, especially to someone new to the thread and wondering whether the plugin works for Ecwid or WooCommerce or something else. I don’t work for Yoco, I was offering my insight. Maybe you are having a bad day?
If not and you want to be so acerbic, here’s what I could have done. I could have called you out for ignorance or laziness. It’s very easy to do a quick Google search or even visit Yoco’s website to see that the plugin only works for WooCommerce at the moment.
- This reply was modified 4 years, 4 months ago by mandalareopens.
Forum: Plugins
In reply to: [Yoco Payments] Using with EcwidI think the question is not so much about wordPress as it is about the shopping cart / ecommerce system.
From what I can tell, the plugin only works with WooCommerce at the moment.
Hope this clears things up.
Forum: Reviews
In reply to: [Maintenance Mode] (FIXED) Serious WarningI still don’t think it deserves a one star rating for what is, essentially, a support issue which looks like it’s been resolved.
Forum: Fixing WordPress
In reply to: Display rss feeds on pages. Any recommendation?@droiddog – Here’s how I would do it:
<?php include_once(ABSPATH.WPINC.'/rss.php'); // path to include script $feed = fetch_rss('https://www.droiddog.com/forums/external.php?type=RSS2'); // specify feed url $items = array_slice($feed->items, 0, 5); // specify first and last item ?> <?php if (!empty($items)) : ?> <ul> <?php foreach ($items as $item) : ?> <li><a href="<?php echo $item['link']; ?>"><p><?php echo $item['title']; ?></a></p></li> <?php endforeach; ?> </ul> <?php endif; ?>