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 'site'

Home / Forums / Search / Search Results for 'site'

Viewing 20 results - 13,661 through 13,680 (of 39,333 total)
  • Author
    Search Results
  • #201332

    Hi Hannah and Ben,

    So I decided to experiment with portfolio types to solve this issue.

    In Virtue Theme Options, I see this choice:

    All Projects Default Portfolio Page
    This sets the link in every portfolio post. You can override in post.

    How do I override in a post? I tried changing portfolio parent page, thinking the URL would change from website.com/portfolio/post to website.com/parentpage/post but it didn’t do anything.

    Thanks
    Amy

    In forum: Ascend Theme

    In reply to: Widgets Customization

    #201322

    1. Try this CSS. Change the order as needed.

    .kadence_social_widget.clearfix {
        display: flex;
    }
    .kadence_social_widget a {
        padding-top: 9px;
    }
    .footerclass .kadence_social_widget a {
        display: inline-flex;
        flex-direction: column;
    }
    .kadence_social_widget.clearfix {
        display: flex;
    }
    a.facebook_link {
        order: 4;
    }
    a.twitter_link {
        order: 3;
    }
    a.instagram_link {
        order: 2;
    }
    a.vk_link {
        order: 1;
    }

    3. This will target the testimonial border:

    .testimonial-box {
        border: 2px solid #FA8926;
    }

    This will target the social border. Change the properties as needed.

    .kadence_social_widget a {
        border: 2px solid red;
    }

    4. Try uploading the icons and linking them to here. Then I’ll try to replace with CSS.

    6. Try this CSS:

    @media (max-width: 992px) {
    .kt-social-align-center {
        padding-bottom: 100px;
    }
    }

    7. Try this CSS:

    header#kad-header-menu {
        padding-top: 200px;
    }

    Your site seems to have stopped loading for me. Are you having server problems?

    -Kevin

    #201320

    This works for me when I test it on my site. Are you adding it into your page title tab? Can you link to where you’re trying this? Or else send login so I can take a look?
    Thanks!

    Hannah

    #201317

    ok, it’s odd to hear. Let me know if it happens again. I can run some monitoring on the site and see if there is a plugin infrequently conflicting with the slider save.

    In forum: Ascend Theme

    In reply to: Widgets Customization

    #201313
    This reply has been marked as private.
    In forum: Ascend Theme

    In reply to: Widgets Customization

    #201308

    Hey,

    In the future, please limit questions to one or two per post. Otherwise these threads can get pretty confusing. Also always include a link to the site you’re working on with all posts. Thanks!

    1. This can be done with some CSS. Please post a link and I can provide it.

    2. Add this CSS to Theme Options> Custom CSS:

    .kadence_social_widget a {
        border-radius: 40px;
    }

    3. I can provide the CSS with a link.

    4. I’m not sure if you can add to this widget. You may need to find another plugin. What are the payment methods that you want to add?

    5. This CSS will change your button’s font weight:

    a.btn {
        font-weight: 400;
    }

    6. Again, please post a link.

    7. Once you share a link I’ll be able to help more with this as well.

    -Kevin

    #201293

    Hello,
    I created my website with virtue premium. I put a different slider on mobile in the theme settings.
    Everything works well in google chrome but in filezilla firefox, it’s the mobile slider that appears on a computer screen!
    Thanks for your help

    #201292

    Hello,

    i made this page: http://www.zeusprofumi.it/franchising.

    As you can see, in the hero there is an internal link to the next row, but when i click the button, the navigation go a bit after the row and not and the begin of the row.

    The anchor is “info” and in the row with “site origin headline” i insert the id “info”.

    What i wrong? and how i can give a better transition? Now the transition is instant, i want give some milliseconds.

    Thanks and regards

    #201276

    The website is being hosted locally at the moment and can’t be accessed offsite. Would a screen shot help?

    In forum: Ascend Theme
    #201268

    You have to clear your site cache, but also it can take a few days for facebook, twitter to update there cache of your site. Once you set the featured image for each page you have to give it some time.

    #201261

    You should add this css:

    @media (min-width: 992px){
        .search-results-wrap  .search-result.search_results_item.grid_item {
            width: 33.33%;
            float: left;
        }
    }
    
    .search-results-wrap .navigation.pagination {
        clear: both;
        display: block;
    }

    1. You can change the word twentyfifteen with virtue if you want but it’s only for translating so not necessary.

    2. Update the file to this:

    <?php
    /* Template Name: SearchWP Supplemental Search Results */
    /* This version with mods for Kadence Virtue theme */
    global $post;
    // retrieve our search query if applicable
    $query = isset( $_REQUEST['swpquery'] ) ? sanitize_text_field( $_REQUEST['swpquery'] ) : '';
    // retrieve our pagination if applicable
    $swppg = isset( $_REQUEST['swppg'] ) ? absint( $_REQUEST['swppg'] ) : 1;
    if ( class_exists( 'SWP_Query' ) ) {
        $engine = 'past_issues'; // taken from the SearchWP settings screen
        $swp_query = new SWP_Query(
            // see all args at https://searchwp.com/docs/swp_query/
            array(
                's'      => $query,
                'engine' => $engine,
                'page'   => $swppg,
            )
        );
        // set up pagination
        $pagination = paginate_links( array(
            'format'  => '?swppg=%#%',
            'current' => $swppg,
            'total'   => $swp_query->max_num_pages,
        ) );
    }
        /**
    	 * @hooked virtue_page_title - 20
    	 */
        do_action('kadence_page_title_container');
        ?>
        <div id="content" class="container">
            <div class="row">
                <div class="main postlist <?php echo esc_attr(virtue_main_class()); ?>" id="ktmain">
                    <section id="primary" class="content-area">
                        <main id="main" class="site-main" role="main">
    
                            <header class="page-header">
    
                                <!-- begin search form -->
                                <div class="search-box">
                                    <form role="search" method="get" class="search-form" action="<?php echo esc_html( get_permalink() ); ?>">
                                        <label>
                                            <span class="screen-reader-text">Search for:</span>
                                            <input type="search" class="search-field" placeholder="Search past issues …" value="" name="swpquery" title="Search for:">
                                        </label>
                                    </form>
                                </div>
                                <!-- end search form -->
    
                            </header><!-- .page-header -->
                            <div class="search-results-wrap">
                                <h2 class="search-results-title">
                                    <?php if ( ! empty( $query ) ) : ?>
                                    <?php printf( __( 'Search Results for: "%s"', 'twentyfifteen' ), $query ); ?>
                                    <?php else : ?>
                                    SearchWP Supplemental Search
                                    <?php endif; ?>
                                </h2>
                                <?php if ( ! empty( $query ) && isset( $swp_query ) && ! empty( $swp_query->posts ) ) {
        foreach ( $swp_query->posts as $post ) {
            setup_postdata( $post );
            // output the result
                                ?>
                                <div class="search-result search_results_item grid_item">
                                    <?php global $post;
            if ( has_post_thumbnail( $post->ID ) ) {
                $img_args = array(
                    'width'         => 260,
                    'height'        => null,
                    'crop'          => false,
                    'class'         => 'iconhover',
                    'alt'           => null,
                    'id'            => get_post_thumbnail_id(),
                    'placeholder'   => false,
                    'schema'        => false,
                    'intrinsic'     => true,
                    'intrinsic_max' => true,
                );
                                    ?>
                                    <div class="imghoverclass img-margin-center">
                                        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
                                            <?php virtue_print_full_image_output( $img_args ); ?>
                                        </a> 
                                    </div>
                                    <?php } ?>
                                    <div class="postcontent">
                                        <header>
                                            <a href="<?php the_permalink(); ?>">
                                                <h5 class="entry-title"><?php the_title(); ?></h5>
                                            </a>
                                        </header>
                                        <div class="entry-content">
                                            <?php the_excerpt(); ?>
                                        </div>
                                    </div>
    
                                </div>
                                <?php
        }
    
        wp_reset_postdata();
        // pagination
        if ( $swp_query->max_num_pages > 1 ) { ?>
                                <div class="navigation pagination" role="navigation">
                                    <h2 class="screen-reader-text">Posts navigation</h2>
                                    <div class="nav-links">
                                        <?php echo wp_kses_post( $pagination ); ?>
                                    </div>
                                </div>
                                <?php }
    } else {
                                ?><p>No results found.</p><?php
    } ?>
                            </div>
    
                        </main><!-- .site-main -->
                    </section><!-- .content-area -->
                </div><!-- /.main -->

    Then try.

    3. The css at the top will make the grid. The code would load the featured image so if your post isn’t using the featured image then you need see how it’s supposed to be pulled in and change that out with the if ( has_post_thumbnail( $post->ID ) ) { section.

    Ben

    #201252

    Thanks Ben, that is waaaaaaay better!

    I also like that you have added more sense to the sequence by moving the the search box down below the title.

    I have added a section to output “You searched for…” but I don’t understand the reference to “twentyfifteen” in the followoing statement:
    <?php printf( __( 'Search Results for: "%s"', 'twentyfifteen' ), $query ); ?>

    1. How would I replace that for Virtue?

    2. The sidebar is output at the bottom of the page. Is it straightforward to set the container so that the sidebar appears in the usual place (right hand side for this site)?

    3. I note that the results are displayed in a list and I need to work on this to get them into a grid with the image from the respective sdm_download CPT. Any pointers you can give here?

    Very many thanks for this, it’s already looking so much better.
    Kind regards,
    Phil.

    #201240

    Hi

    I’m setting up a new web page install but im getting a blank main page after importing the demo pages for Pinnacle Premium. Only active plugin is Page Builder by SiteOrigin from your link.

    Despite a blank appearance content appears to be there, arrows and dots show etc. You can hover over the invisible menus and link though fine and other pages appear to show correct. Strangely the “key features” section shows ok on the mains page. Images below.

    Any ideas what may be the issue?

    #201221

    It seems really odd to me that a custom template is required. None of the other search plugins I’ve used do this, perhaps they have their reasons.

    In your custom template, you should try something like this then edit from there:

    <?php
    /* Template Name: SearchWP Supplemental Search Results */
    global $post;
    // retrieve our search query if applicable
    $query = isset( $_REQUEST['swpquery'] ) ? sanitize_text_field( $_REQUEST['swpquery'] ) : '';
    // retrieve our pagination if applicable
    $swppg = isset( $_REQUEST['swppg'] ) ? absint( $_REQUEST['swppg'] ) : 1;
    if ( class_exists( 'SWP_Query' ) ) {
    	$engine = 'past_issues'; // taken from the SearchWP settings screen
    	$swp_query = new SWP_Query(
    		// see all args at https://searchwp.com/docs/swp_query/
    		array(
    			's'      => $query,
    			'engine' => $engine,
    			'page'   => $swppg,
    		)
    	);
    	// set up pagination
    	$pagination = paginate_links( array(
    		'format'  => '?swppg=%#%',
    		'current' => $swppg,
    		'total'   => $swp_query->max_num_pages,
    	) );
    }
    get_header(); ?>
    <div class="wrap clearfix contentclass hfeed" role="document">
    <?php 
    /**
     * @hooked virtue_page_title - 20
     */
    do_action('kadence_page_title_container');
    ?>
    <div id="content" class="container">
        	<div class="row">
    <div class="main postlist" id="ktmain">
    	<section id="primary" class="content-area">
    		<main id="main" class="site-main" role="main">
    
    			<header class="page-header">
    
    				<!-- begin search form -->
    				<div class="search-box">
    					<form role="search" method="get" class="search-form" action="<?php echo esc_html( get_permalink() ); ?>">
    						<label>
    							<span class="screen-reader-text">Search for:</span>
    							<input type="search" class="search-field" placeholder="Search …" value="" name="swpquery" title="Search for:">
    						</label>
    					</form>
    				</div>
    				<!-- end search form -->
    
    			</header><!-- .page-header -->
    <div class="search-results-wrap">
    			<?php if ( ! empty( $query ) && isset( $swp_query ) && ! empty( $swp_query->posts ) ) {
    				foreach ( $swp_query->posts as $post ) {
    					setup_postdata( $post );
    					// output the result
    					?>
    						<div class="search-result search_results_item grid_item">
    <?php global $post;
    if ( has_post_thumbnail( $post->ID ) ) {
    		$img_args = array(
    			'width'         => 260,
    			'height'        => null,
    			'crop'          => false,
    			'class'         => 'iconhover',
    			'alt'           => null,
    			'id'            => get_post_thumbnail_id(),
    			'placeholder'   => false,
    			'schema'        => false,
    			'intrinsic'     => true,
    			'intrinsic_max' => true,
    		);
    		?>
    		<div class="imghoverclass img-margin-center">
    			<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    				<?php virtue_print_full_image_output( $img_args ); ?>
    			</a> 
    		</div>
    	<?php } ?>
    <div class="postcontent">
    		<header>
    			<a href="<?php the_permalink(); ?>">
    				<h5 class="entry-title"><?php the_title(); ?></h5>
    			</a>
    		</header>
    <div class="entry-content">
    <?php the_excerpt(); ?>
    </div>
    </div>
    
    						</div>
    					<?php
    				}
    				
    				wp_reset_postdata();
    				// pagination
    				if ( $swp_query->max_num_pages > 1 ) { ?>
    					<div class="navigation pagination" role="navigation">
    						<h2 class="screen-reader-text">Posts navigation</h2>
    						<div class="nav-links">
    							<?php echo wp_kses_post( $pagination ); ?>
    						</div>
    					</div>
    				<?php }
    			} else {
    				?><p>No results found.</p><?php
    			} ?>
    </div>
    
    		</main><!-- .site-main -->
    	</section><!-- .content-area -->
    </div><!-- /.main -->
    </div><!-- /.row -->
    </div><!-- /.container -->
    </div><!-- /.wrap -->
    <?php get_footer();
    In forum: Ascend Theme
    #201220

    If you want to hide the footer sitewide you can just remove “.home” from the css. So it would be this:

    .footerclass {
        padding-top: 0;
    }
    .footerbase {
        margin-top: 0;
    }

    Hannah

    #201218

    Hey,

    I’m able to replicate the issue on the demo site and your site. I’ll flag this for a developer followup so that Ben can take a look.

    -Kevin

    #201208

    Hey Jeremy,
    I’m not seeing this. What browser are you using? Is the same happening when you test in the demo site: http://themes.kadencethemes.com/virtue-premium/contact-us/

    Hannah

    #201187

    Thanks Ben,

    Yes SearchWP relies on a custom results template page-searchwp-supplemental.php which looks like as below. I would very much like to follow your suggestion of using the default theme search template to start with then tweaking from there. Is it just a matter of making a copy of templates/content-searchresults.php or templates/content-loop-searchresults.php in my child the3me, then pasting the code below into one of them?

    
    <?php
    /* Template Name: SearchWP Supplemental Search Results */
    global $post;
    // retrieve our search query if applicable
    $query = isset( $_REQUEST['swpquery'] ) ? sanitize_text_field( $_REQUEST['swpquery'] ) : '';
    // retrieve our pagination if applicable
    $swppg = isset( $_REQUEST['swppg'] ) ? absint( $_REQUEST['swppg'] ) : 1;
    if ( class_exists( 'SWP_Query' ) ) {
    	$engine = 'past_issues'; // taken from the SearchWP settings screen
    	$swp_query = new SWP_Query(
    		// see all args at https://searchwp.com/docs/swp_query/
    		array(
    			's'      => $query,
    			'engine' => $engine,
    			'page'   => $swppg,
    		)
    	);
    	// set up pagination
    	$pagination = paginate_links( array(
    		'format'  => '?swppg=%#%',
    		'current' => $swppg,
    		'total'   => $swp_query->max_num_pages,
    	) );
    }
    get_header(); ?>
    
    	<section id="primary" class="content-area">
    		<main id="main" class="site-main" role="main">
    
    			<header class="page-header">
    				<h1 class="page-title">
    					<?php if ( ! empty( $query ) ) : ?>
    						<?php printf( __( 'Search Results for: %s', 'twentyfifteen' ), $query ); ?>
    					<?php else : ?>
    						SearchWP Supplemental Search
    					<?php endif; ?>
    				</h1>
    
    				<!-- begin search form -->
    				<div class="search-box">
    					<form role="search" method="get" class="search-form" action="<?php echo esc_html( get_permalink() ); ?>">
    						<label>
    							<span class="screen-reader-text">Search for:</span>
    							<input type="search" class="search-field" placeholder="Search …" value="" name="swpquery" title="Search for:">
    						</label>
    					</form>
    				</div>
    				<!-- end search form -->
    
    			</header><!-- .page-header -->
    
    			<?php if ( ! empty( $query ) && isset( $swp_query ) && ! empty( $swp_query->posts ) ) {
    				foreach ( $swp_query->posts as $post ) {
    					setup_postdata( $post );
    					// output the result
    					?>
    						<div class="search-result">
    							<h2>
    								<a href="<?php echo get_permalink(); ?>">
    									<?php the_title(); ?>
    								</a>
    								<?php the_excerpt(); ?>
    							</h2>
    						</div>
    					<?php
    				}
    				
    				wp_reset_postdata();
    				// pagination
    				if ( $swp_query->max_num_pages > 1 ) { ?>
    					<div class="navigation pagination" role="navigation">
    						<h2 class="screen-reader-text">Posts navigation</h2>
    						<div class="nav-links">
    							<?php echo wp_kses_post( $pagination ); ?>
    						</div>
    					</div>
    				<?php }
    			} else {
    				?><p>No results found.</p><?php
    			} ?>
    
    		</main><!-- .site-main -->
    	</section><!-- .content-area -->
    
    <?php get_footer();
    
    #201181
    This reply has been marked as private.
    #201174

    It’s always very helpful if you can post a username and password when you need us to login to your site to see something. We can help you quickly if we don’t have to go searching through the forms for a password you previously posted.

    I’m not familiar with SearchWP. Do you have to set a custom template? Could you not use the default theme search template to start with then tweak from there.

    Ben

Viewing 20 results - 13,661 through 13,680 (of 39,333 total)