bryceadams
Forum Replies Created
-
Forum: Reviews
In reply to: [WooCommerce Quantity Increment] Awesome!Thank you for using it!
Forum: Plugins
In reply to: [Recipe Hero] Selecting Different template rather than Theme Default TemplateForum: Plugins
In reply to: [Recipe Hero] theme integration problemsCheck this out: http://recipehero.in/docs/editing-template-files/
Forum: Plugins
In reply to: [Recipe Hero] Error messageTry and ask GoDaddy to update your PHP version to the latest 🙂
Forum: Plugins
In reply to: [Recipe Hero] Translation bug widget quesitonHey!
Are you on the latest version and did you translate every single string? You may have missed or done a couple wrong.
Try https://wordpress.org/plugins/list-custom-taxonomy-widget/ or https://wordpress.org/plugins/tag-list-widget/
🙂
Forum: Plugins
In reply to: [Recipe Hero] Persian translationHey! Awesome 🙂 Yes, I still need to update some extra strings for ingredients, etc.
Would be great if you could email me the translation and I’ll give you credit. http://recipehero.in/contact/
Forum: Reviews
In reply to: [Recipe Hero] It's not that bad but …Hey Paul. Thanks for trying it out!
It’d be awesome if you consider opening a support thread (https://wordpress.org/support/plugin/recipe-hero) or GitHub issue (https://github.com/recipe-hero/recipe-hero/issues) first before leaving a review. I’m really open to new ideas, problems and suggestions, so that’s the best way to get them.
To be honest, I don’t cook 🙂 I made this for my family and friends who do though. Some thoughts:
1. It has the schema.org markup so it should display well on Google. About Google+, Facebook, I’m not 100% sure as that’s more SEO / Social Media plugin territory. Definitely happy to explore this further though – https://github.com/Recipe-Hero/Recipe-Hero/issues/131
2. Good point. It’s something I’ve already considered but need to think more about as not every recipe has this. I just need to work out an elegant way that allows it but doesn’t impact other users.
3. They should, but of course I can’t be certain how every theme handles it. However, I’m happy to try fix it with any theme if I can! Eg. here – https://wordpress.org/support/topic/recipe-hero-working-with-themes?replies=11 – we continued it over email I believe.
Anyway, I hope you’ll consider changing your review in the future but regardless, thanks for the 3 stars! 🙂
Forum: Plugins
In reply to: [WP Job Manager] Anyone publishing jobs to Indeed via XML?For reference it’s easily possible with this: https://wpjobmanager.com/add-ons/indeed-integration/
Looks like pay per click, you may want to check with Indeed though: http://www.indeed.com/hire/pricing
Forum: Plugins
In reply to: [WP Job Manager] Displaying a new field type "file"Hey,
What do you mean code the array() terms.
Does it work on your site at all? Where does it get stuck?
Forum: Plugins
In reply to: [WP Job Manager] load more jobsHey.
This should be possible using an Infinite Scroll plugin or something like Jetpack – http://jetpack.me/support/infinite-scroll/
I don’t believe this is a WP Job Manager issue. How many characters are you trying to use for the title, 200?
I read here: http://wordpress.stackexchange.com/questions/89767/how-to-increase-the-character-limit-for-post-name-of-200
The suggested solution is to add the following code to the ‘custom functions’ area of your
functions.phpfile (or use a plugin like **Functionality** – https://wordpress.org/plugins/functionality/):// first of all lets remove standard hook remove_filter( 'sanitize_title', 'sanitize_title_with_dashes' ); // add our custom hook add_filter( 'sanitize_title', 'wpse8170_sanitize_title_with_dashes', 10, 3 ); function wpse8170_sanitize_title_with_dashes( $title, $raw_title = '', $context = 'display' ) { $title = strip_tags($title); // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title); // Remove percent signs that are not part of an octet. $title = str_replace('%', '', $title); // Restore octets. $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title); if (seems_utf8($title)) { if (function_exists('mb_strtolower')) { $title = mb_strtolower($title, 'UTF-8'); } $title = utf8_uri_encode($title, 1000); // <--- here is the trick! } $title = strtolower($title); $title = preg_replace('/&.+?;/', '', $title); // kill entities $title = str_replace('.', '-', $title); if ( 'save' == $context ) { // Convert nbsp, ndash and mdash to hyphens $title = str_replace( array( '%c2%a0', '%e2%80%93', '%e2%80%94' ), '-', $title ); // Strip these characters entirely $title = str_replace( array( // iexcl and iquest '%c2%a1', '%c2%bf', // angle quotes '%c2%ab', '%c2%bb', '%e2%80%b9', '%e2%80%ba', // curly quotes '%e2%80%98', '%e2%80%99', '%e2%80%9c', '%e2%80%9d', '%e2%80%9a', '%e2%80%9b', '%e2%80%9e', '%e2%80%9f', // copy, reg, deg, hellip and trade '%c2%a9', '%c2%ae', '%c2%b0', '%e2%80%a6', '%e2%84%a2', // grave accent, acute accent, macron, caron '%cc%80', '%cc%81', '%cc%84', '%cc%8c', ), '', $title ); // Convert times to x $title = str_replace( '%c3%97', 'x', $title ); } $title = preg_replace('/[^%a-z0-9 _-]/', '', $title); $title = preg_replace('/\s+/', '-', $title); $title = preg_replace('|-+|', '-', $title); $title = trim($title, '-'); return $title; }Please let me know how that goes! 🙂
Forum: Plugins
In reply to: [Recipe Hero] Idea of new featuresSorry for the delay.
2) No idea as I’m just super busy at the moment and travelling a lot. You’ll 100% be the first to know and test it – will email you when it is ready.
5) They should understand as soon as they see. Ask if there is a shortcode or template tag to add it manually – I can then give you some custom PHP to add it at the right place for recipes.
A) Recipe’s don’t use categories so it wouldn’t work like that. Try find a plugin for displaying ‘custom post types’ and ‘custom taxonomies’ in widgets. I’ll be adding widgets like this to core soon when I get time for free.
B) Yeah, just cuisine and course. Plans to add a ‘tags’ extension soon, as I’d rather include more functionality than I can do through the main plugin.
C) Ah, that’s hard if the theme uses custom styles for just posts. If they / you can add the same for ‘pages’ or custom post types in the theme, it can display the same but it’s not something the plugin can do.
Another way is just using shortcodes instead maybe?
Forum: Plugins
In reply to: [WP Job Manager] Show user avatarExcellent – thanks for sharing!
Great to hear you got it sorted out 🙂
Forum: Plugins
In reply to: [WP Job Manager] Job filter issueHey,
Yeah, I’ve seen something like this before and as you thought, it was a theme/plugin, most likely plugin. Try deactivate non WP Job Manager plugins and see if it fixes it 🙂