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 - 13,661 through 13,680 (of 53,646 total)
  • Author
    Search Results
  • #214712

    I created a page using the new ‘Post Grid/Carousel’ block to test it out. I worked pretty well. However, I suddenly no longer see the Post Grid/Carousel’ block in the Kadence Blocks section of the ‘Add block’ dialog; it just disappeared.

    I can no longer use this block. At the same time it still listed under Settings > Kadence Blocks.

    Also the page where I used the block, still shows all the block settings and seems to be working fine.

    See screenshots in this Drive folder

    I have another testing environment where I install the Ascend demos for testing / checking. Also on the imported demo site, the ‘Post Grid/Carousel’ block is missing.

    I tried disabling all plugins (except Kadence Blocks + Kadence Blocks Pro) but this did not resolve the issue.

    WordPress 5.0.3
    Ascend – Premium Version: 1.7.1 with Child Theme
    Kadence Blocks Version 1.2.5
    Kadence Block Pro Version 1.0.6

    #214705

    I can’t seem to get rid of the space below the slider on the home page.
    Sadly the slider is all they want on that page so the space between the bottom of the slider and footer is quite noticeable.

    #214702

    That file is for blog posts, you would need to use a function and unhook the current one, in your child them functions.php file you can add this:

    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>';
    		        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 :
    		        	$args = array(
    						'posts_per_page'   => 1,
    						'orderby'          => 'date',
    						'exclude'          => $post->id,
    						'order'            => 'ASC',
    						'post_type'        => 'portfolio',
    						'post_status'      => 'publish',
    					);
    		        	$next_post = get_posts( $args );
    		        	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 );
    remove_action( 'kadence_single_portfolio_footer', 'ascend_portfolio_nav', 20 );

    Ben

    In forum: Virtue Theme
    #214700

    Yeah it doesn’t work for all page layouts. Glad that works for you!

    -Kevin

    #214697

    Hello,

    1. Can you please link to one of these pages so I can take a look?

    2. This is not something that the theme should control. If the other plugin is working better, I suggest just using that instead.

    3. Page builder and elementor are entirely different plugins, so you can’t import a page builder page directly to elementor. You should be able to use a site origin widget within that page builder, but as for copying the content directly to a totally different page builder, I don’t think this is possible.

    4. Please post a link to your site so I can do some further testing. Be sure that you include a link with every support query. Thanks!

    -Kevin

    #214693
    This reply has been marked as private.
    #214677

    Just so I’m clearly understanding, everything else about the page is correct? You just need the instagram plugin to show above your footer?

    One thing that may work for you is to use a footer layout that has a widget area stretch across the top of your footer. You can set this in Theme Options> Footer> “Footer Widget Layout.” Just select one of the far right options, and footer widget area 1 will show above all other widgets.

    Does that help?

    -Kevin

    In forum: Virtue Theme

    In reply to: Link to tab?

    #214675

    ok, the issue is with firefox, it just doesn’t like you to override how anchors are supposed to work so the only workaround that works every time in firefox is to change the link, which I did here so you can see:

    https://canberra-alliance.org.au/ag-gcgw/

    Now that link is: http://canberra-alliance.org.au/resources/#kitchen-table-conversations

    Which doesn’t equal an actual anchor on the page and the javascript will pick that up and add the ‘sctab’ and open the tab.

    Ben

    #214669

    I’m seeing a sidebar display on your home page:
    https://www.pameladyanne.com/

    -Kevin

    #214667

    Sure. Sorry I misunderstood.

    Home – Front-page

    In forum: Virtue Theme

    In reply to: Homepage: Latest Posts

    #214665
    This reply has been marked as private.
    #214659

    Can you please link directly to the blog grid that you’re having issues with? I’m not sure which page it is.

    Thanks,
    kevin

    #214651

    Hi!
    I don’t know exactly when this problem begun to happen but I recently found that the sticky header is now no longer sticky…
    I had the sticky option enabled for header and worked fine but suddenly it doesn’t… plus dropdown menus are hidden by the page content only on Chrome browser, Firefox and Internet Explorer looks good. Sticky header doesn’t work on any browser.
    I attack a couple of screenshots:

    Any idea?
    Thanks

    In forum: Virtue Theme
    #214650

    Hey,
    In Settings > Page Builder > General > Post Types make sure you have your woo templates selected.

    Hannah

    In forum: Virtue Theme
    #214634

    Hello,

    You should be able to set that background in the display settings for the widget itself. I recommend setting the background in page builder rather than CSS if possible.

    If that doesn’t work, try this CSS:

    #panel-1278-0-1-0>.panel-widget-style {
        background-color: #f7f7f7bd;
    }

    You can find a ton of tutorials on youtube and around the web for learning CSS. Here’s a post I made awhile ago that shows how I’m able to find elements to write custom CSS:
    https://www.kadencewp.com/chrome-inspect-tool/

    -Kevin

    In forum: Virtue Theme
    #214621

    Hello,

    The sidebar is designed to drop below your page content when viewing on a mobile device. The window on a phone is not large enough to display the sidebar next to the content in mobile display.

    If you’d like to hide the sidebar in mobile entirely, you can with this CSS:

    @media (max-width: 767px) {
    aside#ktsidebar {
        display: none;
        }
    }

    Let me know if that’s helpful for you.

    -Kevin

    In forum: Ascend Theme

    In reply to: page editing issue

    #214619

    Hello,

    If you want to continue using the old editor, you just need to install this plugin on your site:
    https://wordpress.org/plugins/classic-editor/

    Let me know if that returns you to the classic page builder editor.

    -Kevin

    In forum: Ascend Theme
    #214614

    Hi,

    After editing my page saving is not possible, looks like the saving lingers! See printscreen

    Some pages have siteorigin enabled and others not see here > I dont know how this is possible?

    How can i get al my pages with site origin layout.

    Regards
    Alex

    #214604

    Hello
    I have installed woo template, and pricing table, as well as site origin builder I am following the tuto on how to define templates.
    however, when I create a new template, the “page builder” options do not show up as on the video. I have a blank box instead.
    i am using Virtue premium. Thanks for your help

    #214598

    Hi,

    My theme options page from the dashboard isn’t loading anything besides the menu bar to the left – the links are not clickable.

    Please advise?

    Harry

Viewing 20 results - 13,661 through 13,680 (of 53,646 total)