Forum Replies Created

Viewing 15 replies - 16 through 30 (of 35 total)
  • Thank you 1-jah you are a gem. It works a treat. Found it on line 245 though not 123.

    Any ideas on the bottom 4 widget areas showing up, as they are showing the Lorem Ipsum on your site.

    The top menu is the list of pages that the update has put in. The custom menus that we make are being placed below. To get around this I have deleted my custom menu, but as the menu is alphabetical I used a plugin to remove the pages I didn’t want to show. Not happy with this but will do for now until it is sorted.

    If you are happy with the menu at the top you could just remove your custom menu.

    You haven’t mentioned the 4 widget areas showing at the bottom of the page. There are no widgets in them, this once again is a part of the update and obviously an error.

    You can drop blank text widgets in to the 4 bottom widget areas, and that just gives a bar, but better than the rubbish that is there now.

    You may know code to get rid of this, and I would be grateful if you can do it as I’m not into that side of things very well.

    Thread Starter Just Ard

    (@just-ard)

    Thanks for that 1-jah. I had put a widget where the banner was, but this has cleared the white space that was there.

    However still the issue with the menu and also the 4 bottom widget areas.

    Thread Starter Just Ard

    (@just-ard)

    As there has been no response to this issue I have made a work around for the menu at least until it is resolved.

    I removed my Custom Menu as it is showing below the Header, and installed the “Exclude Pages” Plugin. Even though it hasn’t been updated for 3 years it still works so easily. Once installed there is a check box for Exclude Pages when you edit a page. Untick and Voila it is gone from the menu.

    I hope this issue is resolved soon as I really like the theme, but if not I will have to find a new one as it is really annoying that there is no control since the update.

    Thread Starter Just Ard

    (@just-ard)

    It seems as though the new update has hard wired in the “Call To Action” & all 4 of the “Bottom” widgets with content, which only disappears when you add something in them, instead of them not showing if you have no widgets in them.

    The Menu also seem hard wired in the theme.

    To make the theme useful until the issue is sorted, I have removed my Custom Menu so two menus don’t show, and also put in blank Text Widgets in the “Call To Action” and all 4 “Bottom” Widget Areas.

    Looking forward to a resolution to this matter.

    It seems as though code from the Demo Version has been added to the Theme.

    Thread Starter Just Ard

    (@just-ard)

    Why is the theme putting in the Top Menu.

    When I change the settings to “Select-a-Menu” for the Primary or Footer then my genuine Menu Disappears and the false one that the theme is putting in still shows?

    Thread Starter Just Ard

    (@just-ard)

    This has nothing to do with the header as you can see that the Image is in the top. Also the Menu I have set is not the top one, but the one below.

    What seems programmed into the updates them is the “Flat Responsive” Banner advertising the Theme, and also the very top menu. Both of these were not here until I updated the theme on the 22nd.

    The Banner is as shown above, <div class=”fr_widgets_cta”> which shows it is on the Call To Action Widget. As I said I can remove it by putting a blank Textbox Widget into the “Call To Action” widget, and the banner disappears, but the top menu still stays.

    If you notice the Menus are slightly different. The False one at the very top is in alphabetical order, but the real one has the order of the menu I have in my set up.

    Any help on this, otherwise I am going to have to do the same as jeswebs and change theme.

    This has only started since the update of the 22nd September.

    Thread Starter Just Ard

    (@just-ard)

    Thank you. I should have come back on this.

    I installed Easy Google Fonts, and after about 5 minutes of reading the instructions it was easy.

    I needed to find the selector for the right sidebar which is #rightsidebar, then I was able to adjust the size of the font in the customiser. So I think when you saw it I had already made the adjustments.

    Thanks for your help. It truly is an excellent theme, and so flexible when you get into it.

    Hi

    I used:

    #content {
    padding-top: 1rem;
    }

    Which I got from an earlier post and works for me.

    Site: justard.com

    OOPS: I just realised you had used HIDE-TITLE, which I haven’t.

    I assume you found how.

    Thread Starter Just Ard

    (@just-ard)

    Just thought I’d let people know that an update has been made to the plugin and all working well.

    Thread Starter Just Ard

    (@just-ard)

    I found the problem.

    It was the “Pinterest Pin It Button On Image Hover And After Post & Page Content” plugin. Deactivated and now running fine.

    Thread Starter Just Ard

    (@just-ard)

    Not a WordPress issue it is a browser issue, as works on Explorer.

    Just Ard

    (@just-ard)

    Do you have featured images?

    You need a featured image for it to show above the text.

    You will see on my site that I have featured images, but on the posts without there is just text. https://www.justard.com

    Cheers Verma for the link I was looking to do this myself and it works. Also lots of other help on the site.

    Took a while to see what code I needed. Reading through I found that I needed to change “content.php” from this:

    <div class="entry-content">
    		<?php
    			/* translators: %s: Name of current post */
    			the_content( sprintf(
    				__( 'Continue reading %s', 'twentyfifteen' ),
    				the_title( '<span class="screen-reader-text">', '</span>', false )
    			) );
    
    			wp_link_pages( array(
    				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
    				'after'       => '</div>',
    				'link_before' => '<span>',
    				'link_after'  => '</span>',
    				'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
    				'separator'   => '<span class="screen-reader-text">, </span>',
    			) );
    		?>
    	</div><!-- .entry-content -->

    to this:

    <div class="entry-content">
    		<?php
    		if ( is_single() ) :
    			/* translators: %s: Name of current post */
    			the_content( sprintf(
    				__( 'Continue reading %s', 'twentyfifteen' ),
    				the_title( '<span class="screen-reader-text">', '</span>', false )
    			) );
    
    			wp_link_pages( array(
    				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
    				'after'       => '</div>',
    				'link_before' => '<span>',
    				'link_after'  => '</span>',
    				'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
    				'separator'   => '<span class="screen-reader-text">, </span>',
    			) );
    			else :
    
    			/* translators: %s: Name of current post */
    			the_excerpt( sprintf(
    				__( 'Continue reading %s', 'twentyfifteen' ),
    				the_title( '<span class="screen-reader-text">', '</span>', false )
    			) );
    
    			wp_link_pages( array(
    				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
    				'after'       => '</div>',
    				'link_before' => '<span>',
    				'link_after'  => '</span>',
    				'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
    				'separator'   => '<span class="screen-reader-text">, </span>',
    			) );
    			endif;
    		?>
    	</div><!-- .entry-content -->
Viewing 15 replies - 16 through 30 (of 35 total)