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 'post'

Home / Forums / Search / Search Results for 'post'

Viewing 20 results - 20,921 through 20,940 (of 29,722 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme
    #83271

    Thanks for posting.
    Ben

    In forum: Virtue Theme

    In reply to: Blog Post out of order

    #83269

    Just to clarify, are these posts the ones that are giving you issues? Are you wanting those posts to be displayed up front with all the new posts but having them fall back in with the older posts?

    In forum: Virtue Theme

    In reply to: Blog Post out of order

    #83268

    I checked there are no posts that are sticky. However my client is entering posts now and then back dating the date to January. Would this be a possible cause?

    Thanks,
    Shaun.

    In forum: Virtue Theme

    In reply to: Blog Post out of order

    #83263

    Do you have posts that you have set as “sticky”?

    Ben

    #83261

    1. Just so you know breadcrumbs on posts are different page pages because the whole page header is different. It’s part of the design and use differences. Like for example the portfolio navigation. The point is not that all the posts would look the same. You can of course use pages for whatever your like or chnage the template in a child theme.

    @media (min-width: 997px){
        .single-portfolio-item #kadbreadcrumbs {
        text-align: right;
        position: absolute;
        bottom: 10px;
        right: 0;
    }
    .page-header.single-portfolio-item .col-md-8 {
        position:static;
    }
    .page-header.single-portfolio-item {
        position:relative;
    }
    }

    2. You have to change the page id..

    
    .postid-36 .page-header {
        border-bottom: 0px;
    }
    .postid-36 .titleclass {
        border-bottom: 1px dashed #000;
    }

    Or if you really actually just want for all portfolio posts:

    .single-portfolio .page-header {
        border-bottom: 0px;
    }
    .single-portfolio .titleclass {
        border-bottom: 1px dashed #000;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Randomize Latest Posts

    #83258

    Hey,

    So adding a shortcode, just use a text widget and add it to the text box. Then save.

    In terms of the home page content you can add there just make sure page content is enabled in your theme options > home layout.

    In terms of the blog page, it’s not an option using a template. SO you can either use a shortcode for this too (which means you will not have pagination so it your posts take up more then one page it won’t really work)

    Or you can use a child theme: https://www.kadencewp.com/child-themes/

    Then edit the page-blog.php file you would have to edit the query.

    Ben

    In forum: Virtue Theme
    #83255

    Hey so page-sidebar.php is the template, for the main content is calls

    <?php get_template_part('templates/content', 'page'); ?>

    Which is going to load this code from the templates/content-page.php file. You can see that here:

    <?php while (have_posts()) : the_post(); ?>
      <?php the_content(); ?>
      <?php wp_link_pages(array('before' => '<nav class="pagination kt-pagination">', 'after' => '</nav>', 'link_before'=> '<span>','link_after'=> '</span>')); ?>
    <?php endwhile; ?>

    And so it’s looking for a post, looking for the content and checking for single page pagination.

    Ben

    #83254

    You can use this css to control the variation label and select box:

    
    #content div.product form.cart .variations label, .product_value .select2-container .select2-choice>.select2-chosen {
        font-weight: 400;
        font-size: 16px;
    }

    Always best if you can post a link to your site.

    Ben

    #83231

    ? I’m not sure what you mean with the second part but if your having trouble with page-builder you likely need to increase you php settings on your server.

    Else please post a link with you support posts.

    Ben

    In forum: Virtue Theme

    In reply to: Blog Post out of order

    #83225

    Any chance you can post a link to the site that you’re working on? Where exactly are these blog posts showing up at? Are you referring to latests posts on the home page, or the actual blog posts on the blog itself?

    Thanks,
    Kevin

    #83223

    Hi Ben,

    For some reason Blog posts are not displaying in the order of “Published On” date. Is there a setting that I have missed. I would like the post to display in order of “Published On” date and the newest showing first.

    Thanks,
    Shaun.

    #83219

    Sure thats fine, make two different staff groups and assign each staff post to one of those groups. Then when you make the page use the staff grid template and choose to show only items from one of the two groups.

    Ben

    In forum: Virtue Theme
    #83216

    Hey,
    You would have to use the post head option to shortcode. Then you would place the shortcode into the “If Shortcode Head Content” box.

    Ben

    In forum: Pinnacle Theme

    In reply to: Shortcode Tabs

    #83215

    Try adding this CSS to Theme Options> Advanced Settings> Custom CSS.

    .nav-tabs {
        margin-right: auto;
        margin-left: auto;
        position: absolute;
        text-align: center;
        width: 100%;
    }
    
    .tab-content.postclass {
        margin-top: 30px;
    }

    Let me know if that works for you!

    #83205

    Hello! Would it be possible for you to post a link to the site that you’re working on?

    Firstly, the demo site’s slider has the following settings under the Slider Settings. Under Slide Layout, be sure that you’ve selected “Auto” for any area that allows for it. This is what determines how the slider will behave responsibly.

    Then, each slider on the demo simply has a high resolution background picture with layers of text above it.

    Try making your settings like this and let me know if that brings you closer to how you want it to be.

    thanks,
    Kevin

    In forum: Virtue Theme
    #83200

    Hey! Could you please post a link to the site that you’re working on so I can try an write the CSS required to do this?

    Thanks,
    Kevin

    In forum: Virtue Theme
    #83190

    Hi Alex,
    Do you mind posting a link?
    Thanks!

    Hannah

    #83157

    Hi,

    I’m setting the breadcrumbs on portfolio post:
    why is breadcrumbs text position differnt on portfolio items compared to pages & categories?
    is it possible to change breadcrumbs on portfolio items and set them like breadcrumbs on pages & categories?

    this is my link

    p.s. I have still a problem about the dashed line below title…I wrote you about another page, and you solved my problem ( I can’t do the same think in this page

    In forum: Virtue Theme

    In reply to: Randomize Latest Posts

    #83142

    Another thing: can I also randomize posts in the blog page?
    http://www.fuzzyhouse.com/fuzzy-diy/
    They always appear by date and I would like them to appear randomly.

    Thank you.

    #83139

    Just a quick FYI on the 2. issue: Postprocessing the po files with a regex is not so easy, since there are many corner cases and potential side effects.

    Anyway: Seems like other themes have exactly the same problem: http://glueckpress.com/6651/excluding-text-domains/

Viewing 20 results - 20,921 through 20,940 (of 29,722 total)