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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Image size for portfolio items
February 8, 2016 at 2:58 pm #80253Hey,
There are a lot of ways to add an image to a portfolio items are you talking about one of those on the individual post or are you talking about the portfolio grid? Can you post a link?Ben
In forum: Virtue ThemeIn reply to: Received Fatal Error
February 8, 2016 at 1:04 pm #80232Hey,
1. In your theme options > home layout. Move “latest posts” to disabled. Then move “page content” to enabled.Next go to settings > reading. Set the front page as your posts page.
2. You would need a plugin to add something like that.. and which one depends on how you are sending a newsletter. for one example see this: https://wordpress.org/plugins/newsletter/
Ben
In forum: Virtue ThemeIn reply to: Photography website
February 8, 2016 at 12:59 pm #80231Hey,
It really depends on your needs. The workspace is just a portfolio post. Using the image grid option for display.Check out this tutorial: https://www.kadencewp.com/creating-a-portfolio-page-with-virtue/
That should help explain.
Ben
In forum: Virtue ThemeIn reply to: Home page help please
February 8, 2016 at 12:28 pm #80218Hey,
Those are in your home widget area. in the apperance > widgets page.You can add this css in your theme options > advanced settings:
@media (min-width: 1200px){ .container { width: 1000px; } } .kad-header-left { padding: 0; }You can see your past posts here: https://www.kadencewp.com/support-forums/users/apmkrissy/topics
Ben
In forum: Virtue ThemeIn reply to: Sidebar on Portfolio Page
February 8, 2016 at 12:05 pm #80211Hey,
You can add this css:#portfoliowrapper { padding: 0; }Or what would be best is to remove the classes
col-lg-9 col-md-8from the portfolio wrapper.Or what would be even better is to use a sidebar page template and add this shortcode to the page content for the portfolio grid.
[portfolio_posts columns="4" items="10"]Then you wouldn’t have to edit the template.
Ben
In forum: Virtue ThemeIn reply to: Footer credits
February 8, 2016 at 11:48 am #80206Hey,
1. How many footer columns are you using? (posting a link with support is always best)2. What is the custom icon? Is it an image? Can you send a link to this image?
Ben
In forum: Virtue ThemeIn reply to: Mini-blogs within one blog site. Possible?
February 8, 2016 at 11:27 am #80197Hey,
So you need to first take in that there is no way to do a mini blog in wordpress… ok. So once you know that then you can consider some ways to fake it but do not think that this will make a mini blog. again that isn’t an option.Your standard blog page will have all post. because thats how wordpress works. You can of course create pages that only show posts in certain categories. Which is what I suggested. For that you need to make the categories first. Make two main categories then make a new page and using the page template blog only select to show one of those main categories. (your main posts). Then you have effectively faked a blog page that doesn’t show your “mini” posts.
So to clarify, it’s not possible to have what you want automated and easy for you. This doesn’t have to do with theme it’s just how wordpress works.
But what you can do (with some trouble) is make workarounds by using two main categories and only showing posts from one. Then creating carousels or widgets that only show posts from another.. those being your “mini” posts. You would have to make a new category for each mini post and select to show that category on your main post by using pagebuilder or a sidebar widget.
Does that help at all?
Ben
In forum: Virtue ThemeIn reply to: Sort Portfolio_posts ascending
February 8, 2016 at 11:15 am #80194Using a shortcode you can set the order..
order="ASC"[portfolio_posts orderby=title order="ASC" excerpt=false itself=false columns=4 items=-1 height=320 lightbox=true showtypes=true cat="schule"]Ben
In forum: Virtue ThemeIn reply to: Short product description in shop grid
February 8, 2016 at 10:33 am #80178Hey,
Can you post a link to your site?
BenIn forum: Virtue ThemeIn reply to: Slow wordpress and wp admin panel
February 8, 2016 at 9:50 am #80166Hey,
Really sounds like you need to contact your hosting provider. Have them increase your max memory in the php settings and check your error logs for details.Also would be really helpful for us to understand if you can be more specific about whats happening and post links for examples.
Ben
In forum: Virtue ThemeI’m trying to find what the recommended image dimensions are for items in the portfolio. When I’m posting items up, it’s cropping them in ways that are not acceptable.
Is there a way to force it to retain the dimensions of the image? I’m not currently seeing that.
In forum: Virtue ThemeHi Sarah,
1. You do have the page builder plugin installed and activated, correct? If so, in Settings > Page Builder > General do you have Pages selected beside Post Types?
2. What are you wanting different with the height? Taller? Shorter?
3. You can set these from Theme Options > Advanced Styling.
Hannah
In forum: Virtue ThemeIn reply to: hr (created in tae)
In forum: Virtue ThemeIn reply to: NO FUNCIONA CUANDO ACTIVO EL WOOCOMERCE
In forum: Virtue ThemeIn reply to: How to replace the demo with your own content
Thank you for your help, Hannah!
3) I was able to delete the logo (I changed the css into a */comment/*)
4) this doesn’t affect the header background:
.page-id-416 .headerclass {
background: rgba(255,255,255,.6);
}I suspect there is a white background in the header because of the scrolling, now I chose Header style “Basic, with shrink for sticky” and it doesn’t help to mark the bg “transparent” in Theme options > Advanced styling > Header background
But I accidentally deleted all 🙁 so I started again. This time setting the header background to a repeating image in Theme options > Advanced styling > Header background worked.
But I still cannot figure out where to change the blog post images on Home page, and also cannot find a way to edit the Footer content.
And I lost the “custom css”, could I find a copy of that default css somewhere?
regards,
UllaIn forum: Virtue ThemeHi,
I’ve been working on adding some custom fields to my woocommerce products, something I’m entirely new with. I found a helpful post here on adding multiple custom fields and was able to add them to my single product pages by following the steps and adding the code to functions.php.
What I would like to do now is have those custom fields display under the thumbnails of the featured products I have displaying on my home page. I would like to have these fields display between the product title and price, if possible. I’m working locally, but I can show you what I’ve got so far:
add_action( 'woocommerce_single_product_summary', 'kt_add_custom_field', 15 );
function kt_add_custom_field() {
global $post;echo '<div class="release-info, ri-artist">'.get_post_meta( $post->ID, 'wpcf-artist', true ).'</div>';
echo '<div class="release-info, ri-title">'.get_post_meta( $post->ID, 'wpcf-title', true ).'</div>';
echo '<div class="release-info, ri-date">Released: '.get_post_meta( $post->ID, 'wpcf-date', true ).'</div>';
echo '<div class="release-info, ri-format">Format: '.get_post_meta( $post->ID, 'wpcf-format', true ).'</div>';
}Thanks for your help!
-Adam
In forum: Virtue ThemeTopic: Home page help please
Hi,
How do I remove the basket and shop search page from the home page? I am using page builder and cannot find how to remove these. The shop is only for restricted users not the general public but all other pages on the site are for the general public.
How do I set everything to fit within the banner width on the page? *Login to see link
Sorry if this has been posted twice, I asked for help on Friday but can’t find the post now or see any replies.
Thanks in advance for your help and time,
In forum: Virtue ThemeTopic: Sensei 1.9 "blank page"
I see that someone else posted about something like this, but I don’t see a reply with a fix. When a customer purchases a course, and then goes to their “My Courses” page, and then clicks on their course, the resulting page includes the site header and footer and no content in between. I don’t believe this was happening with the previous version of Sensei. Is there a theme conflict?
In forum: Virtue ThemeIn reply to: How to replace the demo with your own content
Hey Ulla,
1. Your posts you can add/edit/remove by navigating to Posts from the admin panel.2. Which images can you not change? All featured images can be set from the individual edit pages.
3. In Theme Options > Advanced Settings remove the following from your custom css box:
.kad-standard-logo { background: url('http://themes.kadencethemes.com/virtue-premium/wp-content/uploads/2014/01/virtue_logo_blue3.png') no-repeat center center; background-size: contain }4. Theme Options > Advanced Styling.
5. Deselect secondary navigation in Appearance > Menus.
See a full list of tutorials here- kadencethemes.com/tutorials/
And documentation here- docs.kadencethemes.com/virtue/Hope that helps!
HannahIn forum: Virtue ThemeTopic: Sticky Nav Menu Only
-
AuthorSearch Results


