gordonlangley
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] Download page show 404 ErrorHello – I’ve had this problem before – have you tried re-saving your permalinks?
Forum: Plugins
In reply to: [Download Monitor] archive.php + v4Hello Barry – ah, yes – it was for Page Addon, I’ll send an email
Forum: Plugins
In reply to: [WP Maintenance] Problème page maintenance.phpI can confirm that v5.0 also seems to be broken v4.04 does work however with WordPress v4.9.8
Forum: Plugins
In reply to: [WP Maintenance] Problème page maintenance.phpHello I have the exact same problem with version v5.0.1. I use your plugin on a few of my sites and they are all having the same issue. My custom maintenance.php is not loading even though it is selected as an option.
Many thanks
Forum: Plugins
In reply to: [Download Monitor] Edit dlm_download from front endFantastic – worked a treat.
Thank you Kuba!
Actually – got it
font-weight: 600;
simple
I had the same 2 column issue by WOOcommerce clearly identified that my my template overrides were out of date. Once I put my edits into the new content-product.php – my issues were solved. Useful thread thank you!!
Forum: Plugins
In reply to: [Posts Order] Plugin list in Admin effected by 'Post order'Fantastic – I’ve just test the UPDATE and this is fixed!! Thank you!!
Forum: Plugins
In reply to: [Posts Order] Oder by nameHello
Great news! Your update has fixed my issue with order by ‘slug’ – Many thanks for your hard work!!
Forum: Plugins
In reply to: [Posts Order] Oder by nameHello?
Is there a function I can use to stop your plugin from effecting a specific custom post type, (people) as I only need to order by slug for that custom post type. I am using order by ‘custom’ for the other post types and that works great!
Forum: Plugins
In reply to: [Posts Order] Oder by nameWorks great…
SELECT SQL_CALC_FOUND_ROWS ce2015_posts.ID FROM ce2015_posts INNER JOIN ce2015_term_relationships ON (ce2015_posts.ID = ce2015_term_relationships.object_id) WHERE 1=1 AND ( ce2015_term_relationships.term_taxonomy_id IN (132) ) AND ce2015_posts.post_type = ‘people’ AND (ce2015_posts.post_status = ‘publish’ OR ce2015_posts.post_status = ‘acf-disabled’ OR ce2015_posts.post_status = ‘private’) GROUP BY ce2015_posts.ID ORDER BY ce2015_posts.ID desc LIMIT 0, 10
Forum: Plugins
In reply to: [Posts Order] Oder by nameAll other ordering options work for me on my custom post types except for by ‘slug’.
I am using several shortcodes and plugins in the site so I appreciate there my be a conflict, however ordering by ‘slug’ doesn’t work on the default archive template for twentytwelve.
Is there a function I can use to stop your plugin from effecting a specific custom post type, (people) as I only need to order by slug for that custom post type. I am using order by ‘custom’ for the other post types and that works great!
Forum: Plugins
In reply to: [Posts Order] Oder by nameHello again – here are the results, I have set the ordering to ‘Slug Decending’ – the posts seem to be in date order, thanks
ELECT SQL_CALC_FOUND_ROWS ce2015_posts.ID FROM ce2015_posts INNER JOIN ce2015_term_relationships ON (ce2015_posts.ID = ce2015_term_relationships.object_id) WHERE 1=1 AND ( ce2015_term_relationships.term_taxonomy_id IN (132) ) AND ce2015_posts.post_type = ‘people’ AND (ce2015_posts.post_status = ‘publish’ OR ce2015_posts.post_status = ‘acf-disabled’ OR ce2015_posts.post_status = ‘private’) GROUP BY ce2015_posts.ID ORDER BY ce2015_posts.post_date DESC LIMIT 0, 10
Forum: Plugins
In reply to: [Posts Order] Oder by nameEr… no. I’ve been using shortcodes in the php template. I’ve tried using various types of queries, but they all gave me the same result.
Also I used the default twentytwelve theme archive.php and it won’t respect order by ‘Slug’.It’s not a massive issue for me, I’m sure it’s something I’ve done my end. But one solution would be to get your ‘Posts Order’ plugin to ignore my custom post type ‘people’… or maybe you could take a look for me, it’s driving me nuts.