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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Allow discussion/comments on Staff posts?
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
AmyIn forum: Ascend ThemeIn reply to: Widgets Customization
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
In forum: Virtue ThemeIn reply to: Changing look in mobile devices
In forum: Ascend ThemeSeptember 13, 2018 at 9:49 am #201317ok, 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 ThemeIn reply to: Widgets Customization
This reply has been marked as private.September 13, 2018 at 9:19 am #201313In forum: Ascend ThemeIn reply to: Widgets Customization
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
In forum: Virtue ThemeIn forum: Ascend ThemeTopic: Internal link and transition
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
In forum: Virtue ThemeIn reply to: Placing Border around Navigation Menu
In forum: Ascend ThemeIn reply to: Logo Transparent on Link
September 12, 2018 at 3:53 pm #201268You 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.
In forum: Virtue ThemeIn reply to: Modifying Search results templates
September 12, 2018 at 2:48 pm #201261You 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
In forum: Virtue ThemeIn reply to: Modifying Search results templates
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.In forum: Pinnacle ThemeHi
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?
In forum: Virtue ThemeIn reply to: Modifying Search results templates
September 12, 2018 at 10:04 am #201221It 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 ThemeIn reply to: Remove bands above footer
In forum: Virtue ThemeIn reply to: Contact Form has spaces in comment field
In forum: Virtue ThemeIn reply to: Contact Form has spaces in comment field
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
In forum: Virtue ThemeIn reply to: Modifying Search results templates
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();In forum: Ascend ThemeIn reply to: Image Alignment – Ascend Premium with Gutenberg
This reply has been marked as private.September 11, 2018 at 6:06 pm #201181In forum: Virtue ThemeIn reply to: Modifying Search results templates
September 11, 2018 at 5:08 pm #201174It’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
-
AuthorSearch Results


