leanda
Forum Replies Created
-
Hi Jack
Thanks for the fast reply.
Yes, the option to be assigned to multiple roles is selected. We are using roles to define types of membership on the site and a member can have more than one type of membership.
I’ll test it to see if that is causing the issue. Any ideas about how to work around if that’s the problem?
– Leanda
Thanks for the reply. That’s a shame, I’ll use wp_mail instead. I was hoping to use your plugin because it’s a really nice way to allow non technical clients to edit the messages.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Multiple PayPal AddressesGot it! Thanks for your help.
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] How many addresses?Can you explain please?
I think the best solution might be for us to use a vendor plugin with WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Multiple PayPal AddressesMulti site makes perfect sense!
Thanks
Forum: Plugins
In reply to: [WooCommerce] Multiple PayPal AddressesA vendors plugin is an interesting idea. Can you recommend one? I guess I would just set it up to receive 0% commission?
I’ve even thought about setting up three different micro sites running three different installs of WordPress and WooCommerce. Seems like overkill though.
Coding Concepts – thanks, I’ll keep my eye out for an update.
Forum: Themes and Templates
In reply to: theme like cargocollective polaris themeI know this is an oldish post, but just in case you are still looking you might be interested in the Inxhibit Theme.
I was looking for something similar and then decided to roll my own.
Mine are hosted on Typepad and have an img src which looks like this:
<img class="asset asset-image at-xid-6a00d83451cbb069e201b7c7fff5a6970b img-responsive" style="display: block; margin-left: auto; margin-right: auto;" title="Barbican mugs" src="https://modculture.typepad.com/.a/6a00d83451cbb069e201b7c7fff5a6970b-800wi" alt="Barbican mugs" border="0" />
They are jpgs with a .jpg extension if I drag one to the desktop.
Did anyone manage to get this plugin to work? I’m on WP 4.4.2 trying to import some images hosted on Typepad. It just tells me it didn’t find any images to import.
Forum: Plugins
In reply to: [WP eCommerce] Updating WP ecommerce PluginThanks for this info Mike, very useful.
I think I’ll download the site and database and test it locally, sounds like there could be a lot of potential issues. Shipping coupons are not something they use, but my main worry is incompatibilities with the theme.
Thanks again.
Forum: Plugins
In reply to: [The Events Calendar] Change Arrow on Previous/Next links on the month viewHi Brook
Thanks for your reply, sorry I’m a bit late. It would seem that I have to create a filter in my functions.php file to override the arrow type, filters are not my strong point.
I’m using this code snippet that I found elsewhere in the forum, which gets me where I need to be, but actually it’s too complex. I’d rather keep the default behaviour rather than have it continuously scroll though months when there are no events.
Is there a simpler way to filter the tribe_events_the_next_month_link without loosing the default behaviour?
Thanks
/** * Allows visitors to page forward/backwards in any direction within month view * an "infinite" number of times (ie, outwith the populated range of months). */ class MonthViewPagination { public function __construct() { add_filter( 'tribe_events_the_next_month_link', array( $this, 'next_month' ) ); add_filter( 'tribe_events_the_previous_month_link', array( $this, 'previous_month' ) ); } public function next_month() { $url = tribe_get_next_month_link(); $text = tribe_get_next_month_text(); $date = TribeEvents::instance()->nextMonth( tribe_get_month_view_date() ); return '<a data-month="' . $date . '" href="' . $url . '" rel="next">' . $text . ' <span>→</span></a>'; } public function previous_month() { $url = tribe_get_previous_month_link(); $text = tribe_get_previous_month_text(); $date = TribeEvents::instance()->previousMonth( tribe_get_month_view_date() ); return '<a data-month="' . $date . '" href="' . $url . '" rel="prev"><span>←</span> ' . $text . ' </a>'; } } new MonthViewPagination;
Forum: Themes and Templates
In reply to: Add WordPress custom taxonomy terms as css classBrillant, thanks! I actually used the following because I was getting an invalid argument:
foreach ((array) $terms as $term) { echo '<article class="post col ' . $term->slug .'">'; }
Many thanks for all your help very much appreciated.
Forum: Themes and Templates
In reply to: Add WordPress custom taxonomy terms as css classThanks again, sadly still doesn’t return the term ??
Forum: Themes and Templates
In reply to: Add WordPress custom taxonomy terms as css classHi Leo
Thanks for replying. I tried your code and I’m afraid it still doesn’t return the term.
Any other ideas?
Thanks.