-
AuthorPosts
-
March 24, 2016 at 10:37 am #602920
Hey,
I want to modify the breadcrumbs PHP file (I am trying to exclude the woocommerce default shop page from the breadcrumb as this page is difficult to style).
I am using a child theme.
If I place my modified class-breadcrumbs file into an identical folder structure in my child theme it doesnt work.
How can I get enfold to use my custom PHP file in my child theme and ignore the one in the parent enfold theme?
Thanks :)
March 27, 2016 at 4:08 am #603864Hi byteben!
Please check out this video
Make sure the path is correct and include the exact files path… When you don’t wordpress will only recognize some files like header.php, footer.php etc
Example:
Parent Theme > file
Child Theme > fileParent Theme > folder / file
Child Theme > folder / filePlease refer to https://wordpress.org/support/topic/overriding-parent-theme-sub-files-with-a-child-theme-how for more details.
Detailed info here https://developer.wordpress.org/themes/advanced-topics/child-themes/
Best regards,
VinayJuly 8, 2016 at 11:23 am #658326Hey guys,
I did exactly what the video said with the class-breadcrumb.php, but still the original one is chosen over the one in my childtheme…
I have the file in childtheme/framework/php/, so the path is correct.All i wanted to do is chnage the max-length of the title displayed from 70 to 30, but when i change it back in the original theme, its back to 70, even though i changed it to 30 in the childtheme…
How come this wont work?Thanks,
Max-
This reply was modified 9 years, 4 months ago by
mkdreirad.
July 11, 2016 at 1:15 pm #659233Hi,
Please add following code to functions.php file of your child theme instead
add_filter('avia_breadcrumbs_args', 'avia_change_bc_truncate', 50, 1); function avia_change_bc_truncate($args){ $args['truncate'] = 30; return $args; }Best regards,
YigitJuly 11, 2016 at 1:18 pm #659237Thanks Yigit!
But can you tell me why the childtheme wont work? I mean it’s solved, but just so i know…July 11, 2016 at 1:49 pm #659252 -
This reply was modified 9 years, 4 months ago by
-
AuthorPosts
- The topic ‘Replace class-breadcrumbs.php in child theme’ is closed to new replies.
