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 '
-
AuthorSearch Results
-
In forum: Ascend Theme
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.
In forum: Virtue ThemeIn reply to: Problem with Site Origin Post Carusel
In forum: Virtue ThemeTopic: Kadence Slider Transitions
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.
In forum: Virtue ThemeIn reply to: Problem with Site Origin Post Carusel
In forum: Pinnacle ThemeIn reply to: Portfolio list images width
In forum: Virtue ThemeIn reply to: Author Box is missing on our site
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.In forum: Membership ForumsIn reply to: Post Grid/Carousel Block
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.
In forum: Virtue ThemeIn reply to: Unable to hide page title on Front Page
In forum: Virtue ThemeI would like to hide the page title on the Front Page, but it… just… won’t… go!
Link to problem page: *Login to see link
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.
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
*Login to see linkadd_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 ThemeIn reply to: Site width below 940?
In forum: Ascend ThemeIn reply to: Site width below 940?
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
In forum: Virtue ThemeIn reply to: Home page no longer shows header or footer
In forum: Ascend ThemeIn reply to: Site width below 940?
In forum: Virtue ThemeIn reply to: Home page no longer shows header or footer
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.
In forum: Virtue ThemeIn reply to: Home page no longer shows header or footer
In forum: Virtue ThemeIn forum: Ascend ThemeHey 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
In forum: Ascend ThemeMay 8, 2019 at 6:59 am #225061Hi 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: *Login to see link
Thanks,
Christian Toller
tethis ITIn forum: Virtue ThemeHi,
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 -
AuthorSearch Results





