I needed to make some changes to the header of DIVI site and this guy gives a great start to finish example.
I hope this helps someone else out there…
I needed to make some changes to the header of DIVI site and this guy gives a great start to finish example.
I hope this helps someone else out there…
With WordPress themes it is always better to create a Child Theme when you can so when your theme has a update your time spent customizing the CSS isn’t lost.
I stumbled onto the following page the other day that was a great help to get started. I was use to just writing my own, but this saved a bunch of time.
I hope this helps someone else out there…
Working on a new WordPress site I really wanted to go deep with DIVI. I got stuck on an issue with the dropdown submenu items. They were horizontal instead of a standard one below the other.
The issue was quickly solved when I created a new menu and made that one the primary.
I hope this helps someone else out there…
I was surprised I wasn’t able to do this easier, but it looks like others have struggled with this as well. I did get it fixed, and was able to limit the word count. I didn’t make a override yet but I will.
In the latest_item.php file I replaced:
<?php echo $this->item->introtext; ?>
with
<?php echo K2HelperUtilities::wordLimit($this->item->introtext, 50); ?>
Here is the thread that helped me solve it
https://www.joomlaworks.net/forum/k2-en/29406-solved-can-we-have-introtext-word-limit
I hope this helps someone else out there…