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: Pinnacle ThemeIn forum: Pinnacle Theme
In reply to: Kad Animation On Scroll
In forum: Pinnacle ThemeIn reply to: Gallery columns
I’m using the standard gallery supplied by your theme, here: http://naturalplacesphotography.com/west-coast-trail/
This particular example has no sidebar and is full width, but I will likely put some posts up with a sidebar as well.
The shortcode for this gallery looks like this:
[gallery columns="8" ids="444,445,446,447,448,449,450,451,452,453,454,455,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,483,481,482,484,485,486,487,509,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508"]I specified 8 columns but only 6 show up with or without the sidebar. If there is a sidebar they do show up with smaller thumbnails.
Thanks, Glenn
In forum: Virtue ThemeIn reply to: Option to show category name instead of folder icon?
March 23, 2016 at 11:35 am #87322Hey,
You would have to use a different post output or edit the theme templates.For example if you set the front page as your post page then enabled the page content and disabled the latest posts in your theme options > home layout. The posts would output like this: http://themes.kadencethemes.com/virtue-premium/blog/
Ben
In forum: Virtue ThemeIn reply to: Menu background color
In forum: Virtue ThemeIn reply to: My product image is to big
March 23, 2016 at 10:28 am #87314Hey,
1. Did you set the product thumbnails in your wooocommerce settings and make sure to turn off the crop?
2. Yes if your images are all going to be different sizes then the boxes would be as well? I’m confused is that not what you wanted this whole time?
3. If you’re not cropping the image square then it’s going to output in whatever ratio you upload in. If your image is wider then it is large how do you propose that the image would increase in height unless you copped it? Are you wanting to stretch the image in some odd way?
Maybe it would really help if you can post an image of what you’re wanting?
Ben
In forum: Virtue ThemeMarch 23, 2016 at 10:22 am #87313Hey,
1. If you got that error it would mean you didn’t do step 2, 3 or 4 in the tutorial I posted above? can you check that again? Make sure to remove the version you have.2. You only need to select the cyclone/shortcode option. Then add the smart slider shortcode into that shorcode box.
Ben
In forum: Virtue ThemeMarch 23, 2016 at 10:10 am #87308Hey,
So google mixes blog post with news article. Technically with Schema you don’t need any of those to be a blog posts.publisher is a news term. You already have author in the blog posts so when google shows that as an error they are referencing that it won’t show correctly in a news article search on google. Unless you are a news agency you can ignore because you probably don’t want your post in a news section of a google search.
I encourage you to read about this and how it works. If you find that you want to be presented as a news agency then there are SEO plugins you can add to fill in the rest of your article meta fields.
The theme will output a header image in a way that it’s referenced to blog posting. If your not using the header image then you would need to add that into your page content where you control the output.
Ben
In forum: Virtue ThemeIn reply to: Primary Menu margins
In forum: Virtue ThemeIn reply to: My product image is to big
In forum: Virtue ThemeIn reply to: Disable description text
In forum: Virtue ThemeIn reply to: Center Primary Navigation in Header
In forum: Virtue ThemeHi,
I check my website with google Structured Data Testing Tool and I got errors about “BlogPosting”
!image: missing and required
!publisher: missing and required
!dateModified: missing and recommended
!mainEntityOfPage: missing and recommendedI would like to know how do I fix this problem?
This is for SEO purpose.Thanks…
In forum: Virtue ThemeIn reply to: My product image is to big
March 22, 2016 at 6:35 pm #87230Please did you run the plugin like I suggested?
Regenerating thumbnails means every size.
You can add css to make a border around your product gallery thumbs. Post a link if you have css requests.
Ben
In forum: Virtue ThemeIn reply to: How to remove arrow and coin from slider show
March 22, 2016 at 6:16 pm #87220Guess you missed the link… I’ll post again.. see here: https://www.kadencewp.com/manually-updating-a-theme/
BenIn forum: Virtue ThemeIn reply to: Adjust menu on iPad
March 22, 2016 at 5:41 pm #87208Ok well there are two missing brackets just in the css I posted not one.
Each media query you open has to be closed.
If you would like you can send me a temp login and I can take a look.
Use Set as private reply.
Ben
In forum: Virtue ThemeTopic: featured image as header!
Hallo Hanna & Ben,
I use Virtue Theme premium.
I have 2 question.
1- I need to know how I can make the fonts Lucida sans the font for the whole website?
2- I want all the pages and posts have the featured image as header picture and full width. How can I do that?
I have search the support form and I can’t find an answer for my questions.Kind Regards,
AmelIn forum: Virtue ThemeIn reply to: Displaying custom fields using hooks
Hi Ben,
I’m working on localhost and when the above code I added is enabled I get the following error
The localhost page isn’t working
localhost is currently unable to handle this request.
500Here’s my full functions.php:
<?php ///*-*-*-*-*-*-Add Release Info Custom Fields Without Labels-*-*-*-*-*-*/ add_action( 'woocommerce_single_product_summary', 'kt_add_custom_field', 15 ); function kt_add_custom_field() { global $post; echo "<div class='release-info'>"; echo '<div class="ri-artist">'.get_post_meta( $post->ID, 'wpcf-artist', true ).'</div>'; echo '<div class="ri-title">'.get_post_meta( $post->ID, 'wpcf-title', true ).'</div>'; echo '<div class="ri-date">Released: '.get_post_meta( $post->ID, 'wpcf-date', true ).'</div>'; echo '<div class="ri-format">Format: '.get_post_meta( $post->ID, 'wpcf-format', true ).'</div>'; echo "</div>"; } add_action( 'get_header', 'kt_tigger_on_front_page', 0 ); function kt_tigger_on_front_page() { if(is_front_page()) { add_action( 'woocommerce_after_shop_loop_item_title', 'kt_add_custom_field_archive', 0 ); } } function kt_add_custom_field_archive() { global $post; echo "<div class='release-info'>"; echo '<div class="ri-artist">'.get_post_meta( $post->ID, 'wpcf-artist', true ).'</div>'; echo '<div class="ri-title">'.get_post_meta( $post->ID, 'wpcf-title', true ).'</div>'; echo '<div class="ri-date">'.get_post_meta( $post->ID, 'wpcf-date', true ).'</div>'; echo '<div class="ri-format">'.get_post_meta( $post->ID, 'wpcf-format', true ).'</div>'; echo "</div>"; } ///*-*-*-*-*-*-Add subtitle to homepage posts-*-*-*-*-*-*/ add_action( 'kadence_post_mini_excerpt_header', 'kt_add_custom_field', 5 ); function kt_add_custom_field() { global $post; echo '<div class="subtitle">'.get_post_meta( $post->ID, 'wpcf-subtitle', true ).'</div>'; } ///*-*-*-*-*-*-Change Related Post Title-*-*-*-*-*-*/ add_filter( 'similarposts_title', 'kt_custom_similar_post_title'); function kt_custom_similar_post_title() { return "Related Posts"; } ///*-*-*-*-*-*-Remove short description if product tabs are not displayed-*-*-*-*-*-*/ function tf_reorder_product_page() { if ( get_option('woocommerce_product_tabs') == false ) { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); } } add_action( 'woocommerce_before_main_content', 'tf_reorder_product_page' ); ///*-*-*-*-*-*-Display product description the_content-*-*-*-*-*-*/ function tf_do_product_desc() { global $woocommerce, $post; if ( $post->post_content ) : ?> <div itemprop="description"> <?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?> <!-- <h2><?php echo $heading; ?></h2> --> <?php the_content(); ?> </div> <?php endif; } add_action( 'woocommerce_single_product_summary', 'tf_do_product_desc', 55 ); ///*-*-*-*-*-*-Add Custom Field to Product Page-*-*-*-*-*-*/ function add_custom_field() { ?> <div class="release-details"> <div class="release-details-left"> <?php echo get_post_meta(get_the_ID(), "wpcf-release-details-left", true); ?> </div> <div class="release-details-right"> <?php echo get_post_meta(get_the_ID(), "wpcf-release-details-right", true); ?> </div> </div> <?php } add_action( 'woocommerce_single_product_summary', 'add_custom_field', 56 ); ?>Will you be adding hooks to templates in future theme updates? It looked like hooks were added to blog-home.php in a recent update.
Thanks,
-Adam
In forum: Virtue ThemeIn reply to: Revolution Slider not working on home page
In forum: Virtue Theme -
AuthorSearch Results


