Extend Muffin Builder items
Hello,
i am working on a website and i need to create some custom items, i'd like to use "blog" and "blog news" items as a template and create some custom ones.
I looked at the code and i found meta-functions.php and theme-shortcodes.php are the two main file for this part. Is there a way to extend/add new items without touching those files?
I'm currently working on a child-theme, i could edit those files but in case of an update i'd lose all the edits.
Thanks
Comments
if you want to create new functions or extend existing one, you can try to copy those functions from above files and paste under functions.php file in child theme. Most of them should work properly. However, if some of them won't work, then unfortunately it won't be possible to edit those functions without touching parent theme files.
Thanks!