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: Home Layout has gone Blank
In forum: Virtue ThemeIn reply to: portfolio navigation and other portfolio issues
Hey Linda,
You can set a featured image for each category by navigating to Portfolio > Portfolio Type from the admin panel. There you can edit/add portfolio types and set images for them.
Can you post a link to the portfolio that is linking correctly so I can see what you’re after?
Thanks!Hannah
In forum: Virtue ThemeIn reply to: Add Shortcode support for Cyclone slider?
In forum: Virtue ThemeIn reply to: Mobile Menu zoom and class
In forum: Virtue ThemeIn reply to: portfolio navigation and other portfolio issues
Ben,
Not sure how to assign an image to each type. Each post in the portfolio category/type has an image. What do you mean to click the edit link for each type? Maybe a screen shot would help.I have several different categories in my portfolio. Only one links correctly.
Thanks.
Linda
In forum: Virtue ThemeIn reply to: Main Menu Alignment and Hover Effect
In forum: Virtue ThemeIn reply to: Display Products by Category/Tag
In forum: Pinnacle ThemeIn reply to: Problem updating to v1.5.7 – theme broken!
Hi, Thanks, the newest version is now in my account, but I thought I would give the update another try after making a few changes in php.ini. Even though I made a few changes, I still cant update normally.
I changed the following in the file: /apache2.4.17/bin/php.ini:
it was =120 , I changed to: max_execution_time = 300
it was =128M, I changed to: memory_limit = 256M
it was =8M , I changed to: post_max_size = 64M
it was =2M , I changed to: upload_max_filesize = 64M
it was =20 , I changed to: max_file_uploads = 100
I also changed in the multisite superadmin dashboad in the network settings the Max Upload File Size from 1500 K to: Max upload file size 8000 K.I am having the same problem doing the upgrade, it gives me the error message; at least this time the new version of Pinnacle got downloaded in the folder wp-content > upgrade > download-y70klo. So I just copied the files in that download-y70klo folder to the wp-content > themes > pinnacle_premium folder. And now all is OK.
Would you know if there are other files or other settings I should have changed, or other values?In forum: Pinnacle ThemeHi,
I have tried to embed a form from convertkit. They give an embed code, which is one line of javascript. This is the code: <script src=”*Login to see link
I’ve tried to embed it through the pagebuilder (meaning I had a block dedicated just to this form), clicking on the tab ‘text’, pasting the code and updating to save it. This is the weird thing: when I am logged in as admin, and I go to the homepage, I do see the form. When I am logged out, it just doesn’t appear. I e-mailed convertkit about it, and this is what they said:
Hey Paulien!
Something is going on with the way your plugin is accepting the form code. When I use “Inspect Element,” I don’t see the HTML or JS for our form at all (see screenshot).
Does your plugin offer support that could help you understand this?
So this is why I’m posting this here. Please help!
Thank you in advance,
PaulienIn forum: Virtue ThemeIn reply to: portfolio navigation and other portfolio issues
January 9, 2016 at 6:20 am #74925A category grid page would show all of the type you make in portfolio > types. Just make sure you assign an image to each type. You have to click the edit link for each type.
If a posts shares any category then they would link to each other. Are you making sure each post has it’s completely separate type?
Ben
In forum: Virtue ThemeIn reply to: portfolio navigation and other portfolio issues
In forum: Virtue ThemeIn reply to: website images and sliders not working
In forum: Virtue ThemeIn reply to: page speed Insight fail
January 9, 2016 at 4:54 am #74888Ok, did you see how this works fine on the theme demo?
On your site everytime there is “There was a problem with the request. Please try again later.”
My guess is with permissions on your server or something on your server blocking these files from being loaded properly for google. Have you contacted your host?There is nothing inside the theme that would do this and you can test on the demo sites or anyone else’s site posted on these forums google isn’t blocked. It’s something specific to your setup. Which makes it best to contact your host.
Ben
In forum: Virtue ThemeIn reply to: Remove Images from Post Blog Carousel
Hannah and Ben, thank you for your replies!
Ben, thank you very much, and with extra addition of this code:.blog_carousel .blog_item {
min-height: 250px;
max-height: 250px;
}looks lovely.
***
Ben, there is a typo in RU localization. The button After should say “Следующий”, while it’s saying “Слеудющий”. I’ve tried this to fix it:.kad-post-navigation .kad-next-link a:after {content: ‘Следующий’;}
but it added the word instead of replacing it. How can I replace the word?
***
” The next and previous posts buttons should just lead to the next post regardless of category.”
And now it does work like that, so weird, as me and other people too were trapped in a very limited number of posts at some point when using those arrows, but i can’t get same behavior again. Well, for better..***
Ben, I assume I should move this in the child theme content-single.php<?php wp_link_pages(array(‘before’ => ‘<nav class=”pagination kt-pagination”>’, ‘after’ => ‘</nav>’, ‘link_before’=> ‘<span>’,’link_after’=> ‘</span>’)); ?>
<?php if(isset($virtue_premium[‘show_postlinks’]) && $virtue_premium[‘show_postlinks’] == 1) {get_template_part(‘templates/entry’, ‘post-links’); }?>. But I can’t figure to where exactly.. Could you please point out after which line? Below is the full code for the page. (i will send a second batch of beer credits within a month..:)
Alesya.
<?php if(kadence_display_sidebar()) {$slide_sidebar = 848;} else {$slide_sidebar = 1140;}
global $post, $virtue_premium; $headcontent = get_post_meta( $post->ID, ‘_kad_blog_head’, true );
if(empty($headcontent) || $headcontent == ‘default’) {
if(!empty($virtue_premium[‘post_head_default’])) {
$headcontent = $virtue_premium[‘post_head_default’];
} else {
$headcontent = ‘none’;
}
}
$height = get_post_meta( $post->ID, ‘_kad_posthead_height’, true ); if (!empty($height)) $slideheight = $height; else $slideheight = 400;
$swidth = get_post_meta( $post->ID, ‘_kad_posthead_width’, true ); if (!empty($swidth)) $slidewidth = $swidth; else $slidewidth = $slide_sidebar;
if ($headcontent == ‘carousel’) { ?>
<section class=”postfeat carousel_outerrim loading”>
<div id=”post-carousel-gallery” class=”fredcarousel fadein-carousel” style=”overflow:hidden; height: <?php echo esc_attr($slideheight);?>px”>
<div class=”gallery-carousel kad-light-wp-gallery initimagecarousel” data-carousel-container=”#post-carousel-gallery” data-carousel-transition=”300″ data-carousel-auto=”true” data-carousel-speed=”7000″ data-carousel-id=”postimgcarousel”>
<?php
$image_gallery = get_post_meta( $post->ID, ‘_kad_image_gallery’, true );
if(!empty($image_gallery)) {
$attachments = array_filter( explode( ‘,’, $image_gallery ) );
if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_url = wp_get_attachment_url($attachment , ‘full’);
$image = aq_resize($attachment_url, null, $slideheight, false, false);
if(empty($image)) {
$image = array();
$image[0] = $attachment_url;
$image[1] = 400;
$image[2] = $slideheight;
}
echo ‘<div class=”carousel_gallery_item” style=”float:left; margin: 0 5px; width:’.esc_attr($image[1]).’px; height:’.esc_attr($image[2]).’px;”>’;
echo ‘‘;
echo ‘‘;
echo ‘</div>’;
}
}
} else {
$attach_args = array(‘order’=> ‘ASC’,’post_type’=> ‘attachment’,’post_parent’=> $post->ID,’post_mime_type’ => ‘image’,’post_status’=> null,’orderby’=> ‘menu_order’,’numberposts’=> -1);
$attachments = get_posts($attach_args);
if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_url = wp_get_attachment_url($attachment->ID , ‘full’);
$image = aq_resize($attachment_url, null, $slideheight, false, false);
if(empty($image)) {
$image = array();
$image[0] = $attachment_url;
$image[1] = 400;
$image[2] = $slideheight;
}
echo ‘<div class=”carousel_gallery_item” style=”float:left; margin: 0 5px; width:’.esc_attr($image[1]).’px; height:’.esc_attr($image[2]).’px;”>’;
echo ‘‘;
echo ‘‘;
echo ‘</div>’;
}
}
} ?>
</div> <!–post gallery carousel–>
<div class=”clearfix”></div>
</div> <!–fredcarousel–>
</section>
<?php } else if ($headcontent == ‘shortcode’) { ?>
<div class=”sliderclass”>
<?php $shortcodeslider = get_post_meta( $post->ID, ‘_kad_post_shortcode’, true );
if(!empty($shortcodeslider)) { echo do_shortcode( $shortcodeslider ); } ?>
</div><!–sliderclass–>
<?php } ?>
<div id=”content” class=”container”>
<div id=”post-<?php the_ID(); ?>” class=”row single-article” itemscope=”” itemtype=”http://schema.org/BlogPosting”><div class=”main <?php echo kadence_main_class(); ?>” id=”ktmain” role=”main”>
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<?php if ($headcontent == ‘flex’) { ?>
<section class=”postfeat”>
<div class=”flexslider kad-light-wp-gallery kt-flexslider loading” style=”max-width:<?php echo esc_attr($slidewidth);?>px;” data-flex-speed=”7000″ data-flex-anim-speed=”400″ data-flex-animation=”fade” data-flex-auto=”true”>
<ul class=”slides”>
<?php
$image_gallery = get_post_meta( $post->ID, ‘_kad_image_gallery’, true );
if(!empty($image_gallery)) {
$attachments = array_filter( explode( ‘,’, $image_gallery ) );
if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_url = wp_get_attachment_url($attachment , ‘full’);
$caption = get_post($attachment)->post_excerpt;
$image = aq_resize($attachment_url, $slidewidth, $slideheight, true);
if(empty($image)) {$image = $attachment_url;}
echo ‘‘;
}
}
} else {
$attach_args = array(‘order’=> ‘ASC’,’post_type’=> ‘attachment’,’post_parent’=> $post->ID,’post_mime_type’ => ‘image’,’post_status’=> null,’orderby’=> ‘menu_order’,’numberposts’=> -1);
$attachments = get_posts($attach_args);
if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_url = wp_get_attachment_url($attachment->ID , ‘full’);
$image = aq_resize($attachment_url, $slidewidth, $slideheight, true);
if(empty($image)) {$image = $attachment_url;}
echo ‘‘;
}
}
} ?></div> <div class=”clearfix”></div>
</div>
<!–Flex Slides–>
</section>
<?php } else if ($headcontent == ‘carouselslider’) { ?>
<section class=”postfeat”>
<div id=”imageslider” class=”loading”>
<div class=”carousel_slider_outer fredcarousel fadein-carousel” style=”overflow:hidden; max-width:<?php echo esc_attr($slidewidth);?>px; height: <?php echo esc_attr($slideheight);?>px; margin-left: auto; margin-right:auto;”>
<div class=”carousel_slider kad-light-wp-gallery initcarouselslider” data-carousel-container=”.carousel_slider_outer” data-carousel-transition=”600″ data-carousel-height=”<?php echo esc_attr($slideheight); ?>” data-carousel-auto=”true” data-carousel-speed=”9000″ data-carousel-id=”carouselslider”>
<?php $image_gallery = get_post_meta( $post->ID, ‘_kad_image_gallery’, true );
if(!empty($image_gallery)) {
$attachments = array_filter( explode( ‘,’, $image_gallery ) );
if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_url = wp_get_attachment_url($attachment , ‘full’);
$image = aq_resize($attachment_url, null, $slideheight, false, false);
$caption = get_post($attachment)->post_excerpt;
if(empty($image)) {$image = array($attachment_url,$slidewidth,$slideheight);}
echo ‘<div class=”carousel_gallery_item” style=”float:left; display: table; position: relative; text-align: center; margin: 0; width:auto; height:’.esc_attr($image[2]).’px;”>’;
echo ‘<div class=”carousel_gallery_item_inner” style=”vertical-align: middle; display: table-cell;”>’;
echo ‘‘;
echo ‘‘;
echo ‘‘; ?>
</div>
</div>
<?php } } }?>
</div></div>
</section>
<?php } else if ($headcontent == ‘video’) { ?>
<section class=”postfeat”>
<div class=”videofit” style=”max-width:<?php echo esc_attr($slidewidth);?>px; margin:0 auto;”>
<?php $video = get_post_meta( $post->ID, ‘_kad_post_video’, true ); echo do_shortcode($video); ?>
</div>
</section>
<?php } else if ($headcontent == ‘image’) {
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,’full’ ); //get full URL to image (use “large” or “medium” if the images too big)
$image = aq_resize( $img_url, $slidewidth, $slideheight, true, false); //resize & crop the image
if(empty($image[0])) {$image[0] = $img_url; $image[1] = null; $image[2] = null;}
if($image) : ?>
<div class=”imghoverclass post-single-img” itemprop=”image” itemscope itemtype=”https://schema.org/ImageObject”>
” rel-data=”lightbox” class=””>
” itemprop=”contentUrl” alt=”<?php the_title(); ?>” />
<meta itemprop=”url” content=”<?php echo esc_url($image[0]); ?>”>
<meta itemprop=”width” content=”<?php echo esc_attr($image[1])?>px”>
<meta itemprop=”height” content=”<?php echo esc_attr($image[2])?>px”>
</div>
<?php endif; ?>
<?php } ?>
<?php get_template_part(‘templates/entry’, ‘meta-date’); ?>
<header>
<?php if(kadence_display_post_breadcrumbs()) { kadence_breadcrumbs(); } ?>
<h1 class=”entry-title” itemprop=”name headline”><?php the_title(); ?></h1>
<?php get_template_part(‘templates/entry’, ‘meta-subhead’); ?>
</header>
<div class=”entry-content clearfix” itemprop=”description articleBody”>
<?php the_content(); ?>
</div>
<footer class=”single-footer”>
<?php $tags = get_the_tags(); if ($tags) { ?> <span class=”posttags”><i class=”icon-tag”></i> <?php the_tags(”, ‘, ‘, ”); ?> </span><?php } ?><?php $authorbox = get_post_meta( $post->ID, ‘_kad_blog_author’, true );
if(empty($authorbox) || $authorbox == ‘default’) { if(isset($virtue_premium[‘post_author_default’]) && ($virtue_premium[‘post_author_default’] == ‘yes’)) { virtue_author_box(); }}
else if($authorbox == ‘yes’){ virtue_author_box(); } ?>
<?php $blog_carousel_recent = get_post_meta( $post->ID, ‘_kad_blog_carousel_similar’, true );
if(empty($blog_carousel_recent) || $blog_carousel_recent == ‘default’ ) { if(isset($virtue_premium[‘post_carousel_default’])) {$blog_carousel_recent = $virtue_premium[‘post_carousel_default’]; } }
if ($blog_carousel_recent == ‘similar’) { get_template_part(‘templates/similarblog’, ‘carousel’); }
else if($blog_carousel_recent == ‘recent’) {get_template_part(‘templates/recentblog’, ‘carousel’);} ?><?php wp_link_pages(array(‘before’ => ‘<nav class=”pagination kt-pagination”>’, ‘after’ => ‘</nav>’, ‘link_before’=> ‘<span>’,’link_after’=> ‘</span>’)); ?>
<?php if(isset($virtue_premium[‘show_postlinks’]) && $virtue_premium[‘show_postlinks’] == 1) {get_template_part(‘templates/entry’, ‘post-links’); }?><meta itemprop=”dateModified” content=”<?php echo esc_attr(get_the_modified_date()); ?>”>
</footer>
<?php comments_template(‘/templates/comments.php’); ?>
</article>
<?php endwhile; ?>
</div>In forum: Virtue ThemeIn reply to: Security Warning / Suspicious Code in 2 files
January 9, 2016 at 4:35 am #74878Hey,
Either manually or you can add a testimonial form that would allow people to create a testimonial post.You can add a form by clicking the virtue shortcodes button.
What site are you talking about seeing?
Ben
In forum: Virtue ThemeIn reply to: page speed Insight fail
BEN
Thanks for your reply.
I prepared demo site.
Only installed default wordpress. it’s Initial state
1 post(Hello World) and no images and default plug-ins installed.
1st,Twenty Fifteen theme be installed this site.
Mobile Friendry Test and PageSpeedInsight was success.2nd,Virture premium theme insytalled.
Test was fail.Hiroyuki
In forum: Pinnacle ThemeIn reply to: Troubles after upgrade
I should have a notification in the admin area saying that you have updates ready. But I don’t have such a message.
But today I could download 1.5.7 from my account here.
I will try to update the theme manually.
The pictures are missing on all pages they using the template picture in post.
Example: http://r.guba.at/sandra/I hope after updating the theme to 1.5.7 the problem is gone.
Roman
In forum: Pinnacle ThemeIn reply to: Troubles after upgrade
January 8, 2016 at 11:14 pm #74847You should be able to update to 1.5.7 once you get to 1.5.4 the update api changed in 1.5.4
Where are you losing imageS? What page? how are they added? please post a link?
Ben
In forum: Virtue ThemeIn reply to: Unable to order in Portfolio
January 8, 2016 at 10:40 pm #74835Hey,
You can add a custom menu order using the post attributes order number in each post.Else you can use the portfolio grid page and set your order by date as Kevin suggested.
Ben
In forum: Pinnacle ThemeIn reply to: Forcing 'Latest Blog Posts' position on Homepage
January 8, 2016 at 10:15 pm #74831Hey,
You can add this css:.home_blog .blog_item .postcontent { min-height: 268px; }Ben
-
AuthorSearch Results


