Forum Replies Created

Viewing 20 posts - 1 through 20 (of 23 total)
  • Author
    Posts
  • in reply to: Homepage Featured Content not displaying properly on iPad2 #52466
    Josh
    Participant

    Thanks for continuing to provide great support!

    in reply to: Homepage Featured Content not displaying properly on iPad2 #52143
    Josh
    Participant

    Thanks Sakin. I sent an email with some alternates. If that doesn’t work I’ll post an alternate here.

    Josh

    in reply to: Homepage Featured Content not displaying properly on iPad2 #52097
    Josh
    Participant

    It’s a little difficult to describe so I took a screenshot of the demo site and emailed it to you. Thanks again!

    in reply to: Homepage Featured Content not displaying properly on iPad2 #52096
    Josh
    Participant

    Sakin:

    It usually does act normally, but every now and then the Homepage Featured Content lines in a single column vertically down the left margin on my iPad2 (usually this happens after the browser is refreshed). It leaves a huge amount of white space to the content’s right. I know at a certain break point the Homepage Featured Content lines up in one column for cell phones, but that’s not what I’m referring to. In “landscape” orientation on the iPad2 the four Homepage Featured Content items should line in one horizontal row – in “portrait” orientation they appear as a grid of four (both are usually what happens and appear to be normal for the responsive design based upon the different break points). However, when the problem arises all of the Homepage Featured Content aligns in a vertical column at the left edge. Not sure what it maybe??? I just checked your live preview site and the error is also occurring their (even with the 3 Homepage Featured Content setup). You have to refresh and rotate between “portrait” and “landscape” and continue to refresh and rotate and the issue will appear, but sometimes (not often) it does it on the first load. I don’t know if it’s a theme issue or a browser issue??? Thanks for looking into it, and thanks as always for great themes and excellent support!

    in reply to: Featured Post Widget Excerpt Displaying Current Page Text #52090
    Josh
    Participant

    Ok, thanks for trying Sakin. Here is a link to the WPML Support thread if anyone else runs into the issue: https://wpml.org/forums/topic/catch-everest-pro-featured-posts-widget-excerpt-malfunctioning-when-wpml-active/

    in reply to: Featured Post Widget Excerpt Displaying Current Page Text #52035
    Josh
    Participant

    The conflict seems to be with the WPML Multilingual CMS plugin. The issue only appears when it is activated. Any suggestions for a work around other than deactivating the plugin?

    in reply to: Featured Post Widget Excerpt Displaying Current Page Text #52034
    Josh
    Participant

    Fyi there is no issue with the widget in archive pages. Thanks in advance for the great support!

    in reply to: Homepage Featured Content not displaying properly on iPad2 #52033
    Josh
    Participant

    any luck? Thanks again.

    in reply to: Homepage Featured Content not displaying properly on iPad2 #46848
    Josh
    Participant

    Hello Sakin,

    I just sent you credentials. Thanks in advance!

    in reply to: Homepage Featured Content not displaying properly on iPad2 #46768
    Josh
    Participant

    Please ignore issue # 1, that comes from other custom CSS I added changing the margin for #main container

    in reply to: Static Text Above Blog Posts on Home Page #44072
    Josh
    Participant

    Yes, but that solution will not work for me because: 1) I am already using the homepage headline and sub-headlines for other slogan/text, 2) I am hoping for the “feel” and appearance of the static page (below “featured content”) for a more uniform user experience, and 3) the static text I would like add above the blog excerpts includes a video link and is about a paragraph long. Thanks for responding when you are able.

    Josh
    Participant

    Thanks Sakin! Great support!!! Using your advice and the parameters in the WP Codex found in the links in my earlier post I resolved the issue by adding the following code to the functions.php file in my child theme:

    if ( ! function_exists( 'catcheverest_content_nav' ) ) :
    /**
     * Display navigation to next/previous pages when applicable
     *
     * @since Catch Everest 1.0
     */
    function catcheverest_content_nav( $nav_id ) {
    	global $wp_query, $post;
    
    	/**
    	 * Check Jetpack Infinite Scroll
    	 * if it's active then disable pagination
    	 */
    	if ( class_exists( 'Jetpack', false ) ) {
    		$jetpack_active_modules = get_option('jetpack_active_modules');
    		if ( $jetpack_active_modules && in_array( 'infinite-scroll', $jetpack_active_modules ) ) {
    			return false;
    		}
    	}	
    	
    	// Don't print empty markup on single pages if there's nowhere to navigate.
    	if ( is_single() ) {
    		$previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
    		$next = get_adjacent_post( false, '', false );
    
    		if ( ! $next && ! $previous )
    			return;
    	}
    
    	// Don't print empty markup in archives if there's only one page.
    	if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) )
    		return;
    
    	$nav_class = 'site-navigation paging-navigation';
    	if ( is_single() )
    		$nav_class = 'site-navigation post-navigation';
    
    	?>
    	<nav role="navigation" id="<?php echo $nav_id; ?>" class="<?php echo $nav_class; ?>">
    		<h1 class="assistive-text"><?php _e( 'Post navigation', 'catcheverest' ); ?></h1>
    
    	<?php if ( is_single() ) : // navigation links for single posts ?>
    
    		<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'catcheverest' ) . '</span> %title', $in_same_term = true, $excluded_terms = '', $taxonomy = 'category' ); ?>
    		<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'catcheverest' ) . '</span>', $in_same_term = true, $excluded_terms = '', $taxonomy = 'category'  ); ?>
    
    	<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?>
    
    		<?php if ( get_next_posts_link() ) : ?>
    		<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'catcheverest' ) ); ?></div>
    		<?php endif; ?>
    
    		<?php if ( get_previous_posts_link() ) : ?>
    		<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'catcheverest' ) ); ?></div>
    		<?php endif; ?>
    
    	<?php endif; ?>
    
    	</nav><!-- #<?php echo $nav_id; ?> -->
    	<?php
    }
    endif; // catcheverest_content_nav

    Thanks for your all your help!

    Josh
    Participant

    Sorry, I wasn’t clear. I have my blog divided into categories. When someone views a single post the nav links you mention show links to the “previous” and “next” posts regardless of the category each post is in. So, for example, if I am viewing a post in category “B” the “previous” and “next” post links may point to articles in categories “A” and “C” depending on when each particular post was published. However, I am trying to force those nav links to only point to the “previous” and “next” posts that have the same taxonomy (i.e., category) as the post being viewed. So if I am viewing a single post in category “B” I would like the “previous” and “next” post links to only point to the “previous” and “next” posts that are also in category “B” and ignore the posts in categories “A” and “C.” The links I posted above show how to do this with a php code/argument that is different from the code found in the single.php for this theme. Sorry I didn’t post a link to my site. It is not quite live yet. If you send me an email I will set up an admin account for you to take a look at what I am talking about. Thanks for the great support and a great theme!

    in reply to: Header Right Side Bar Float Left on Mobile? #15716
    Josh
    Participant

    Thanks for the quick reply. I modified your code a little, i.e. – “max-width” and reduced the screen size from 980px to 600px, and it works great!


    @media
    screen and (max-width: 600px) {
    #header-right {
    float: left;
    }
    .header-sidebar .widget,
    .header-sidebar .widget_text {
    float: left;
    }
    }

    Thanks again!

    in reply to: Header Right Side Bar Float Left on Mobile? #15666
    Josh
    Participant

    Ok. Thanks. Sorry about that. I just sent all the information to you by contact form and by email reply. Thanks again for all of your help.

    Josh

    in reply to: Header Right Side Bar Float Left on Mobile? #15629
    Josh
    Participant

    I just sent the info via contact form

    in reply to: Change Header Image Link #9521
    Josh
    Participant

    Ok, sorry I will explain. I am using Catch Everest Pro. It’s a great theme. I want the header image uploaded in wp to link to a page other than the homepage. I am not talking about the featured slider, or the featured header image, but just the custom header (above the slider and menu if no featured header image). I am using a jpeg as the custom header, and I have turned off “show text” in the header. So it is just a pure jpeg on the left (about 700-800 px wide). And the right header sidebar on the right (200 px). Clicking on the header jpeg area in any page takes me back to the homepage, I want it to take me back to the locations page. The URL is not live yet (attorneymott.com), I have created a admin password for you to take a look. I sent the email. Thanks again in advance!

    in reply to: Change Header Image Link #9487
    Josh
    Participant

    I sent you an email. Thanks again for the great support.

    in reply to: Featured Slider Text Box #8444
    Josh
    Participant

    Thanks again for your attention. I can say this experience is making me a loyal Catch Themes customer. I have not added any additional cache plugins through WP. My domain is hosted by GoDaddy and is using Linux. I have tried to search whether GoDaddy has a separate cache, but I haven’t found anything yet. I activated another theme, deleted the Everest Pro Theme, cleared all browser caches, closed and restarted all browsers, reinstalled the Everest Pro theme, activated it, made a change in the Theme Options section, saved that, then pointed my browser, Chrome, to my site’s homepage url and I am running into the same problem, i.e., no box around the “Title” text in the Featured Image Slider. My website is not visible to the public right now due to professional regulations, and the fact it is for a future business not yet open. Please email me with your IP and I will add you to my whitelist so you can view the site, or, I can briefly make it publicly visible (just enough time for you to assist), but we would need to coordinate a day or time for that. Thanks again for the great attention and support!

    in reply to: Featured Slider Text Box #8408
    Josh
    Participant

    For some reason the box around the “Title” text in Chrome is gone again. I was going back and forth between browsers, and one minute it was there and the next . . . gone. Now its back to the same before the update. Also, IE 10 does not have any padding around the “Title” text in the Featured Image Slider (that was the case right after the update also). Thanks again for the support!

Viewing 20 posts - 1 through 20 (of 23 total)