I have experience with WordPress but is my first time with Divi. Based on the client design, I need simple change. On the image below you could see block from the blog(a post list used on the homepage in my case)
What I need to do is showing the date, category and title in a different order. Which is the best way to change this. I’m using a child theme and I tried to put the file includes/builder/module/blog.php
and edit it but I don’t have any luck.
Thanks
2
Answers
Do you have the divi page builder ? If so, it might be possible in the settings of the section where your post is located (you can edit it directly from the front end editor).
You have to move blog.php to correct folder of the child theme first:
includes/blog.php
After that, need to modify code, first at the top of the file:
Change to:
Set vb_support to "off"
Comment out line at the very bottom of the file:
And finally, activate new module in the functions.php of your child theme:
After that you can perform required modifications to layout and even add your own features 🙂