caterhamcomputing
Forum Replies Created
-
Forum: Plugins
In reply to: [CC Child Pages] Plugin List in Admin Area ends before CC child PagesI have investigated the Uncaught Error that you reported – it appears that somehow one of the filters is being sent data in an incorrect format (a string, not an array as specified by the WordPress documentation).
The most likely reason for this is a filter from another plugin is returning it’s data incorrectly … earlier versions of PHP were a bit more forgiving about handling this data, but the newer versions report it as an error.
Although the problem does not seem to originate from my code, I have made a few small tweaks to ensure the data is dealt with correctly and wrapped it up as a new release. Hopefully this will help with your problem.
Forum: Plugins
In reply to: [CC Child Pages] Plugin List in Admin Area ends before CC child PagesThank you for the details of the error message that you are getting – I have looked at the code and it appears to be due to a change in PHP 7.1 and above.
I believe that this problem affects the plugins list page (it is caused by attempting to add custom links to the listing), but will be doing a code review and some testing to make sure that there are not any other related issues.
Once I have completed this, I will release a new version of the plugin that should resolve the issue.
Forum: Plugins
In reply to: [CC Child Pages] Plugin List in Admin Area ends before CC child PagesHi Ivko,
I have been trying to recreate this problem, but without any success … can you let me have as much information as possible (PHP version, WordPress version, other plugin and theme used) so that I can try to set up an environment where the problem is apparent.
Thanks.
Forum: Plugins
In reply to: [CC Child Pages] Plugin List in Admin Area ends before CC child PagesSounds odd … I haven’t seen anything like that before.
Is this using the latest version of WordPress? Also, if you know what version of PHP you are using (PHP 5.6, 7.0, 7.1, etc.) it would help me try to reproduce this.
Thank you for letting me know.
Forum: Plugins
In reply to: [CC Child Pages] List disables thumbnailsThat is correct … setting
list="true"displays an unordered list (<ul>) of the Child Pages showing only their titles.As per the documentation, “all other parameters are ignored except for class, cols, exclude, orderby, order and id”.
If you want to show a list including thumbnails, I would suggest that this would (in most cases at least) be very similar to setting
cols="1"and maybe using a custom value forclassso that you can style the list exactly as you wish with a bit of custom CSS…- This reply was modified 7 years, 3 months ago by caterhamcomputing. Reason: mark some items as code
Forum: Plugins
In reply to: [CC Child Pages] Style more linkYou will need to copy the definitions for the
more-link-wrapperclass into theccpages_moreclass (easiest method is to enter the new CSS in the Custom CSS panel from the admin, or the CSS can be added to a child-theme if you are using one).Forum: Reviews
In reply to: [CC Child Pages] PerfectThank you for your feedback 🙂
Forum: Reviews
In reply to: [CC Child Pages] Duplicate DataCan you please explain the bug? If you can raise a ticket in the Support Threads area ( https://ww.wp.xz.cn/support/plugin/cc-child-pages/ ), I will try and help track down the problem.
Forum: Plugins
In reply to: [CC Child Pages] orderby=”title” order=”DESC” not workingCan you make sure that you are using the standard double quotes – looks from what you have posted as if you may have non-standard quotes … it should be:
orderby="title" order="DESC"… this sometimes happens if the code is copied and pasted …
Forum: Plugins
In reply to: [CC Child Pages] Not all child pages shownNo problem … easily done 🙂
Forum: Plugins
In reply to: [CC Child Pages] Admin editing slow when shortcode is in postGlad to hear that the issue is sorted for you …
I would suspect that the problem is due to how some combination of the plugins installed interact, using too many of the available resources and just hitting a limit on the WP Engine hosting.
I will continue to keep an eye out for anywhere the plugin may be doing things on the admin side but (unless there’s a bug I have yet to spot) inserting a shortcode shouldn’t cause any delays.
Forum: Plugins
In reply to: [CC Child Pages] Not displaying current page childs in pagesHi.
Sorry not to have got back to you previously … I have been away for a while.
Can you send me the URL for the page which has the problem? That would be helpful for me to initially have a look …
If you want me to log in to your site and see if I can spot the issue, please contact me via the contact form at https://caterhamcomputing.net/contact-us/ … please note that I have limited time this week and will be back to normal working hours next week.
Forum: Plugins
In reply to: [CC Child Pages] CC Child Pages for CategoriesAs it stands, the plugin is designed for working with hierarchical post types such as Pages, and not non-hierarchical post types such as the standard Post which are sorted into Categories and tagged …
The plugin has many hooks and filters which would allow you to manipulate the queries generated …
Forum: Plugins
In reply to: [CC Child Pages] Not all child pages shownI think that this must be the way you have your pages arranged somehow … The list of pages that shows up on your link includes “Turniere 2016”, not “Turniere” … so you need to check that the “Turniere” page has it’s parent set to Page ID 31 …
If you look at the actual Turnier page that you want to show up (https://ssg-dynamit.de/turniere/) it shows the 3 child pages as described.
Forum: Plugins
In reply to: [CC Child Pages] Admin editing slow when shortcode is in postHi.
Just a quick check in to say that I have been testing with various configurations, and have been unable to reproduce the issue as yet.
I am still puzzled as to how the plugin could cause the slowdown that you describe, as it should not be doing any processing in the admin side of things … can you post the shortcode with all of its parameters exactly as it is used on the page that you mention so that I can investigate if there may be some logic flaw causing the plugin to evaluate in certain circumstances.
The only other thing I can think of would be to turn of the Visual Editor button (via Settings -> CC Child Pages) in case that is interacting with any of the other plugins …