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,681 through 15,700 (of 53,646 total)
  • Author
    Search Results
  • #201215

    It appears to be the same one as is specified in Home Page Header Content.

    Thanks.

    In forum: Ascend Theme
    #201214

    How do I remove the same from other than the Home page:

    https://northcoastleatherworks.com/shop/

    In forum: Reply To:

    In reply to:

    #201201

    I can not get results, could it be that the other codes intervene with the new codes? But basically I need that in the home is 0 and in the rest of pages the value goes up between 5 or 7 … thanks

    web: oropel.org

    PD: my css code:

    .pt-cv-readmore {
        color: #FFFFFF !important;
        background-color: #FFFFFF !important;
        border: none !important;
    }
    #content {
        padding-top: 0;
    }
    .sidebar .widget-title {
        text-transform: uppercase;
    }
    .home .contentclass {
        padding-top: 0;
    }
    .contentclass {
        padding-top: 5;
    }
    #201199

    So that would probably fix my sticky menu problem (I’ll try that this evening), but what about the position problem, how should I do to change the display order so that the banner appears at the very top of the page ( but under the topbar) ?
    So if I want to modify the source code, how should I do ?

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

    is it possible to trigger a modal to popup on scroll? after say 50% or when an id is reached in the page?

    regards lee

    #201181
    This reply has been marked as private.
    #201178

    Right now your image is defaulting to the page title area default which you set in the theme options > Default Title Options

    #201177

    Check out this image: http://docs.kadencethemes.com/ascend-premium/page-title-subtitle-settings/

    In every page you will see page title and subtitle settings. That is where you can set a custom image for the header in every page.

    #201172
    This reply has been marked as private.
    #201171

    Hey Ben,

    Thanks for touching base.

    The page in question is:

    https://mixologycrew.com/thank-you-for-subscribing/

    It’s the bottom image that I am having an issue with. I’ve also added a cover image (with the text “Thank You for Registering.
    Welcome to the Mixology Crew!”), which I could use as an alternative. But it would be good to understand why I can’t get the bottom image to sit centered.

    Many thanks,

    Bart

    #201155

    Hi Team,
    Excuse me if this falls outside your remit but the complexity of this one is becoming overwhelming!

    On this site I am using SearchWP to surface PDFs saved with Simple Download Monitor, which creates custom post type sdm_downloads.
    I have created a supplemental search engine which returns results using the temporary template page-searchwp-supplemental.php but this gives only a very basic list of titles.

    I would like to get to the point where the results use the theme formatting and I have identified templates/content-searchresults.php and templates/content-loop-searchresults.php as the relevant files.

    Can you give any guidance so that I can end up with a display of results similar to here, showing a grid of image, title and download button.

    Very many thanks for any direction you can provide.
    Phil.

    In forum: Reply To:

    In reply to:

    #201152

    Sorry, I copied the CSS incorrectly before posting here. Try this instead.

    For home page:

    .home .contentclass {
        padding-top: 0;
    }

    For all other pages:

    .contentclass {
        padding-top: 0;
    }

    -Kevin

    In forum: Reply To:

    In reply to:

    #201151

    change the value from 0 to 5. But the home and the pages are modified, I just want you to make the change in the entries, only the entries … I do not know if you can… thanks

    #201147

    Can you tell me how I can do this?

    Thanks,

    #201143
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: virtue template assist

    #201132

    Do you want a sidebar on the listing page?

    In forum: Ascend Theme

    In reply to: Mobile Usability issue

    #201126

    Thanks! I removed the css from your homepage. Does it now work as you’re wanting?

    Hannah

    #201116

    Hi Kevin,

    Thank you for your reply. I see by the demo page that you can choose the link location of where its pointing to but on my Virtue Premium, it doesn’t give that option. Thank you for the icons article and thats allowing me to add and remove icons now.

    * How can I update the location address of the icon links
    ** Home > Points to a manually created Home Page instead of the Home/Landing Page which has all the main content

    * Where can I change the size and style of the text in the menu structure for the existing “MainMenu2” from the demo menu?

    Thank you.

    Greg

    In forum: Ascend Theme
    #201115

    Hello, I have an issue with displaying nav menu on iphone.

    This is the page link
    At the top of the page under the text “Pomoć i usluge u ostvarivanju prava iz područja zaštite osobnih podataka; GDPR – usklađivanje i zaštita poslovanja za poslovne subjekte; DPO – službenik za zaštitu osobnih podataka; DPO Klub” there is a nav link menu buttons:
    Usluge za fizičke osobe; Usluge za pravne osobe, etc…

    The issue on iphone is that the last button link is not in the line with other links, but on android it looks fine, as well on the desktop, see the image – first image is on iphone, second is on android.

    I have been struggling two days with that, can you maybe have a look on that, when you have time? Thanks in advance, Gabi

Viewing 20 results - 15,681 through 15,700 (of 53,646 total)