techhouse
Forum Replies Created
-
Forum: Plugins
In reply to: [Recipes by Simmer] Ordering of the ingredient listHi @lchelak,
Already sent your support team the info.
Forum: Plugins
In reply to: [Recipes by Simmer] Ordering of the ingredient listHere is the plugin that causes the add ingredients and instructions to not work:
AJS Instagram FeedI’ll have to find a new Instagram feed solution… any suggestions would be appreciated.
ps. your progress bug progress Github link returns 404.
Forum: Plugins
In reply to: [Recipes by Simmer] Ordering of the ingredient listAll plugins deactivated, Simmer ingredients and instructions can be added; except, the ingredients are all jumbled, after I “add in bulk” then add a heading ??
https://okanaganselect.ca/recipes/yum/chili-coriander-salmon-cake-beet-marmalade/- This reply was modified 8 years, 1 month ago by techhouse.
Forum: Plugins
In reply to: [Recipes by Simmer] Ordering of the ingredient listThanks, for the reply Lara. I considered a plugin conflict, but wanted to make sure this wasn’t a known bug, before I begin isolating the problem.
I will get back to you, with my findings.Forum: Plugins
In reply to: [Recipes by Simmer] Ordering of the ingredient listI have a similar problem, except that I also cannot add ingredients, Ingredient headings, Instruction, instruction headings or add bulk listing.
Each time I click on of those options, the screen scrolls to the top, and nothing happens.
I am using WP 4.7.2–en with Simmer 1.3.11
I was able to add these items, prior to the WP update.Any thoughts?
Forum: Plugins
In reply to: Plugin: Category Page 2.5 (page2cat): how to display morehey searchen,
you can add number of posts inline:
[catlist id=1 numberposts=20] // 20 entries
[catlist id=1 numberposts=-1] // unlimited entriesor you can change the default 5 cat listings in the list_cat_posts.php, in the \wp-content\plugins\list-category-posts directory on your wordpress website.
change the numberposts in this function:
function catlist_func($atts, $content=null) { $atts=shortcode_atts(array( 'id' => '0', 'name' => 'default', 'orderby' => 'date', 'order' => 'desc', 'numberposts' => '5', 'date' => 'no', 'author' => 'no', 'language' => 'en' ), $atts); return list_category_posts($atts); }
hope this helps.