Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'page '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 12,041 through 12,060 (of 53,646 total)
  • Author
    Search Results
  • #225176

    Hi guys, I’m getting frustrated with the parallax positioning and resulting display. I am using several in Full Width Stretched (I’ve also tried “Full Width”) “Ascend: Call to Action” elements. Every time I change one of these from their current Background Image Position (say Center Center) to Center Top or Center Bottom to try and make the most important part of the photo more visible, it shows the edges of the image and repeats the image. If I try to change it back to Center Center, for example, it’s still displayed weird or doesn’t change at all, like it is “stuck”. Or maybe I’m not using the ideal image ratio size?? Not sure how to explain this any better, or even if you will see what I am seeing – it seems to change with the display width. I imagine it is user error, and I was wondering if you have any reference I can learn from to try and get a better handle on how parallax works, or if you see I’m doing something wrong.

    I’m struggling in more places on my website than this, but if you scroll through this webpage you will see 6 parallax full-width sections – some or many of which are misbehaving at full width, others at reduced widths.

    #225175

    I would suggest uploading images a bit larger. At least 800x800px.
    What happens when you turn off “Enable Product Image Aspect Ratio on Catalog pages”?

    Hannah

    #225154

    I read previous answers on the forum that you don’t have an option to choose transitions for the individual slides on the Kadence Slider.

    Will you ever consider adding this function? I love the Kadence slider, but my page would really benefit from a slider whose slides slided from side to side instead of faded in.

    #225152
    This reply has been marked as private.
    #225128
    This reply has been marked as private.
    #225127

    Hi Ben,
    I’m sorry, I’m kind of clueless on this one since we had an outside developer make this modification to our theme files. I tried moving the sidebar.php file out of the templates directory in our child theme and that didn’t work at all….made things worse, in fact. I started looking more closely at the custom child theme files…

    I’m starting to think it might be a plugin problem….We are using a plugin called Co-Authors Plus to assign more than one author to a post and there is some code to display things within theme templates.

    Looking more closely at our child them files I see the following code in the content-single.php file:

    <?php
    		remove_action( 'kadence_single_post_after', 'virtue_post_authorbox', 20 );
    ?>
    
    <?php global $post; ?>
    	<?php $authors = get_coauthors(get_the_ID()); ?>
    		<?php if ($authors): ?>
    		<?php foreach ($authors as $author): ?>
    			<div class="author-box">
    				<ul class="nav nav-tabs" id="authorTab">
    			  <li class="active"><a href="#about"><?php _e('About Author', 'virtue'); ?></a></li>
    			  <li><a href="#latest"><?php _e('Latest Posts', 'virtue'); ?></a></li>
    			</ul>
    
    			<div class="tab-content postclass">
    			  <div class="tab-pane clearfix active" id="about">
    			  	<div class="author-profile vcard">
    					<?php echo get_avatar( get_the_author_meta('ID', $author->ID), 80 ); ?>
    			        <div class="author-follow"><span class="followtext"><?php _e('Follow', 'virtue'); ?> <?php the_author_meta( 'display_name', $author->ID ); ?>:</span>
    			        <?php if ( get_the_author_meta( 'facebook', $author->ID ) ) { ?>
    						<span class="facebooklink">
    							<a href="<?php the_author_meta( 'facebook', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Facebook', 'virtue');?>"><i class="icon-facebook"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'twitter', $author->ID ) ) { ?>
    			            <span class="twitterlink">
    							<a href="<?php the_author_meta( 'twitter', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Twitter', 'virtue');?>"><i class="icon-twitter"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'google', $author->ID ) ) { ?>
    			            <span class="googlepluslink">
    							<a href="<?php the_author_meta( 'google', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Google Plus', 'virtue');?>"><i class="icon-google-plus"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'youtube', $author->ID ) ) { ?>
    			            <span class="youtubelink">
    			        <a href="<?php the_author_meta( 'youtube', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on YouTube', 'virtue');?>"><i class="icon-youtube"></i></a>
    			      </span>
    			            <?php } if ( get_the_author_meta( 'flickr', $author->ID ) ) { ?>
    			            <span class="flickrlink">
    							<a href="<?php the_author_meta( 'flickr', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Flickr', 'virtue');?>"><i class="icon-flickr2"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'vimeo', $author->ID ) ) { ?>
    			            <span class="vimeolink">
    							<a href="<?php the_author_meta( 'vimeo', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Vimeo', 'virtue');?>"><i class="icon-vimeo"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'linkedin', $author->ID ) ) { ?>
    			            <span class="linkedinlink">
    							<a href="<?php the_author_meta( 'linkedin', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on linkedin', 'virtue');?>"><i class="icon-linkedin"></i></a>
    						</span>
    			            <?php } if ( get_the_author_meta( 'dribbble', $author->ID ) ) { ?>
    			            <span class="dribbblelink">
    							<a href="<?php the_author_meta( 'dribbble', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Dribbble', 'virtue');?>"><i class="icon-dribbble"></i></a>
    						</span>
    			      <?php } if ( get_the_author_meta( 'pinterest', $author->ID ) ) { ?>
    			            <span class="pinterestlink">
    							<a href="<?php the_author_meta( 'pinterest' ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Pinterest', 'virtue');?>"><i class="icon-pinterest"></i></a>
    						</span>
    			      <?php } if ( get_the_author_meta( 'instagram', $author->ID ) ) { ?>
    			      <span class="instagramlink">
    			        <a href="<?php the_author_meta( 'instagram', $author->ID ); ?>" target="_blank" title="<?php _e('Follow', 'virtue'); ?>  <?php the_author_meta( 'display_name', $author->ID ); ?> <?php _e('on Instagram', 'virtue');?>"><i class="icon-instagram"></i></a>
    			      </span>
    					<?php } ?>
    			        </div><!--Author Follow-->
    
    					<h5 class="author-name">
    						<a href="<?php echo $author->data->user_url; ?>"><?php echo get_the_author_meta('display_name', $author->ID); ?></a>
    					</h5>
    			        <?php if ( get_the_author_meta( 'occupation', $author->ID ) ) { ?>
    			        <p class="author-occupation"><strong><?php the_author_meta( 'occupation', $author->ID ); ?></strong></p>
    			        <?php } ?>
    					<p class="author-description author-bio">
    						<?php the_author_meta( 'description', $author->ID ); ?>
    					</p>
    			        </div>
    			   </div><!--pane-->
    			  <div class="tab-pane clearfix" id="latest">
    			  <div class="author-latestposts">
    			  <?php echo get_avatar( get_the_author_meta('ID', $author->ID), 80 ); ?>
    			  <h5><?php _e('Latest posts from', 'virtue'); ?><a href="<?php echo get_author_posts_url($author->ID); ?>"> <?php echo get_the_author_meta('first_name', $author->ID); ?></a></h5>
    			  			<ul>
    						<?php
    					  $authordata = $author;
    			          $temp = null; 
    			          $wp_query = null; 
    			          $wp_query = new WP_Query();
    			          $wp_query->query(array(
    			          'author' => $authordata->ID,
    			          'posts_per_page'=>3));
    			          $count =0;
    			           if ( $wp_query ) : 
    			          while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
    
    			          <li><a href="<?php the_permalink();?>"><?php the_title(); ?></a><span class="recentpost-date"> - <?php echo get_the_time('F j, Y'); ?></span></li>
    			       <?php endwhile; 
    			        endif; 
    			        $wp_query = null; 
    			          $wp_query = $temp;  // Reset
    			        wp_reset_query(); ?>
    						</ul>
    				</div><!--Latest Post -->
    			  </div><!--Latest pane -->
    			</div><!--Tab content -->
    			</div><!--Author Box -->
    		<?php endforeach; ?>
    		<?php endif; ?>

    At this point, I’d be happy to have a modification to the code above that would at least display one author.
    thanks for any thoughts you might have.
    john.

    #225126

    Unfortunately, with the WordPress update released this morning, now no custom excerpts are displaying as paragraphs when using the Post Grid/Carousel Block. Before the update, if there was one post in the paginated page with no custom excerpt, all of the posts that had one was displaying paragraphs. Now none are. On my public live website using the Genesis Framework post grid they display fine, but not in my sandbox site with your Gutenberg Post Grid/Carousel Block. Whatever the issue is, it’s worse now with this mornings WordPress update. It’s not a show stopper. It’s just aesthetics. Just an irritant as I want them to display as they should display.

    #225117

    Hello,

    The page title for your home page is controlled in Theme Options> Home Layout. Move the page title module to the deactivated column and let me know if it works for you!

    -Kevin

    #225114

    I would like to hide the page title on the Front Page, but it… just… won’t… go!

    Link to problem page:

    Yes, I’ve selected the Hide Page Title dropdown on the page editor AND turned off the Show Page Title option in Theme Options.

    Bizarrely, the page title wasn’t showing up until I made this page my Front Page. Is there an issue with automatically showing the Page Title on the Front Page?

    How can I turn the Page Title off once and for all, please?

    Thanks for your help.

    #225113

    I saw in another thread (a virtue one) some code with a hook for a function to add some php code after the body tag

    add_action('init', 'custom_child_init');
    function custom_child_init() {
    add_action('virtue_after_body', 'custom_gtm4wp_support');
    function custom_gtm4wp_support() {
    if ( function_exists( ‘gtm4wp_the_gtm_tag’ ) ) { gtm4wp_the_gtm_tag(); }
    }
    }

    Do you have a version of this code for Pinnacle? I assume the virtue_after_body hook is unique to virtue

    In forum: Ascend Theme

    In reply to: Site width below 940?

    #225110

    Hmm, try this CSS and let me know if it works for you:

    @media (min-width: 992px) {
    div#content, div#pageheader .container {
    max-width: 740px !important;
    }

    -Kevin

    In forum: Ascend Theme

    In reply to: Site width below 940?

    #225107

    Hi Kevin,

    I’ve actually decided to keep the existing page width for the time being so it’s difficult to show you directly. Basically, everything shrunk to 720px with the exception of breadcrumbs and header titles so it was only noticeable if someone was searching the page or browsing a category/tag.

    Thank you so much for all your help!

    Cheers,

    Mark

    #225095

    You would’ve had to have added it. When using the static home page, the CSS is the only way to hide the header and footer on the home page. It ignores the landing page assignment and uses the home page template, so the CSS is required.

    -Kevin

    In forum: Ascend Theme

    In reply to: Site width below 940?

    #225093

    Can you link directly to a page where the breadcrumbs and titles are showing incorrectly?

    -Kevin

    #225088

    Thanks Kevin,
    The site is DamnRoofer.com ,

    It started when I wanted a blank Home page with only content. No knowing any better, I just used the template as “Landing page – no header”. Everything worked fine. I decided to change it back to a normal Home with header/footer. So, I just modified the page to use the template “FullWidth”. It did not work. Now, even if I make a simple page that looks correct as a “NOT static home”, when I change it to be the static Home, the headers disappear. Almost as though I have somehow corrupted the standard settings for a page when set to static Home.

    #225081

    Hello,

    If you’re hiding the header and footer on your home page, you’re likely using CSS.

    Can you post a link to your site so I can take a look?

    -Kevin

    #225077

    Hi Ben

    Hope you are well.
    I have attached the information however I wasn’t sure which settings you wanted from the page – if you let me know then I can get them for you.

    Many thanks
    Susie

    Walking-Post-image-distortion003 Walking-Post-image-distortion001 Walking-Post-image-distortion002

    #225073

    Hey Christian,
    You can create a slider like this using the Ascend: Gallery widget. Are you using a page builder plugin such as Siteorigin or Elementor? Both of those would allow you to add widgets to your portfolio posts.
    Let me know if you need further help setting this up!

    Hannah

    #225061

    Hi there,

    My customer is quite happy how the portfolio grid looks on the start page, so I would like to stick with portfolio items.
    But within the portfolio items, they want to have an image slider with thumbnails.
    As the pictures come with mixed aspect ratios, I would need a portfolio type “Image slider with thumbnails (different image ratio)”

    But that doesn’t exist 🙂
    You offer either thumbnails OR “different image ratio”.

    Any suggestion how to get that combination?

    Sample of portfolio item:

    Thanks,
    Christian Toller
    tethis IT

    #225046

    Hi,

    I’m trying to create a two column icon grid for my site’s home page mobile version.
    I’ve used both rows split into two equal parts, and also the SiteOrigins Features widget. All I end up with is the icons centered underneath one another. Is it possible to achieve what I want?

    Regards,
    Anita

Viewing 20 results - 12,041 through 12,060 (of 53,646 total)