Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)
  • Thread Starter thunder86

    (@thunder86)

    I tested it again. It shows the message you posted above but the data of the singe site visits which are mention in the WordPress Header-Menu are not deleted. The rest is reseted like it should. Is this maybe a bug in the Plugin? What’s the name to the Databank Table? I can check if the data is still available there.



    Try to add this to Additional CSS

    .body {
    background: #ffffff;
    border: none;
    color: #1d1d1d;
    font-family: ‘Montserrat’, ‘Helvetica Neue’, ‘Helvetica’, sans-serif;
    -webkit-text-size-adjust: 100%;
    }

    Thread Starter thunder86

    (@thunder86)

    Thats what I already tested but the stats aren’t reset

    Thread Starter thunder86

    (@thunder86)

    That’s the backend calendar which works quite well. I mean the frontend calendar which I can create via the following shortcode:
    [bookly-calendar]

    Here I can see the TIME and SERVICE. This is what I want to change to Time and Staff_Member.

    Thread Starter thunder86

    (@thunder86)

    This issue is also solved.
    One possibility to hide is the additional css code:

    header { display: none; }

    But I really like your social menu thats the reason, why I edited the header.php and removed the code, thats not important for me.

    This method works for me, because I don’t need the blog / gallery functions of the theme:

    header.php

    <head profile="https://gmpg.org/xfn/11">
    
        <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" >
    
        <?php wp_head(); ?>
    
    </head>
    
    <body <?php body_class(); ?>>
    
        <?php 
        if ( function_exists( 'wp_body_open' ) ) {
            wp_body_open(); 
        }
        ?>
    
        <a class="skip-link button" href="#site-content"><?php _e( 'Skip to the content', 'hitchcock' ); ?></a>
    
        <div class="navigation">
    
            <div class="section-inner">
    
                <ul class="main-menu">
    
                    <?php 
                    if ( has_nav_menu( 'primary' ) ) {
    
                        $nav_args = array( 
                            'container'         => '',
                            'items_wrap'        => '%3$s',
                            'theme_location'    => 'primary',
                        );
    
                        wp_nav_menu( $nav_args );
    
                    } else {
    
                        $list_pages_args = array(
                            'container' => '',
                            'title_li'  => ''
                        );
    
                        wp_list_pages( $list_pages_args );
    
                    } 
                    ?>
    
                    <li class="header-search">
                        <?php get_search_form(); ?>
                    </li>
    
                </ul>
    
            </div><!-- .section-inner -->
    
            <button type="button" class="nav-toggle">
    
                <div class="bars">
                    <div class="bar"></div>
                    <div class="bar"></div>
                    <div class="bar"></div>
                </div>
    
            </button><!-- .nav-toggle -->
    
            <div class="mobile-navigation">
    
                <ul class="mobile-menu">
    
                    <?php 
                    if ( has_nav_menu( 'primary' ) ) {
                        wp_nav_menu( $nav_args );
                    } else {
                        wp_list_pages( $list_pages_args );
                    }
                    ?>
    
                </ul>
    
                <?php get_search_form(); ?>
    
            </div><!-- .mobile-navigation -->
    
        </div><!-- .navigation -->
    
        <?php $image_image_url = get_header_image() ? get_header_image() : get_template_directory_uri() . '/assets/images/bg.jpg'; ?>
    
        <div class="header-image" style="background-image: url( <?php echo $image_image_url; ?> );"></div>
    
        <div class="header section-inner">          
            <?php if ( has_nav_menu( 'social' ) ) : ?>
                <ul class="social-menu">        
                    <?php 
                    wp_nav_menu( array(
                        'theme_location'    =>  'social',
                        'container'         =>  '',
                        'container_class'   =>  'menu-social',
                        'items_wrap'        =>  '%3$s',
                        'menu_id'           =>  'menu-social-items',
                        'menu_class'        =>  'menu-items',
                        'depth'             =>  1,
                        'link_before'       =>  '<span class="screen-reader-text">',
                        'link_after'        =>  '</span>',
                        'fallback_cb'       =>  '',
                    ) );
                    ?>
                </ul><!-- .social-menu -->
            <?php endif; ?>
        </div><!-- .header -->
    
        <main id="site-content">
    Thread Starter thunder86

    (@thunder86)

    Problem solved! I used your singular.php to create a new page.

    Via AdminMenu is added a new page “forum” and inserted the page-forum.php in the Hitchcock theme folder. The page-forum.php has the code of the singular.php in it an my edits of the w3all plugin to allow me to integrate the phpbb forum in your theme.

    Thank for your help and your amazing theme!

    https://photography.surferparadise.de/forum/

    Thread Starter thunder86

    (@thunder86)

    I catch up this Topic because I′m still interested to find a solution to remove the header from other pages on my website.

    .home .header { display: none; } what is the code instead of .home to remove the header?

    Thread Starter thunder86

    (@thunder86)

    Hey!
    .home was for the main page but how could I remove the header on some other pages ?

    As example: https://photography.surferparadise.de/get-your-pictures-step-1/

    I would like to remove the header on this site. Could I remove the header via css?


    If its possible, I would remove the header completely from all sites because the social menu in the footer works quite well.

    Thread Starter thunder86

    (@thunder86)

    Okay done!

    I put the following code above the footer:

    <?php if ( has_nav_menu( 'social' ) ) : ?>
    			
    				<ul class="social-menu">
    							
    					<?php 
    					wp_nav_menu( array(
    						'theme_location'	=>	'social',
    						'container'			=>	'',
    						'container_class'	=>	'menu-social',
    						'items_wrap'		=>	'%3$s',
    						'menu_id'			=>	'menu-social-items',
    						'menu_class'		=>	'menu-items',
    						'depth'				=>	1,
    						'link_before'		=>	'<span class="screen-reader-text">',
    						'link_after'		=>	'</span>',
    						'fallback_cb'		=>	'',
    					) );
    					?>
    					
    				</ul><!-- .social-menu -->
    			
    			<?php endif; ?>
    Thread Starter thunder86

    (@thunder86)

    Ah perfect.. Only disadvantage that I have seen, Social menu is hidden as well.

    Now I have to check how I can put the social menu in the bottom. I already change the footer (not the widget! The html file).

    I just need the social menu code to put it above your “THEME BY?ANDERS NORéN“.

    I know it will be shown twice on the other pages but that’s okay for me.

    Thread Starter thunder86

    (@thunder86)

    Okay I unterstand. Is there any chance to remove side name and describe?

    In this case the social menu will move up ?

    Thread Starter thunder86

    (@thunder86)

    Amazing! This works perfect! Is there any change to put the social menu under the widget via css?

    Thread Starter thunder86

    (@thunder86)

    Unfortunately this work not 100% like I expect.

    The post are hidden but der is a huge gab between Social Menu and the footer 1.

    https://photography.surferparadise.de

    Thread Starter thunder86

    (@thunder86)

    Solved. Cookie issue

Viewing 14 replies - 16 through 29 (of 29 total)