Add homepage to the list of pages in the Footer Widget
Solved by creating a custom menu from the customizer, then adding a widget to the footer containing said menu. Much easier than I thought it was going to be
Solved by creating a custom menu from the customizer, then adding a widget to the footer containing said menu. Much easier than I thought it was going to be
you can add the following code in the Additional CSS to make this not show anymore: .widget-column-3 div.elementor.elementor-36 { display:none !important; } Let me know if this works or not. I would like to help you with this 🙂
Duplicate Header and Footer
There probably isn’t a simple button you can push (unless there’s a special one the theme developer created), but it can most likely be done via some basic theme tweaking. First, make a child theme. There are lots of tutorials about how to do that. Second, modify the child theme. Two options for this: hide … Read more
I don’t think there’s a simple way to force WordPress to exclude a template part, or load a different one. See 1 and 2 for some Stack Exchange discussion and workarounds. BUT in the special case of widgets, you can implement a filter (namely,widget_display_callback) in which you check where the widget is to be displayed, … Read more
Code in your page says that the content is generated via elementor. I never used it, but probably you can find Elementor Bookmark in you admin panel or in Customizer->Elementor. In other cases if user is using child-theme code may be in functions.php or added via plugin like Contact Form 7.
wp_footer hook causing text to show on bottom of page
If you click “View page source” and scroll down you will see that your code is broken in the last line <p class=”description”><a href=”https://wordpress.stackexchange.com/questions/339202/ It looks like you are trying to call get_field() which is Advanced Custom Fields function but it may not exist because the plugin is not loaded. Try enabling the Advanced Custom … Read more
You have to add more links in your header menu like: <div class=”menu”> <a class=”btn”>Kategorien <span class=”icon icon-angle-down”></span></a> <ul class=”actions”><!–THIS IS YOUR CATEGORIES SUBMENU–> <li class=”cat-item cat-item-17″> <a href=”https://duvacon.de/category/action/” data-hasqtip=”13″ oldtitle=”Action” title=”” aria-describedby=”qtip-13″>Action</a> </li> </ul> <!– NEW ITEMS –> <a href=”%LINKTOCONTACT%” class=”btn”>Contact</a> <a href=”%LINKTOCHAT%” class=”btn”>Chat</a> </div> I don’t know if you are adding in the … Read more
The issue is with the .block class assigned a css of min-height .magazine .block { min-height: 480px; } Please change the min-height to auto or remove the ‘block’ class from that div element