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: Virtue Theme
Topic: Blog Post Image Missing
Good morning (from where I am)
Blog post featured image is missing from blog post and on blog page. The image appears on the Homepage “Latest Posts” and in Feature Slider, but nowhere else.
Am I missing something? For each post I apply a featured image in the Attributes Section.
Thank you,
PamIn forum: Membership ForumsHi,
I’ve tried to find a css snippet for these two cases, hopefully you can help me again.Ascend Image Split
1. In one column I have the image on left side of the text and in the next column I have it on the right side. If I view the page in a pad (vertical view) the Image Split with the image aligned left has the text with padding on left side. The Image Split with image aligned right has no padding on left and is perfect.
I prefer to have no padding on left side. In mobile view it is also correct!2. Not responsive? I have a page with two columns. In the right column is Ascend: Info Box including an icon. In vertical pad view the info box should collapse under the left column, because the text in the info box is too long to fit the info box. In mobile view it is correct.
I will put some url and two snap shots to you!
In forum: Virtue ThemeThank you!
Another thing that I forgot to mention was the variables’ prices are also not updating when selecting different options.
A business may lose its integrity when a user will find that the price is different after adding it to the cart and viewing it on the Non-AMP cart/checkout page.
I hope you understand my concerns. I thank you again for your understanding and sincere effort.
Have a great day!
In forum: Virtue ThemeJanuary 29, 2019 at 9:11 am #214793Hello. My latest blog post shows a giant sketch of a pencil, just like the one on your support home page. I don’t know how it got there or how to get rid of it. Can you help me, please?
In forum: Virtue ThemeHello Kadence Team!
I have a question. I’m working on a fairly large portfolio display. For desktop, I really like the look of 3 or 4 columns, but on mobile vertical this shows as 1 column, which is a little irritating to scroll through. If I up the number of columns to 5, then the vertical mobile shows 2 columns.
2 vertical columns on mobile for me is much better, but 5 columns on desktop is a little cramped. Is there a way to implement some code to override mobile to display 2 columns? Here’s a link to the page: *Login to see link
Thanks so much for any help!
Suzy
In forum: Virtue ThemeIn reply to: Product category titel below image
Hi Nico,
Do you mean on your archive page or single product page? Can you post a link?
I would also suggest checking out our woocommerce template builder plugins:
For Elementor: https://wordpress.org/plugins/kadence-woocommerce-elementor/
For Page Builder by Siteorigin: https://www.kadencewp.com/product/kadence-woo-template-builder/Hannah
In forum: Virtue ThemeIn reply to: “Back to Top” button?
January 29, 2019 at 8:18 am #214781Hey,
You can link to#topand that would take you back to the top. There is no “middle” you would have to add a custom anchor link to something in your page that is in the middle.Ben
In forum: Virtue ThemeIn reply to: Display content on single product on a page
In forum: Virtue ThemeHey,
It looks like that text is pulling from your menu description. You can edit/remove this from Appearance > Menus. Open your menu item dropdown and you should see the description tab. If you do not see this make sure Description has been selected from the Screen Options tab on the top right of the page.
Hope that helps!Hannah
In forum: Membership ForumsIs it possible to show price inc VAT in the json snippet…?
also some other issues… missing data is it possible to have fields in backend on product page to populate these
is this rich snippet testing tool bug? or can these elements be added
priceValidUntil
brand
review??cheers, lee
In forum: Pinnacle ThemeIn reply to: Conflicts between Elementor and Pinnacle
Ah, haha! Yeah, silly me. A link would help, wouldn’t it! 🙂 https://tetisheri.co.uk/
1. Elementor pages are Home, Shop, Galleries and Photography Services (under the Services header), so when you’re on one of those pages, the secondary menus don’t drop down when you hover your mouse over them (Services and Galleries). Works fine on non-Elementor pages.
2. No worries – I don’t know what problems are theme-related, and what’s plugin-related, so I’m just giving everything to everyone 🙂
3. I’d converted the Page Builder layout to WordPress default before trying to edit in Elementor, but I guess it just doesn’t work. No worries at all, though.
4. Thank you! This has worked a treat! I now have my shop page set using an Elementor template. The only issue is that the price filter still shows as boxes rather than a slider bar. If it’s not fixable, it doesn’t matter; I’ll probably just remove it. But, I’ll leave it in for now so you can have a look.
Thanks for your help, guys!
JuliaIn forum: Virtue ThemeTopic: “Back to Top” button?
In forum: Virtue ThemeIn reply to: Space below Kadence Slider
In forum: Virtue ThemeHello,
Was wondering if it was possible to display the content of a single product on a page?
I have looked and came close but it didn’t work.
So not the actual product image using the shortcode but the content of that product as if you were to click on it.
Thanks Georgina
In forum: Virtue ThemeIn reply to: Space below Kadence Slider
In forum: Ascend ThemeKevin, thanks for the reply! Indeed, turning the theme lightbox off will make the post with Brizy content work as expected (lightbox opens once). However, I would still need the theme lightbox on other pages that do not have Brizy content.
Would it be possible to not load theme lightbox on specific pages based on body css class? This would solve the issue as the posts with Brizy content have “brz” body class. I think this could be done relatively easily via functions.php or footer javascript if you could point me in the right direction 🙂
With best regards,
Veikko
In forum: Ascend ThemeIn reply to: Newest portfolio item’s “Next Project” link
Thanks, Ben! I got the desired result with couple of changes.
1) I wanted to keep the navigation within current portfolio-type.
2) To sort by menu_order.
3) For some reason order ASC/DESC made no difference, it always put latest first, so set posts_per_page to -1 and just reversed the array to make Next to point to the earliest post.
4) Also added the same functionality to Previous link (in case of earliest post)
5) The remove_action in child theme’s functions.php was too early, so set it to trigger later.Looks like this and seems to work for now. Thanks again!
function custom_ascend_portfolio_nav() { global $post, $ascend; if(isset($ascend['portfolio_single_nav']) && $ascend['portfolio_single_nav'] == 1) { echo '<div class="post-footer-section">'; if(isset($ascend['portfolio_single_nav_cat']) && 1 == $ascend['portfolio_single_nav_cat']) { $prev_post = get_adjacent_post(true, null, true, 'portfolio-type'); $next_post = get_adjacent_post(true, null, false, 'portfolio-type'); } else { $prev_post = get_adjacent_post(false, null, true); $next_post = get_adjacent_post(false, null, false); } if ( empty( $next_post ) && empty( $prev_post ) ) { $containerclass = 'nav-no-next-previous'; } else { $containerclass = ''; } echo '<div class="kad-post-navigation portfolio-nav clearfix '.esc_attr($containerclass).'">'; if ( !empty( $prev_post ) ) : echo '<div class="alignleft kad-previous-link">'; echo '<a href="'.get_permalink( $prev_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Previous Project', 'ascend').'</span><span class="kt_postlink_title">'. $prev_post->post_title.'</span></a>'; echo '</div>'; else : $term_list = wp_get_post_terms($post->ID, 'portfolio-type', array("fields" => "all")); $term_list_item = $term_list[0]; $args = array( 'posts_per_page' => -1, 'orderby' => 'menu_order', 'exclude' => $post->id, 'order' => 'ASC', 'post_type' => 'portfolio', 'portfolio-type' => $term_list_item->slug, 'post_status' => 'publish', ); $prev_post = get_posts( $args ); if ( !empty( $prev_post ) && isset( $prev_post[0] ) ) { echo '<div class="aligleft kad-previous-link">'; echo '<a href="'.get_permalink( $prev_post[0]->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Previous Project', 'ascend').'</span><span class="kt_postlink_title">'. $prev_post[0]->post_title.'</span></a>'; echo '</div>'; } endif; if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'type') { $main_term = ''; if(class_exists('WPSEO_Primary_Term')) { $WPSEO_term = new WPSEO_Primary_Term('portfolio-type', $post->ID); $WPSEO_term = $WPSEO_term->get_primary_term(); $WPSEO_term = get_term($WPSEO_term); if (is_wp_error($WPSEO_term)) { if ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } } else { $main_term = $WPSEO_term; } } elseif ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } if ( $main_term ) { echo '<div class="kad-grid-link">'; echo '<a href="'.get_term_link( $main_term->slug, 'portfolio-type' ).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } else if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'page') { $parent_id = $ascend['portfolio_link']; if( !empty($parent_id)) { echo '<div class="kad-grid-link">'; echo '<a href="'.get_page_link($parent_id).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } if ( !empty( $next_post ) ) : echo '<div class="alignright kad-next-link">'; echo '<a href="'.get_permalink( $next_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Next Project', 'ascend').'</span><span class="kt_postlink_title">'. $next_post->post_title.'</span></a>'; echo '</div>'; else : $term_list = wp_get_post_terms($post->ID, 'portfolio-type', array("fields" => "all")); $term_list_item = $term_list[0]; //print_r($term_list_item->slug); $args = array( 'posts_per_page' => -1, 'orderby' => 'menu_order', 'exclude' => $post->id, 'order' => 'ASC', 'post_type' => 'portfolio', 'portfolio-type' => $term_list_item->slug, 'post_status' => 'publish', ); $next_post = get_posts( $args ); $next_post = array_reverse( $next_post ) ; //print_r($next_post); if ( !empty( $next_post ) && isset( $next_post[0] ) ) { echo '<div class="alignright kad-next-link">'; echo '<a href="'.get_permalink( $next_post[0]->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Next Project', 'ascend').'</span><span class="kt_postlink_title">'. $next_post[0]->post_title.'</span></a>'; echo '</div>'; } endif; echo '</div> <!-- end navigation -->'; echo '</div>'; } } add_action( 'kadence_single_portfolio_footer', 'custom_ascend_portfolio_nav', 20 ); add_action( 'after_setup_theme', 'tmp_remove_original_nav', 0 ); function tmp_remove_original_nav() { remove_action( 'kadence_single_portfolio_footer', 'ascend_portfolio_nav', 20 ); }In forum: Virtue ThemeHi Ben:
http://coastalsportswear.com/beta1118/pe-uniform-products/dryfit-tees/
Or visit any page other than the home/landing page. I switched back to the original menu so you’ll see what I wrote about. If you switch either “Main Upper New” or “Footer Menu” to the Primary Navigation, you’ll notice the issue goes away. I know this has to do with the menu structure, just do not recall the correction at the moment.
-Monty
In forum: Virtue ThemeThank you Hannah & Ben:
The Primary Navigation / menu on the landing page looks great now! On interior pages, the rest of the pages using the Virtue Premium – Bold theme, the Primary Navigation / menu displays with content from the page. When I make another menu the “Primary Navigation” it appears fine. Seems I’ve read what causes this in the past but do not recall what that is. If you have any other thoughts or help on the issue, let me know?
Thanks again!
-MontyIn forum: Ascend ThemeIn reply to: Unable to save posts
Hurra! I found the solution in your post: https://www.kadencewp.com/support-forums/topic/gutenberg-pagebuilder-autosave/#post-214083
Thanks so much! -
AuthorSearch Results


