285 comments found.
hey, love your template. could you tell me the name of the font wich u used in the INSPIRATION template ?
Hi thanks for purchasing applique, the headings use Playfair Display and the body/paragraph use Source Sans Pro
Thx 

hey, love your template. could you tell me the name of the font wich u used in the INSPIRATION template ?
Hi thanks for purchasing applique, the headings use Playfair Display and the body/paragraph use Source Sans Pro
Hi. My search won’t work, and I don’t know why. See: www.benyasuwan.dk
i see several errors in your site, it may caused by a plugin. please deactivate plugins that dont come from the theme package to see which one caused it. if the problem still persists after you do this please send me your admin panel to dahz[at]daffyhazan.com
Hi, Is it possible to tell me the logo font for the outfit demo. Thanks
Hi, Yes its possible, we use Josefin Sans Bold font type, if you want to download this font this is the link to it https://www.fontsquirrel.com/fonts/josefin-sans
Warm Regards,
Hello, I haven’t used the child theme because I don’t know what it was so I used early the base theme with the demo of fashion applique website for my website. It was correct ? Do I have a problem when updated? I’m a little worried about it. I know a little bit about that. Thanks you
Hi theoverview. I totally recommend you to use Child Theme if you are modifying core code. You can learn about child theme here : http://support.daffyhazan.com/knowledgebase/applique-child-theme/ If do not edit anything inside theme files, you can use parent theme. Warm regards,
Okay thank’s you, so I just edit with “customization” and “dashboards” but I haven’t touched the code so i can stay with the parent theme.
yes, we have export import feature for customizer so you can backup your customization without the use of child theme.
Where can I find the code of the floating social icons placement? I have checked everything and can’t find anything with social icons.. I need it because i want to display the social icons more places
Hi zzbeck. You can customize this function into your child theme functions.
function df_social_account() {
$facebook = get_theme_mod( 'df_facebook', '#' );
$twitter = get_theme_mod( 'df_twitter', '#' );
$instagram = get_theme_mod( 'df_instagram', '#' );
$pinterest = get_theme_mod( 'df_pinterest', '#' );
$bloglovin = get_theme_mod( 'df_bloglovin', '#' );
$gplus = get_theme_mod( 'df_google_plus' );
$tumblr = get_theme_mod( 'df_tumblr' );
$youtube = get_theme_mod( 'df_youtube' );
$dribble = get_theme_mod( 'df_dribble' );
$soundcloud = get_theme_mod( 'df_soundcloud' );
$vimeo = get_theme_mod( 'df_vimeo' );
$linkedln = get_theme_mod( 'df_linkedln' );
$rss = get_theme_mod( 'df_rss' );
/* Print HTML Social Connect */
$html = '<div class="df-social-connect">';
/* facebook */
if ( $facebook != '' ) {
$html .= '<a class="df-facebook" href="' . esc_url( $facebook ) . '" target="_blank"><i class="fa fa-facebook" /><span class="social-text">Facebook</span></a>';
}
/* twitter */
if ( $twitter != '' ) {
$html .= '<a class="df-twitter" href="' . esc_url( $twitter ) . '" target="_blank"><i class="fa fa-twitter" /><span class="social-text">Twitter</span></a>';
}
/* instagram */
if ( $instagram != '' ) {
$html .= '<a class="df-instagram" href="' . esc_url( $instagram ) . '" target="_blank"><i class="fa fa-instagram" /><span class="social-text">Instagram</span></a>';
}
/* pinterest */
if ( $pinterest != '' ) {
$html .= '<a class="df-pinterest" href="' . esc_url( $pinterest ) . '" target="_blank"><i class="fa fa-pinterest" /><span class="social-text">pinterest</span></a>';
}
/* bloglovin */
if ( $bloglovin != '' ) {
$html .= '<a class="df-bloglovin" href="' . esc_url( $bloglovin ) . '" target="_blank"><i class="fa fa-heart" /><span class="social-text">Bloglovin</span></a>';
}
/* gplus */
if ( $gplus != '' ) {
$html .= '<a class="df-gplus" href="' . esc_url( $gplus ) . '" target="_blank"><i class="fa fa-google-plus" /><span class="social-text">Google+</span></a>';
}
/* tumblr */
if ( $tumblr != '' ) {
$html .= '<a class="df-tumblr" href="' . esc_url( $tumblr ) . '" target="_blank"><i class="fa fa-tumblr" /><span class="social-text">Tumblr</span></a>';
}
/* youtube */
if ( $youtube != '' ) {
$html .= '<a class="df-youtube" href="' . esc_url( $youtube ) . '" target="_blank"><i class="fa fa-youtube" /><span class="social-text">Youtube</span></a>';
}
/* dribble */
if ( $dribble != '' ) {
$html .= '<a class="df-dribble" href="' . esc_url( $dribble ) . '" target="_blank"><i class="fa fa-dribbble" /><span class="social-text">Dribble</span></a>';
}
/* soundcloud */
if ( $soundcloud != '' ) {
$html .= '<a class="df-soundcloud" href="' . esc_url( $soundcloud ) . '" target="_blank"><i class="fa fa-soundcloud" /><span class="social-text">Soundcloud</span></a>';
}
/* vimeo */
if ( $vimeo != '' ) {
$html .= '<a class="df-vimeo" href="' . esc_url( $vimeo ) . '" target="_blank"><i class="fa fa-vimeo" /><span class="social-text">Vimeo</span></a>';
}
/* linkedln */
if ( $linkedln != '' ) {
$html .= '<a class="df-linkedln" href="' . esc_url( $linkedln ) . '" target="_blank"><i class="fa fa-linkedin" /><span class="social-text">Linkedin</span></a>';
}
/* rss */
if ( $rss != '' ) {
$html .= '<a class="df-rss" href="' . esc_url( $rss ) . '" target="_blank"><i class="fa fa-rss" /><span class="social-text">RSS</span></a>';
}
$html .= '</div>'; // end .df-social-connect
return $html;
}
More Reference : http://support.daffyhazan.com/knowledgebase/applique-child-theme/
Warm regards,
Hello, at first i want to say thank you for this wonderful theme!
I wonder if it is possible for a post, to be as wide as your “Typography site” http://dahz.daffyhazan.com/applique/summer/typography/ ?? So that images and text are full width?
The normal “full width post” is really small, if use without sidebar, the pictures are even smaller as the headline. Is it possible to change this on any way so that “full width” is wider? 
Thank you so much for your help! 
Hi summerbirdnerd.
If you are looking for full width layout for your single post ( with no sidebar ) , this requires file editing.
Has been written here -> http://support.daffyhazan.com/knowledgebase/how-to-make-full-width-sidebar-less-single-post-page/
Let me know your update.
Warm regards,
Thank you so much! That’s exactly what I search for!
Have a nice week! 
Hi. I really want to show an ad only after the first post, and have tried to modify the index.php code to do that, but it won’t work for me. Can you help me how to modify the code?
Hi zzbeck.
Use this index.php
https://gist.github.com/runtuboy/18e5245aff9e9f0b2a43485fdb845606Take a look on this piece of code :
<h1>HTML CODE</h1>
Simply replacing with your ads code.
Warm regards,
Hm, this adds the ad after every post 
Hi zzbeck. I have tested the code, the ads code will be displayed after first post on the homepage. If the ads code was showing multiple time. Please open topic here : http://support.daffyhazan.com/forums/applique/ ( Provide any details of your website ) Warm regards,
Hi! the size of the picture on my banner widget changes in my mobile screen. how am I going to fix it? I want it to be just square.
Hi iamziano. You may try this css code :
@media only screen and (max-width: 768px) {
.df-banner-widget {
width: 240px !Important;
}
}
Warm regards,
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
where am I gonna put it? in the custom css? also, I lost my share buttons on my posts? how am I gonna restore it?
sorry for the flood comment.. my connection is pretty messed up
No worry, there is why Flag Button exists
From your dashboard, navigate to Appearance > Customizer > Custom CSS.
thanks, but how about the the sharing buttons?
i tried pasting the code on the css custom but nothing happened
Hi iamziano. Please message me your website url / wp-admin username / wp-admin password ( administrator role ) via contact form on my profile page. About Share Button on single post, normally, you can turning on or off here -> Customizer > Post Settings > Hide Shares Warm regards,
Hi! @dahz_support, Just sent the infos you need. I was so busy these past few days. sorry for the late reply.
Hi! how am I going to link my accounts to the social media icons on the left portion of my site?
Hi there.
To adjust social media link on the left floating area, you can do it from Appearance > Customizer > Social Account & Misc
Fill link on the related social media field. ( Facebook, Twitter .. )
Warm regards,
Hi! I can’t upload my plug in please help me… Whenever I upload it, I am getting an error. here is the error: The package could not be installed. The theme is missing the style.css stylesheet.
I solve it myself. nvm
Hi Iamziano. Sorry for the late reply as we are out of the weekend.
Did you mean ‘Upload Themes’ ?
For those who have the same issue, please refer to this link https://help.market.envato.com/hc/en-us/articles/202821510
Let me know if you have more questions.
Warm regards,
2 questions:
1 – On monile there is a little “envelope” on the top right, besides the search bar. How can I setup this icon to go to contact? For now if someone click nothing happnes.
2 – © 2016 Rachel Apollonio Todos os Direitos Reservados. | by WebiWebi+ & @rgoldoni – We would like to add link to “WebiWebi+” on the footer, but even when a code is inserted it does not change to link. How can we fix that?
Thanks! Renato
link: http://rachelapollonio.com.br/ pass: webiwebi
Hi webiwebi.
1.
You need to edit php file to achieve this request.
Read this article first : http://support.daffyhazan.com/knowledgebase/how-to-translate-your-website-in-wordpress-dashboard/
Navigate to this path :
applique\templates\headers\main-header.php:
Edit this part of code :
<a href="#" class="mobile-subs"><i class="ion-ios-email-outline" /></a>
New Code :
<a href="YOUR URL" class=""><i class="ion-ios-email-outline" /></a>
2.
Edit this file too :
applique\templates\footers\copyright.php:
Edit this part of code :
<div class="siteinfo">
<?php if ( $footer_text == '' ): ?>
<p><?php echo sprintf( '%1$s %4$s %3$s %2$s', esc_html__( 'Copyright © ', 'applique' ) . '<span itemprop="copyrightYear">' . date( 'Y' ) . '</span>', get_bloginfo( 'name' ) . '.', esc_html__( 'All Rights Reserved.', 'applique' ), '<span itemprop="copyrightHolder">DAHZ</span>' ); ?></p>
<?php else : ?>
<?php echo do_shortcode( $footer_text ); ?>
<?php endif ?>
</div><!-- end of site info -->
New Code :
<div class="siteinfo"> ...... </div><!-- end of site info -->
Replace ….. with your html code with link to your website.
Warm regards,
On mobile number 1 still not working on mobile, test: http://rachelapollonio.com.br/
Hi webiwebi.. Sorry for the delay ( i’m so sorry ) .. Please review this code
<a href="YOUR URL" class=""><i class="ion-ios-email-outline" /></a>Make sure class is empty, not mobile subs. Warm regards,
hello, my Featured Area even enabled won’t work (no slider, no grid). It doesn’t appear at all, even I chose proper category and checked post image sized, went the same path as documentation says. What can I do? Pls help me out.
Hi anula87. Slider will be showed if this option has been selected. Settings > Reading > Front page displays > Your Latest Post. Best regards,
Thanks a lot, now it works;]
Hi! I have a pre-purchase concern. Before I start, I would like you to know that I am a super newbie here.
I checked your demos and I love the outfit demo, but I want to have a slider header like in the menswear demo… Is it possible for me to have an outfit theme but has the header of menswear?
I don’t know what is it called. it’s either banner or header. not sure
Hi iamziano. Thanks for your questions.
You can use slider from Menswear Demo ( We called it Featured Area Slider ) to this demo : http://dahz.daffyhazan.com/applique/outfit/ ( We called it Featured Area Grid )
Simply choose this option from our Customizer.
Let me know if you have more queries.
Best regards,
oh wow! thanks for the immediate response. Now I know how to call that thing
WP theme [checked]. All I need is a hosting platform and I’m done XD Big thanks again 
Hi wattsyourwebsite. For sure, no problem. We are using : Autumn Chant. Grab the font here : http://www.dafont.com/autumnchant.font?fpp=100&text=The+Applique Warm regards,
Hi Just opened a ticket to your support area and after insert our url it syas: topic marked as spam.
So lets try here:
Hi,
How can we change the 3 boxs right after the slider?
In our case it is missing one box.
Widgets area? If yes which one?
Thanks,
Renato Goldoni
http://d6b.287.myftpupload.com/Hi webiwebi.
Thanks for your report 
For your current issue, simply follow these steps :
Navigate to Settings > Reading > Front page display > Choose “Your latest posts”
Navigate to Appearance > Widgets. Drag DF Widget – Banner Widget from Available Widgets to Blog – First Column / Blog – Second Column / Third Column.
Let me know your update,
Warm regards,
Hey Dahz, my site colleague likes the two column masonry grid layout but does not like the unequal heights. Can you provide me a code that will make the masonry grid 2 columns but equal height, ala fitRows?
Tried fixing main.js but i get a white screen of death 
Hi lescrz. This issue fall into customization category. ( Yes, there is js and css modification needed ) . You may post your request here : http://support.daffyhazan.com/topic/applique-feature-request/ Warm regards,
hi i never recived the mail to ingress into supported
Hi joanacohen16. I’m so sorry for this incovonience. Can you fill this form, please? http://support.daffyhazan.com/account-recovery/ Warm regards,+
Hi there again, I lose the “Continue Reading” Button on my home page for the post when i switch my site language to another , is there any solution for this ? Thanks
Hi again. Please follow this settings to enable Continue Reading Button.
Go to Settings > Reading > Front Page > Your latest posts
Go to Appearance > Customizer > General Layout > Blog Layout : Choose Standard
Go to Appearance > Customizer > General Layout > Archive Layout : Choose Standard
Go to Appearance > Customizer > General Layout > Post Summary Types > Use Read More Tags
On each post, define read more text.
Warm regards.
Hi Dahz, your method does work, but this become I can only see the “Continue Reading” button on the Standard Layout, how about the other Layout ? . Thanks
Hi again. Please follow this settings to enable Continue Reading Button.
Go to Settings > Reading > Front Page > Your latest posts
Go to Appearance > Customizer > Standard / List / Masonry 2 Columns / Masonry 3 Columns / First Full Grid Layout
Go to Appearance > Customizer > General Layout > Post Summary Types > Excerpt.
Warm regards.
It doesn’t work..and one more thing.. my post’s Topic won’t show in other language..please check out my website.. thanks..
Hi.
please check out my website.. thanks..
Open a topic here : http://support.daffyhazan.com/forums/applique/
Warm regards,
Hi,
We’ve used your already created form in mailchimp plugin and copied the shortcode and put it in the relevant ‘page’, but we still see this error message on the frontend of the site (in the pop up):
MailChimp for WordPress error: There is no form with ID 0, perhaps it was deleted?
We also saw the same error message immediately after installing and setting up the theme. The error still shows even after we put the shortcode which we found in the mailchimp form in admin.
What can we do to fix this? We will appreciate a fast response, this is very urgent.
Thank you!.
Hi charlesfrances. So sorry for the delay as we are out on the weekend. I tried to duplicate the issue on my environment, fortunately, did not found any issue. Can you give your site details via contact form on my profile page, please? Warm regards.
Hi, I am writing from mobile phone and don’t have admin details here. Please see this google search, it seems to be a common issue: https://www.google.co.uk/search?q=There+is+no+form+with+ID+0%2C+perhaps+it+was+deleted%3F&oq=There+is+no+form+with+ID+0%2C+perhaps+it+was+deleted%3F&aqs=chrome..69i57.41410839j0j7&sourceid=chrome&ie=UTF-8
Can you help? Please respond asap, I’m not sure when I can get PC access to send you login details, I’m on the road. If you can use the link above to offer us a solution that will be great. Thanks!
im sorry but i really need to see the issue in your site in case there are compatibility issue with other plugin or any other error that can only be found through inspecting your site.