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

    In reply to: Home Page Video Image

    #85892

    Hi Ben,

    Max upload was set to 40M (changed to 100M).

    Regarding the video posts, I am confused. Before the site crashed, I never set a “featured image” for video post. Set the “Standard Post Options” as “Head Content” and “Post Summary” to video. Then put the “If Video Post” link in. This is how your example “You Tube Video Post” is setup. Now that is not showing either on the home page. But if I click the link to the actual blog post, the video is displayed. Are you saying that a featured image is required? If so, I would I display the video image on the “featured image”? On previous themes, for a post on the home page with a video, it rendered an image of the video ready to go.

    Please note that I am referring to the home page layout, using the home layout manager with the “Latest Blog Posts” enabled.

    In forum: Virtue Theme

    In reply to: Creating a portfolio

    #85880

    the perma link that is being generated within the site for the portfolio page is http://www.ablecontracts.co.uk/index.php//portfolio/mondayport1/ but other pages which can be viewed i.e.. posts use
    http://www.ablecontracts.co.uk/index.php/%year%/%monthnum%/%day%/%postname%/

    Is the portfolio url adding // instead of / between index.php and portfolio.
    Have I clicked on something to change the way the urls are created? And should I reinstall wordpress and virtue to build the site more constantly?

    Plugins activated are: Black Studio TinyMCE Widget
    Cyclone Slider Pro
    Kadence Slider
    Page Builder by SiteOrigin
    SiteOrigin Widgets Bundle
    Slider Revolution
    Spacer
    Title Remover
    WooCommerce
    WordPress Importer

    #85870

    Ben, the menu has disappeared off the portfolio category pages now, is it possible to have the sidebar menu there too?
    Also the post image sizes in category view have all become different, they were the same before:
    https://www.honeybees.nz/beekeeping-info/getting-started-with-bees/

    Tks, John

    In forum: Virtue Theme

    In reply to: Full width footer

    #85869

    Hi Ben/Hannah

    1.I’d like to be able to have the Footer scale to the full width of the screen,tried to fix but not working.
    2.I’d like to show only the blog post featured image on home page that click on to go to the actual post that then displays the entirety of the post content. Right now
    on every page everything I type in the post comment displays entirely on each page.
    3.Home image menu overlap call to action on desktop & mobile how can i adjust it? tried on edid row (padding) but not working.

    http://www.quiware.com

    Thank you

    In forum: Virtue Theme
    #85865

    Hi Ben/Hannah

    1.I’d like to be able to have the Footer scale to the full width of the screen,tried to fix but not working.
    2.I’d like to show only the blog post featured image on home page that click on to go to the actual post that then displays the entirety of the post content. Right now on every page everything I type in the post comment displays entirely on each page.

    http://www.quiware.com

    Thank you

    In forum: Virtue Theme

    In reply to: portfolio in list mode

    #85855

    You can do it in both themes. Just you’ll need to use different lines in page-portfolio.. and you may need to edit some other items. So remove lines 97-130 and add this code.

    <div class="p-item">
    <?php get_template_part('templates/content', get_post_format()); ?>
    </div>

    PLease use the free support forms in the future or make it clear upfront that you are using the free theme.

    Ben

    #85854

    The function should be this for the sidebar just on the portfolio posts so you don’t affect everything else:

    function kad_sidebar_on_portfolio_page($sidebar) {
      if (is_singular('portfolio')) {
        return true;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_portfolio_page');

    In terms of the sidebar menu just use this:

    .sidebar .widget-inner .menu li a {
        font-size: 10px;
        line-height: 20px;
    }

    As for adding items to the menu each post you make you would have to go to apperance > menus and add the post to your custom menu. are you adding it there?

    Ben

    #85848

    1. It’s not a specific enough css selector.
    Use:

     #kad-blog-grid #post-29  {
    background-color: #fafafa;
    border-style: solid;
    border-width: 10px;
    border-radius: 15px;
    color: #000;
    }

    2. If you make the front page a static page you would have to use a shortcode for displaying posts. Like:

    [blog_grid items=4 columns=3]

    PLease see: https://www.kadencewp.com/creating-a-home-page-with-virtue/

    http://docs.kadencethemes.com/virtue/#shortcodes
    Ben

    #85828

    Thanks, Ben!

    I am using #post-id for the styling on the excerpt page. for the posts, I am using the page builder as it is easier for me to style.

    Can you please comment on the two questions below:

    1) Below is an example for one of the excerpts. I am using for following css for one of my post (on my excerpt

    #post-29  {
    background-color: #fafafa;
    border-style: solid;
    border-width: 10px;
    border-radius: 15px;
    color: #000;
    }
    #post-29 h4.entry-title {
    color: #00007a;}

    I can see the changes with this css except the following has no effect:

    border-style: solid;
    border-width: 10px;

    Is there anything wrong with this?

    2) I have a page Blogs & Analyses. When I use it as regular page and select blog/blog grid as template and select my blog category under Blog Category I can see the excerpts of all my posts in a two-colummn format (as I have selected so).

    However, when I set this page to my Front Page, the excerpts disappear. I looked at the Home Layout under Theme Options but the only setting available is for the latest posts and you can choose how many of these “latest Posts” should be displayed.

    Can you please tell me how to make excerpts of ALL of my posts appear on the Front Page?

    Thank you,
    Jay

    #85820

    Hey,
    1. You can click on your name and you can see all the posts you created.

    2. This is a function and would require that you have a child theme so you can add functions.

    add_filter('woocommerce_empty_price_html', 'custom_call_for_price');
    
    function custom_call_for_price() {
    return 'Price on Application';
    }

    doesn’t mean you need to have overridden the file: woocommerce/loop/add-to-cart.php

    Ben

    #85817

    1. That shouldn’t happen. Means most likely you have a plugin breaking the page. Or your hitting a php limit. HAve you deactivated your plugins?

    2. That could only happen with your own custom css targeting each post individually using the post id class.

    I’ve never seen a plugin that would do this kind of thing for you. But you can certainly look.

    Ben

    #85786

    Poring over notes taken on adjustments made to my site..please bear with me. Here goes.

    Over the past couple of years, I had been using the Custom CSS box in the theme to do minor stuff like this:
    .page-header {
    border: 0;
    }
    .pricebox {
    border:0;
    }
    .product_header, div.product .product_meta {
    border:0;
    }

    Note, these are still in the CSS Custom box.

    I recall having an issue where the product images were not lining up properly and I also wanted to note ‘Price on Request’ when I did not have a price on the item. My notes show this coding:

    Filled in ‘Price on Application’ when no price is listed, kept all catalog items aligned properly
    add_filter(‘woocommerce_empty_price_html’, ‘custom_call_for_price’);

    function custom_call_for_price() {
    return ‘Price on Application’;
    }

    Removes ‘add to cart’ from catalog pages
    .product_item .kad_add_to_cart {
    display: none;
    }

    So, it was about this time my site transitioned to child. I didn’t make the change (as you can probably tell, I am technically lite!!) Could it be that you made the transition at your end because of the coding required to make these sort of adjustments?

    Just trying to get to the bottom of it, if eliminating my child would mean less management on my part I welcome it. However the customization efforts made in the past may be voided in the process of getting rid of the child.

    Boy, I hope this makes sense to you Ben. If I could look back on my posts to this support forum I may be able to piece this back together much better.

    #85784

    Kevin, just to confirm your last post, I don’t want any sidebar, not even Ben’s portfolio menu code to appear on the home page, tks.

    #85783

    Hi Kevin, tks for the speedy answer

    1/ Your css doesn’t alter the font size of the portfolio article. I made it 10px to be sure and cleared browser cache several times! (is there something else I have to do?)
    2/ The all grey first box is (was always) selected for home layout, it’s Ben’s code in functions.php that is putting the portfolio menu everywhere (see first post in this thread).

    Tks, John

    #85762

    Hi Hannah,

    I am aware of Post Options although some of the settings are not working for me (e.g. everytime I change “site default” under “Head Content” to “none”, it goes back to “site default” when I click update).

    However, I would like to change the border, background color, font size, font color, etc. of each post excerpt on my blog page (link to my blog page) and on each of my posts (e.g. see the Link to one of my posts

    Thank you,
    Jay

    In forum: Virtue Theme

    In reply to: Home Page Video Image

    #85751

    “Did an update to latest Virtue theme and broke my site” – what is your max upload size in your local?

    You have to set a featured image for the post. That is what is pulled into the post summary.

    Does each of your video posts have a featured image set.

    Ben

    In forum: Virtue Theme
    #85748

    Hey,
    Are you referring to your product page or the shop page? Do you mind posting a link?
    Thanks!

    Hannah

    #85737

    Hello,

    Is there any way (or a recommended plugin) for adding and formatting social media share buttons for posts?

    site: http://www.traceyreneehubbard.com

    #85728

    Oops, didn’t refresh before posting. Which products are you referring to? I have tried with a few and it’s allowing me to add them to the cart just fine.

    #85726

    I am creating a portfolio as the theme instructions. I create a portfolio post update it to save it. I try to view it and a page display saying not found.

    On my portfolio page I have the correct image and wording/ headings, but try to view the page and I get page not found.
    Can you help. I think that the page link is not being made view the portfolio post.

Viewing 20 results - 20,641 through 20,660 (of 29,722 total)