Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter jacquibolt

    (@jacquibolt)

    Hi Juan,

    Thanks for your reply! And thank you for this awesome plugin! It’s great to hear that the plugin works on your mobile device as well!

    Best wishes y muchas gracias,

    Jacqui

    • This reply was modified 1 year, 9 months ago by jacquibolt.
    Thread Starter jacquibolt

    (@jacquibolt)

    Nevermind, somehow it seems to work now.

    Thread Starter jacquibolt

    (@jacquibolt)

    Hey @threadi,

    I was talking about footnotes, not the footer… But I was so fed up with the sticky header of this theme that I changed the theme entirely. Now I’ve got the twenty twenty two wordpress theme and the problem is gone 🙂

    Thread Starter jacquibolt

    (@jacquibolt)

    Thank you for your reply @threadi! But I meant the black bar on the top of my site…

    The social button bar is also one thing I wanted to remove, but I adjusted the settings in the social warfare plugin, and it’s gone now.

    Thread Starter jacquibolt

    (@jacquibolt)

    Resolved 🙂

    Thread Starter jacquibolt

    (@jacquibolt)

    Thanks for your reaction @takayukister, it made me realise I still needed to insert the submit tag… The tag is inserted and everything is working now 🙂

    Thread Starter jacquibolt

    (@jacquibolt)

    Thanks @sterndata !

    Thread Starter jacquibolt

    (@jacquibolt)

    PS, I just changed the construction of the permalinks, so the right link is https://huijberstuinen.nl/contact/

    Thread Starter jacquibolt

    (@jacquibolt)

    Thanks @jnashhawkins
    I already asked ThemeForest for help, but they hardly respond…

    What should I look for at the index.php? This is the HTML of my index.php:

    <?php
    /**
     * Index page.
     *
     * @package notumn
     * @since 1.0
     */
    
    $notumn_home_layout    = get_theme_mod( 'notumn_homepage_layout', 'full_sidebar' );
    $notumn_home_sidebar   = ( preg_match( '/sidebar/', $notumn_home_layout ) ) ? true : false;
    $notumn_home_layout    = explode( '_', $notumn_home_layout );
    $notumn_home_layout    = $notumn_home_layout[0];
    $notumn_carousel       = get_theme_mod( 'notumn_featured_carousel', true );
    $notumn_carousel_style = get_theme_mod( 'notumn_carousel_style', 'style-1' );
    $notumn_container_lg   = array( 'list', 'fullwidth', 'grid' );
    $notumn_section_title  = array( 'list', 'grid' );
    
    get_header();
    ?>
    
    <?php if ( $notumn_carousel && $notumn_carousel_style === 'style-1' ) :
    	get_template_part( 'includes/templates/featured_carousel' );
    endif;
    
    if ( in_array( $notumn_home_layout, $notumn_container_lg, true ) ) : ?>
    	<div class="container container-lg">
    <?php else : ?>
    	<div class="container">
    <?php endif; ?>
    	
    		<?php get_template_part( 'includes/templates/top_custom_code' ); ?>
    
    		<div class="row">
    
    			<?php if ( $notumn_home_layout === 'grid' && ! $notumn_home_sidebar ) : ?>
    			<div class="col-md-12">
    			<?php elseif ( $notumn_home_layout === 'fullwidth' ) : ?>
    			<div class="col-md-10 col-md-push-1">
    			<?php else : ?>
    			<div class="col-md-8 <?php echo sanitize_html_class( ($notumn_home_sidebar)? 'posts-column' : 'col-md-push-2' ) ?>">
    			<?php endif; ?>
    
    			<?php if ( $notumn_carousel && $notumn_carousel_style === 'style-2' && $notumn_home_sidebar ) {
    				get_template_part( 'includes/templates/featured_carousel' ); } ?>
    
    				<div class="posts-container relative <?php echo sanitize_html_class( $notumn_home_layout ); ?>">
    
    					<?php if ( in_array( $notumn_home_layout, $notumn_section_title, true ) ) : ?>
    					<div class="section-title font-2">
    						<h2><?php echo esc_html( get_theme_mod( 'notumn_section_title', __( 'Latest Posts', 'notumn' ) ) ); ?></h2>
    					</div><!-- .section-title-->
    					<?php endif; ?>
    
    					<?php if ( $notumn_home_layout === 'grid' ) : ?>
    						<div class="row">
    					<?php endif; ?>
    
    					<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    						<?php get_template_part( 'content', $notumn_home_layout ); ?>
    					<?php endwhile; endif; ?>
    
    					<?php if ( $notumn_home_layout === 'grid' ) : ?>
    						</div>
    					<?php endif; ?>
    
    				</div><!-- .posts-container -->
    
    				<?php get_template_part( 'includes/templates/blog_pagination' ); ?>
    
    			</div><!-- .posts-column -->
    
    			<?php if ( $notumn_home_sidebar ) { get_sidebar(); } ?>
    
    		</div><!-- .row -->
    
    		<?php get_template_part( 'includes/templates/bottom_custom_code' ); ?>
    
    	</div><!-- .container -->
    
    <?php
    get_footer();
    • This reply was modified 2 years, 10 months ago by jacquibolt.
    Thread Starter jacquibolt

    (@jacquibolt)

    Hi George,

    Thank you so much for your reply! I tried to remove the sticky header, but it appears that the dark bar (underneath the sticky menu) cannot be removed in my theme… So if you know a way to code around this (when you get back), I would be most grateful!

    Forum: Fixing WordPress
    In reply to: Slow website
    Thread Starter jacquibolt

    (@jacquibolt)

    Ok, that’s great to hear! Thanks!

    Thread Starter jacquibolt

    (@jacquibolt)

    You were right, it was my broken link plugin! (Though the link seemed to be working…)

Viewing 12 replies - 1 through 12 (of 12 total)