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,641 through 15,660 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    Topic: Suggestion

    #201476

    Hi,
    first of all, I’d to thank you for the excellent work you do, secondly, I’d to ask you if you’ve ever thought to include in theme options a customizable contact form that your customer can put at the page bottom.

    What do you think about? It’s very useful to marketing conversion. Hoping to be able to explain myself and so for my “italian” English.

    Thank you in advance.

    Roberto

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

    #201460

    My images are selected as being centers but they are all off center unless selected to be full page.

    In forum: Ascend Theme

    In reply to: portfolio page 2

    #201443

    Hey,
    This has to do with a limitation in WordPress and the pretty permalink structure. Two different post types can not share the same base slug. When you’re paginating a page it’s base slug becomes the first-page permalink and page/X/ define its output.

    Portfolio posts by default use “portfolio” as it’s base slug that creates a conflict. Basically when WordPress sees

    portfolio/page/2/ it’s looking for a portfolio post not the pagination of the portfolio page.

    to fix you just have to change the permalink of your portfolio page. To anything different, for example, “my-portfolio” or you need to change the base slug for the portfolio posts to something other than portfolio, you can do this in the theme options > portfolio settings.

    Does that make sense?

    Ben

    #201442

    Sorry, I thought you were referencing your page titles. I’m not sure of a way to make this work for the image menu items. Sorry! If I’m wrong the developer will chime in.

    Hannah

    #201433

    I cleared the cache and the same issue arises. What I assume is that if a portfolio is classified as both DESIGN and PHOTOGRAPHY once you navigate onto the dual categorized page it navigates through the unwanted Photography category instead of staying in the desired DESIGN category. I eliminated dual classification and we now can navigate back and next safely through the DESIGN category without any interference from PHOTOGRAPHY or VIDEO classified portfolios. This will work okay for us. Thank you!

    #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

    #201427

    Hey sorry this thread was missed.

    1. “How can I update the location address of the icon links” – Can you post a link? Are you talking about the Icon menu in the home page or something in the navigation? The icon menu in the home page content is controlled in your theme options > home layout.

    2. In your settings > reading you can set which page it is that you want to be your “front page” is you are not wanting to set a page then in your appearance > menus create a custom menu where you set the link as your home domain and the label as home.

    3. In your theme options > menu settings.

    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: Ascend Theme

    In reply to: portfolio page 2

    #201412

    No. Still a problem.

    “Not Found
    Sorry, but the page you were trying to view does not exist.
    It looks like this was the result of either a mistyped address or an out-of-date link”

    In forum: Ascend Theme

    In reply to: portfolio page 2

    #201401

    Hello,

    The first thing to try when getting a 404 is to go to Settings> Permalinks, and try resaving them.

    Does the page load properly after resaving permalinks?

    -Kevin

    #201393

    Hey Adrian,
    You can use a shortcode like this:
    [portfolio_posts orderby=date style="mosaic" columns=4 items=200 lightbox=true showtypes=true filter="true"]
    Just paste that into the content are of your static homepage.
    Hope that helps!

    Hannah

    #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

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

    In forum: Ascend Theme
    #201380

    Page 2 link not working. What am I doing wrong?

    #201378

    I have the latest version of the Virtue Theme installed (Premium) and downloaded the demo content. For some reason the main drop down menu isn’t working. It just lists all the menu item as a “page overlay” –> screenshot (right click and copy link… for some reason it doesn’t load when just clicked)

    What could the problem be?

    #201376

    Hi,


    You’ll see I have setup with 6 Home page – Home image menu.

    I have Choose how many columns in each row = 4
    and have 6 image menu items, so rightly is presents them as 2 rows. Two of these are testing menu items to illustrate the issue.

    Each image menu item has a nice vertical white space between each column, but has no horizontal white space between each row. I think this visually confuses the user as to where each item starts and ends

    I’d like it so that the same width of vertical white space is used in the horizontal, between the rows. That way it would look like a balanced grid and be similar to a portfolio grid for style.

    Can you advise how I can set that up? Thanks.

    #201375

    Hi,


    uses an image menu on the home page, 4 boxes in a row.
    OUR BOOKS, WORD SEARCH, SCRAMBLE, SUDOKU

    The font looks fine on a computer and on my iPhone, but on a tablet the word SCRAMBLE does not fit in the box, kind of displays as SCRAMBL

    You can replicate this using a chrome browser or safari on a pc by making the browser windows smaller. If you make the browser too narrow, the 4boxes in a row become 2 rows and the text fits in each box fine. But if you make the browser medium narrow you’ll see the issue.

    Or it can be replicated by setting Choose how many columns in each row = 6, so it uses smaller boxes then the text doesn’t fit in.

    I’ve looked around in the theme options but can’t see a place to set the font size or auto fit option.

    Thanks for your help.

    #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

    #201369

    Hello Ben and Team,

    I am using Virtue Premium.

    I would like to create a slider using Kadence Slide Pro and play the slider in the Header section on each page.

    Can you please let me know if this is doable and, if yes, where I can find the related settings?

    Thank you,
    Jay

Viewing 20 results - 15,641 through 15,660 (of 53,646 total)