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

    Yes I already have Portfolio Options >> Portfolio Arrow Navigation >> Navigate Through Category set. But it still takes me through all DESIGN and all PHOTOGRAPHY. It doesn’t take me in order either, for example, all DESIGN and then PHOTOGRAPHY – it is all mixed in the navigation with no sense to it. Also, it does not paginate through the VIDEO category which is fine, but why does it just exclude VIDEO type portfolios. All I want to make work is that when I filter down to the DESIGN type portfolio, to only be able to paginate through the DESIGN portfolio pages.

    #201362

    Hello,

    I’m using the Premium Virtue theme. I’m simply adjusting settings on the imported content I acquired from Kadence. I don’t have my own site yet. So in Portfolio settings I changed the filter from “all” to category. Filter works fine readjusting the portfolio grid content. However when I am in the Design portfolio I want the back and next buttons to only paginate through the Design portfolio category/type. However it goes through types that are not “design” but photography as well. How can I restrict the back/next arrows on the portfolio page to navigate only within the category grid that took me to that page?

    Thank you,
    Billie

    #201346

    Thanks Ben.
    Changing the options in blog options didn’t seem to affect the excerpt length on my portfolio grid page, so that’s why I am asking. Displaying the entire excerpt works great. Thanks for the filter code.
    Amy

    #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

    #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

    In forum: Ascend Theme

    In reply to: Widgets Customization

    #201313
    This reply has been marked as private.
    #201297

    Hi there!

    First of all, thank you for a beautiful and powerful theme! I enjoy working with it ever since my purchase but there are a few issues I can’t solve myself due to little to no knowledge of CSS. I gathered all of questions together to ask everything at once so here they are.

    1. Social links widget. How can I change the order of icons to display? For example, I need VK to be the first one but I can’t see any drag-and-drop possibilities.

    2. Social links widget. How can I make borders od the icons round instead of square?

    3. Social links widget AND Testimonial carousel widget. How can I change color of the borders in those two widgets from grey to the one I need?

    4. Payment method icons widget. How can I add different images to display in this widget? There are a few local payment methods that should be displayed and that are obviously missing by default.

    5. Buttons. How can I change style of the text that appears on the buttons by default? If I need to add button (even in the widgets that supports such option) text always has the same style which I need to change at least as it’s too bold.

    6. Padding. I’m using KT simple share on my pages and while on mobile there are no space at all between share icons and sidebar. How can I add a bit of space between them so that page looks a bit more composed?

    7. Header and menu. I use a secondary menu which is pinned and always remained on top while scrolling down. If I use Elementor to create pages everything works fine but if I activate Elemetor Pro there is always the same issue as my header (menu to be precise) is overlapping by the content and that shouldn’t be the case. Once I deactivate Elementor Pro, everything works fine. It seems like with activation of the plugin header is no longer “seen” and content of every page overlapping it while scrolling. I’ve already contacted plugin support but they unfortunately said they can’t do anything with that and I should contact theme developer to solve this.

    Sorry for a big amount of questions but it’s better to have them in one place rather than bother you every day. Hopefully it won’t be too time consuming for you as most of them requires CSS customization which is definitely one of your strong sides.

    Thank you!

    Kind regards,
    Vladimir

    #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

    #201287

    Hi Ben,
    I’ve explored inside the Simple Download Monitor plugin and the template file /wp-content/plugins/simple-download-monitor/includes/templates/fancy2/sdm-fancy-2.php contains the following:

    $item_download_thumbnail = get_post_meta($id, 'sdm_upload_thumbnail', true);

    So does that imply that the item we’re looking for is called “sdm_upload_thumbnail”?
    Where would that be pasted in page-searchwp-supplemental.php?
    Many thanks,
    Phil.

    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.

    In forum: Ascend Theme
    #201262

    Hey Ben/Hannah,

    Stupid I know but I couldn’t fix it.
    I’ve changed the photo on SEO on the Home page (social media), but it still shows the Transparent Logo when I paste Blog URL
    and I dont want it with the Home. Only the Name and the Logo in Blue

    Can you please direct me I’ve tried twice?

    ADVENTURETRAVELCOACH.COM
    HOME > Adventure Travel Coach >

    https://www.adventuretravelcoach.com

    #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.

    #201249

    So I looked at issue 2. #ddd is correct based on the theme css. I would guess that your plugin is changing the background on the account page. But I would need a login to see it.

    #201246

    Hey,
    You don’t have woocommerce installed. (you should have seen a large red warning before importing that it was not installed.)

    The demo content you imported it designed with products so the error on your homepage was caused because the home page was attempting to load products that were never imported. I’ve removed that section of your home page.

    You should be good now.

    Ben

    #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?

    #201235

    Sure, It’s the slide we use for the home page: https://toptiertravel.com/

    #201230

    Am I correct in assuming that the header image will default to the image set in ‘Theme OptionsDefault Title Options – Header Title Default Background’?

    Yes

    And that on every page that will be the image displayed, unless it is overwritten with an image set in the ‘Page Title and Subtitle’ section, in the ‘Background Image’ field?

    Yes, except for the home page. The homepage is set in your theme options > home header.

    Ben

    #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();
    #201217

    Hey,

    This is set in Theme Options> Shop Page Header.

    let me know if that works for you.

    -Kevin

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