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 - 19,701 through 19,720 (of 29,722 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #94625

    Do you mean the right size of the images? Where are you adding this? Can you post a link so I can see what you mean?
    Thanks,

    Hannah

    #94621

    Hi.

    I searched for this theme, but i’m not cleared, also because the topics have 2 years.

    I’m building my homepage with Page Builder, and i want to have the Header (with Logo and Menu), then i want a Portfolio Grid, then the latest Posts of blog, and then some widgets.

    My problem is how to insert the Portfolio Grid in the Homepage.
    I didn’t found a possibility to insert it with Page Builder, and even when i create the Page with Portfolio Grid model and insert the others sections with Page Builder, is not working.

    Can you give me please some suggestions?

    My page is

    Thank you.

    #94616

    Hey Nik,
    Try adding this to your custom css box in Theme Options > Custom CSS:

    .home-padding {
    padding: 0;
    }

    If that doesn’t work would you mind posting a link to your site? You can set as a private reply.

    Hannah

    #94613

    Hi Hannah,

    I’m using the ‘Blog Post’ shortcode on the Blog template page; the only text that appears in the main post editing box is [blog_posts orderby=”date”].

    Sara

    #94605

    Hi there,

    I am hoping you can help, but understand if it is totally out-of-scope…

    A website that I am working on has two sections. I would like these sections to have different main navigation. I have utilised the plugin Menu Replacement by BizzThemes, which gives a meta box to choose which menu to show on each page/post. It is working well on the whole, however, it is not working for the blog archive page.

    I would like to work around this if possible I have thought of a couple of ways but am not sure how to implement:
    1) set up a page (rather than the blog archive template) and use the blog shortcode to display posts. I have tried this, and it works great, but I can’t figure out how to get pagination to allow all posts to be searched. Is this possible?

    2) somehow create an alternate head that applies the correct menu to this archive page.

    I would prefer not to have the default menu for this page, due to the fact that the online store has so many products and is updated frequently and this has the other menu.

    Thanks!

    In forum: Virtue Theme
    #94581

    Hi Ben,
    I’ve just tried changing ‘staff’ to ‘members’ by creating a child theme, activating it and creating functions.php as:
    ———–
    <?php
    add_action(‘init’, ‘kt_filter_staff_slug’, 1);
    function kt_filter_staff_slug() {
    add_filter(‘kadence_staff_post_slug’, ‘kt_custom_staff_permalink’);
    function kt_custom_staff_permalink() {
    return ‘members’;
    }
    }
    ?>
    ———-
    It sort of works, but not really. I get permalinks like /members/danny but viewing this page gives a 404. The 404 happens for existing and new members.
    Visiting /?post_type=staff&p=48 redirects to /members/danny (used to be /staff/danny) but the content is 404 content.

    Do you have any hints as to what else should be changed?

    Thanks,

    Danny

    #94578

    Greetings,

    I’m new to Pinnacle Premium and have most of my site is built. Just created the first blog post but it’s displaying twice on my blog page (using the shortcode to display posts by date):

    I’ve already deleted the default/demo post (Hello World) and only the one new post is listed when I click on Posts>All Posts in the Admin screen. I’m not sure what I’ve done, so any guidance is appreciated.

    Cheers!

    In forum: Virtue Theme

    In reply to: Virtue Theme Questions

    #94576

    Hey Ben,

    I haven’t had a chance to look at your response today, I just read your last post. Update to 3.6.5..what program or plugin?

    #94574

    Hey Jos,
    Are you able to post a link to your site?

    Hannah

    In forum: Virtue Theme

    In reply to: Center Footer Contents

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

    In reply to: Center Footer Contents

    #94555

    Please post a link with support requests.
    Ben

    #94542

    You can remove this:

    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    
    function theme_enqueue_styles() {
    
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    
        wp_enqueue_style( 'child-style',
    
            get_stylesheet_directory_uri() . '/style.css',
    
            array('parent-style')
    
        );
    
    }

    I’m not seeing the function I posted.

    Ben

    #94538

    Isn’t that the main function of the breadcrumbs, to show the you the path you came from? I agree that it’s not good to make it with cookies, but I think that this should not be working the way it is now. Also, I have made this functionality on my site, it’s not the best way it could be made, but for me it’s working. I’m displaying a button in my posts, with data set, according to the category page from where the user is coming. I make this possible as I grab the referrer url and parse. I think this functionality will be working here too.

    #94534

    Hey,
    Breadcrumbs are not set based on how you reach the post. That would require cookies placed in the user’s browser to track their activity on your site and automate a breadcrumb that followed that tracking. I’m not aware of any plugin that does this and I would strongly suggest not doing it anyway.

    For each post there should be a main category (which would be the deepest category) and that is what would be placed as your breadcrumb.

    Ben

    #94530

    Yeah, sure. Sorry about that, but my site is in Bulgarian. I hope that would not be a problem.
    I emptied the cache (I use WP Super Cache plugin), but the problem is still there.

    Category AA -> https://stoiigledai.com/blog/category/optimization/optimization-voip/
    Category BB -> https://stoiigledai.com/blog/category/repair/repair-voip/
    Category CC -> https://stoiigledai.com/blog/category/training/training-programs/

    Post -> https://stoiigledai.com/blog/skype/

    (The post breadcrumb is always displaying the “Category CC”)

    #94527

    I’m unable to replicate this issue on my test site. Would it be possible for you to post a link to your site so I can see what’s going on?

    Also, I would try clearing your cache and disabling plugins one by one to see if there may be one conflicting with the theme breadcrumbs.

    #94521

    Hello there,
    I have a problem. I have posts in my blog which have 2 or more categories. The problem is when you navigate to category page and then select a post, the breadcrumb is the same all the time, for all categories.

    Example:
    Post A is in Category AA, Category BB, Category CC

    When you go to:
    Category AA, then click on Post A, breadcrumb is “Blog > Category AA > Post A”
    Category BB, then click on Post A, breadcrumb is “Blog > Category AA > Post A”
    Category CC, then click on Post A, breadcrumb is “Blog > Category AA > Post A”

    Can you please fix this?

    Best wishes,
    Georgi

    #94519

    Hi Ben,
    Thanks. The intention is to apply the 6 pictures in the third column of the footer, and that the pictures should all have the same size. So a possibility to set the size of the pictures. See what is going wrong. That could be due to different sizes of the original size? but that should be possible?

    http://postimg.org/image/785m3f71d/

    The images should be static , just a link to a particular page , no enlargement of the image (no lightbox)

    Regards,
    Jos

    #94503

    Hey,
    I need to understand are you wanting those images to link to a product or a portfolio post?

    Ben

    #94502

    Arantza, Can you post a link to your site?

    Ben

Viewing 20 results - 19,701 through 19,720 (of 29,722 total)