Captain Theme
Forum Replies Created
-
Forum: Plugins
In reply to: [Recipe Hero] Recipe Completed Photo and Storefront themeHey Bradley! Thanks for using Recipe Hero ??
Will investigate both of these as I plan on giving complete / special support for Storefront.
I’ll get back to you later today. ??
Forum: Plugins
In reply to: [Recipe Hero] Blog pageThanks for checking ?? If you find anything else not working, etc. feel free to let me know here or on GitHub. Thanks for using Recipe Hero!
Forum: Plugins
In reply to: [Recipe Hero] Blog pageHey Vlad – would you mind trying out this version and letting me know if it’s better? https://github.com/Recipe-Hero/Recipe-Hero/archive/master.zip
If so I’ll push the update. ??
Forum: Plugins
In reply to: [Recipe Hero] Blog pageActually that may be the best fix. Looking into it more now. Sorry, didn’t catch them on my side before, but thanks for working with me on this ??
Forum: Plugins
In reply to: [Recipe Hero] Blog pagePlease try update to 1.0.3. Both should be fixed ??
Forum: Plugins
In reply to: [Recipe Hero] Blog pageHey Vlad,
Awesome to hear you’re enjoying it! ?? If you need any other hooks / filters / etc. please let me know on GitHub.
Looking into both issues now. It’s probably a bug on my end as the RH_Query class was just introduced in 1.0.0 and needs some work.
Will get back to you here in a bit.
Forum: Plugins
In reply to: [Recipe Hero] Adding list of cuisines/coursesHey! ?? Thanks for using Recipe Hero.
There isn’t a built in way but cuisines / courses are actually just taxonomies, so it’s really easy to using something like with
get_terms()
.Here’s a really simple example of using it to make a list of cuisines with links to the ‘archives’ of them (and hiding the empty ones):
$args = array( 'hide_empty=1' );$terms = get_terms( 'cuisine', $args );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
$count = count( $terms );
$i = 0;
$term_list = '<p class="my_term-archive">';
foreach ( $terms as $term ) {
$i++;
$term_list .= 'name ) . '">' . $term->name . '';
if ( $count != $i ) {
$term_list .= ' · ';
}
else {
$term_list .= '</p>';
}
}
echo $term_list;
}Try that and let me know how you go!
I’ve also added this to the Recipe Hero roadmap – https://trello.com/c/H0R8sHaL/11-shortcode-method-to-list-cuisines-and-courses – as I think it’d be interesting to look into maybe introducing a shortcode or something like that to make this easier.
Forum: Plugins
In reply to: [WooCommerce] Minimum Amount for Local Delivery – Working!You should not edit core WooCommerce files like this as you’ll lose the changes when the next update is released.
Forum: Plugins
In reply to: [Recipe Hero] Translation Problem (Version 1.0)Hey Georg! ??
I believe we’ve been in contact over email.
Looks like it’s all fixed up now in 1.0.1.
Again, let me know here / by email if there are any other issues.
Cheers! ??
Forum: Plugins
In reply to: [Recipe Hero] Recipe Hero on a membership siteHey Jkinley,
Awesome, looking forward to it! ??
Forum: Plugins
In reply to: [WooCommerce] One Step Checkout WoocommerceHey,
Try add the following code to the ‘custom functions’ area of your
functions.php
file (or use a plugin like Functionality:
add_filter ('add_to_cart_redirect', 'woo_redirect_to_checkout');function woo_redirect_to_checkout() {
global $woocommerce;
$checkout_url = $woocommerce->cart->get_checkout_url();
return $checkout_url;
}Forum: Reviews
In reply to: [WooCommerce Move Reviews] Just works. Simple and useful!Thank you very much! ??
Forum: Plugins
In reply to: [Recipe Hero] Want Help? Sure!Update! Post support threads here for better support ??
Forum: Plugins
In reply to: [Recipe Hero] Nice Plugin! Any plans for a print button?Oh, and Recipe Pins should work out of the box but will work on adding more support!
Forum: Plugins
In reply to: [Recipe Hero] Nice Plugin! Any plans for a print button?Hey!
That sounds awesome.
Will work on this quite soon and let you know when it’s done.