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,641 through 13,660 (of 39,333 total)
  • Author
    Search Results
  • #201534

    Hello,

    My website is now live and there are a few problems. One is with the contact form, which sometimes says the maths is wrong when it isn’t (my maths is bad but not that bad!); and also leaves the message visible on the page after sending it. Also, messages are forwarded to my gamble (which i set up) but they don’t go to my webmail (this may not be an issue of the contact form).

    The contact form I am using is the one from page builder – one of the layouts (I used that and took just the contact form – I deleted the google map and FAQs parts. Perhaps it would be better to use a contact form plug in. Can you suggest one?

    Another problem is that when I google my website name plus my name, a 2 links to NOT FOUND pages occur – though the rest of the website that comes up with these pages works fine. Any suggestions?

    Thanks
    Paul

    #201507
    This reply has been marked as private.
    #201490
    This reply has been marked as private.
    #201468
    This reply has been marked as private.
    #201467
    This reply has been marked as private.
    #201463
    This reply has been marked as private.
    #201462

    Hi

    I have some issue in my website please help me. my website is

    LOGO NOT SHOWN IN MOBILE VERSION
    I want Menu in mobile version not in desktop version on a specific page, page link :

    #201459

    Please see attached photo… that picture was copied off someone else’s Virtue website.

    How do I get that “shadow” appearance in the corners on my Revolution Slider images?

    Jhoecannon

    In forum: Ascend Theme

    In reply to: Widgets Customization

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

    In reply to: Edit with Elementor

    #201437

    Hello,

    Elementor is working on my test site with Virtue Premium. Can you post a login in a private reply so I can see where it stops working?

    -Kevin

    #201429

    Hmm ok so thats a bummer because it won’t allow you to set a custom output size. Meaning each is going to output in full size but here is the updated code.

    <?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;
    $item_download_thumbnail = get_post_meta($id, 'sdm_upload_thumbnail', true);
            if ( $item_download_thumbnail ) {
                                    ?>
                                    <div class="imghoverclass img-margin-center">
                                        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
                                            <img src="<?php echo $item_download_thumbnail; ?>" alt="<?php the_title_attribute(); ?>">
                                        </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 -->

    Ben

    #201424

    Hi,
    On this page of our site…

    On the sort menu, I would like to remove “sort by average rating” and “sort by newness”. Is there custom css that can make this happen? I looked for a setting change but couldn’t find anything.

    Thank you!
    Keith

    In forum: Virtue Theme
    #201404

    Hello,

    Can you please post a link to your site so I can take a look?

    -Kevin

    #201397

    Hi I checked our website today and suddenly there were two sign up buttons on all our products. Please can someone tell me why? I’ve tried to fix the problem myself but nothing thus far has helped.

    thanks in advance
    Lara

    #201392

    Hi Hannah,

    Link to the site – https://www.thefoscotehospital.co.uk/

    We are using Yoast SEO and have specified meta description for that page which is being picked up but only after the text about the dots.

    Thanks,
    Charlotte

    In forum: Ascend Theme

    Topic: TOP BAR

    #201391

    Good Morning! for my site , I can’t figure how to get the top bar to display my message on desktop and mobile devices. I used your restaurant demo to create the site. Could you please provide me with step-by-step instructions?

    #201388

    I buy the Elementor Page Builder Plugin.
    Install was ok but if i open a new site and
    I have a full white page when I start with “Edit with Elementor”
    Can not do anything.

    #201371

    Hi

    On this site:

    On the home page I have Home Page Layout Module Portfolio grid enabled
    and Display Portfolio Filter set ON
    with “Choose how many Portfolio Items on Homepage” = 28 (the maximum)

    I really like the dynamic portfolio feature and see it a crucial for my website.

    The issue I have is I would like to increase the “Choose how many Portfolio Items on Homepage” to a higher value (like 200 or no limit) because, like in the example I have now on it will show some categories as empty (for example Test Category A when clicked shows empty when actually there are 2 items to show). This is because the 28 item limit has already been reached via the other categories.

    You can understand that a customer seeing an empty category is not so impressed.

    I have managed on

    to achieve exactly the behaviour I want via
    page template = Portfolio Grid
    Portfolio Style = Mosaic
    Items per page = All
    Enable Filter = Yes

    This shows all items under all the categories. And as such is perfect for my needs

    If it was possible to set that as the home page and it function that way that would be great.

    But I see I can’t set such a page as the home page, because if I try that setup in the module home page – home page content it is ignored as the other modules take precendee. Home page content only showing basic text, not fancy page template content.

    Hope you can help.

    Adrian

    #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

Viewing 20 results - 13,641 through 13,660 (of 39,333 total)