The Details at the bottom of the page seem to show today’s date and time, except that the time is off by exactly 5 hours (my timezone setting is -5), nor is it the time of the location of the event.
Basically I see no reason to have it, so would like to remove that whole section please.
I have added the views folder to my child-theme and removed a bunch of code from the single-event.php file but it didn’t change anything.
Would appreciate some instructions with more details than what I’ve been able to find on the website. I’m not a coder.
Thank you.
My site: https://www.barrelleaf.com/
Thanks.
]]>How are you today? Following the directions in the Lithestore theme docs on how to remove a section, for some reason I cannot get this to work properly.
adding this to functions.php or frameworks/hooks.php in the child theme:
<?php
remove_action( 'lithestore_on_sale_products', 'lithestore_on_sale_products');
remove_action( 'lithestore_popular_products', 'lithestore_popular_products');
?>
does nothing for me. What am I missing here, or what am I doing wrong? Thank you once again for your help and support.
]]>Is there a way to remove the background image section?
Now i have placed an image with dots there, but actually i do not need this space.
When i don’t place an image there is an empty space.
Or: can i change the size of this space?
www.beingmoved.nl
Thanks!
]]>I’d like to remove the “You are previewing bloginfo(‘name’)” section/panel in customizer…
Looks like this section/panel it’s not like the others that you can remove using $wp_customize->remove_section(‘$id’), there’s no reference of it in class-wp-customize-manager.php
Does Anybody know a way to remove that section/panel from customizer?
tks
]]>I’m having a problem developing a zerif-lite’s child theme.
I can’t remove some sections in customizer.
I tried doing the same steps as other child themes of zerif-lite like zifer and responsive boat but it just doesn’t work, I don’t know why…I guess I’m missing something really obvious.
I just want to remove some sections, controls and settings from the parent theme.
This is my functions.php, and the code above doesn’t work on my child theme, all i want to remove is still there
add_action('customize_register', 'my_customizer');
function my_customizer($wp_customize)
{
/************* OUR FOCUS SECTION ******************/
$wp_customize->remove_section( 'zerif_ourfocus_section');
/* show/hide */
$wp_customize->remove_setting( 'zerif_ourfocus_show');
$wp_customize->remove_control( 'zerif_ourfocus_show');
/* our focus title */
$wp_customize->remove_setting( 'zerif_ourfocus_title');
$wp_customize->remove_control( 'zerif_ourfocus_title');
/* our focus subtitle */
$wp_customize->remove_setting( 'zerif_ourfocus_subtitle');
$wp_customize->remove_control( 'zerif_ourfocus_subtitle');
}
]]>I’m converting a HTML site to WordPress and I’m faced with importing the sidebar on every page. I’m using WordPress Import 2 plugin with good success on other sites but here I can’t seem to avoid importing the sidebar with every page.
I could have a solution if I can selectively remove a particular div id I could make it work. I “think” I need some jQuery script to remove it before the closing /body tag though I’m honestly not sure.
Here is the source of the page:
<div id="columnMain">
<div id="contentLeft">
CONTENT HERE
</div>
<div id="containerPageTitle">
<h1 id="pageTitle">Criminal Defense Lawyers</h1>
</div>
<div id="content">
and here is what I was using before /body:
<script>
$(document).ready(function(){
$("#contentLeft").remove();
});
<script>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Any help is appreciated.
Eric
]]>