dinamiko
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi rodrigoriz,
I think that what you need is work with Categories.
first, create categories (MAN, WOMAN…) in Posts / Categories.
then, for each post assign a category.
finally, go to Appearance / Menus and check for your categories in the right column and add your categories to your menu.in FullFolio demo: https://wp.dinamiko.com/demos/fullfolio/
you can see how it works, for example:
https://wp.dinamiko.com/demos/fullfolio/category/nature/Best
Forum: Plugins
In reply to: [DPortfolio] Display category in single projectHi Aineko,
a white screen sometimes means a PHP error but with display errors disabled in your configuration. You need to know what error are you getting.
Best
Forum: Plugins
In reply to: [DPortfolio] Display category in single projectHi Aineko,
in dportfolio / includes / class-dportfolio.php add this function:
public function dportfolio_get_category() { global $post; $terms = get_the_terms( $post->ID, 'dportfolio_categories' ); $content = ''; foreach ($terms as $term) { $content .= '<a href="'. $term->slug .'">'. $term->name .'</a>'; } return $content; }
and then in a theme single.php for example, can be accesed this way:
if ( class_exists( 'DPortfolio' ) ) { echo DPortfolio::instance()->dportfolio_get_category(); }
basically in dportfolio_get_category function you can access all the returned values of get_the_terms https://codex.www.ads-software.com/Function_Reference/get_the_terms
Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi Team Adue,
in single.php, remove this block of code:
<?php if ( has_post_thumbnail() ) { $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?> <!-- slider --> <div class="slider-container"> <div class="slider-bg" style="background: url(<?php echo $url;?>) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;"></div> </div> <!-- /slider --> <?php } ?>
Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi Lars2i,
in the post, click add media and in the dropdown (All media items) select Uploaded to this post. this shows all the images in the post.
FullFolio was designed to show images as gallery, the better approach is upload the images but not insert in the content, this way all images will be below the content and with a masonry layout.
Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi vibrantdigital,
yes this is possible modifying the css in css/main.css
you can change the .item width in @media only screen and (min-width: 996px) {change this:
.item { width: 32.1%; margin-left: 0.5%; margin-right: 0.5%; margin-bottom: 1%; }
for this:
.item { width: 23.8%; margin-left: 0.5%; margin-right: 0.5%; margin-bottom: 1%; }
about the page width, FullFolio was designed to work as a full width theme, but you can try to modify the css too, basically you can change all the parent containers width from percentatges to fixed width.
Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi rodrigoriz,
I don’t understand what ‘tab’ mean (FullFolio doesn’t has tabs),
can you explain it a little more? thanks.Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi rodrigoriz,
I’m going to add this to feature request (I’m going to implement it via Customizer),
but in the meanwhile:date on thumbnails (template-item.php)
delete or comment this line/s:
<p class="date-item"><?php the_time(get_option('date_format')); ?>
title:
<h2><?php the_title();?></h2>
categories:
<p><?php echo $cats_arr;?></p>
the above are for thumbnails, for single (single.php):
title:
<h2><?php the_title();?></h2>
date:
<p class="date-item date-col"><?php the_time(get_option('date_format')); ?>
tags:
<p class="tags">Tags: <?php echo get_the_tag_list();?></p>
Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi wjroberts,
you can change it in Settings / Reading / Blog pages show at most
default is 10Best
Forum: Plugins
In reply to: [DPortfolio] Lightboxcan you post a link where I can see it? thanks
Forum: Plugins
In reply to: [DPortfolio] How to add comments to single portfolio project?Hi MichaelNagval,
DPortfolio doesn’t has a custom template, it uses single.php if exists or index.php if single.php don’t exists.
I think this issue is related to your theme templates, not the plugin itself.
Best
Forum: Plugins
In reply to: [DPortfolio] LightboxHi itvirginia,
I don’t know, but sure there are some lightbox plugins out there,
just find for lightbox in the plugins searchbox ??Best
Forum: Themes and Templates
In reply to: [FullFolio] FullFolio Feature RequestHi jpterodactyl,
as you said, it isn’t implemented for now, maybe in the next version I will implement it, but sure I’m going to add this in feature requests, thanks.
Best
Forum: Plugins
In reply to: [DPortfolio] Pagination in single projectI marked this ticket as resolved, if you like to reopen it in the future, there’s no problem at all ??
Forum: Plugins
In reply to: [DPortfolio] I just want to say thank youthanks Anna ??