195 comments found.
Hi friend. For a while, post hits are wrong. For example, when i checked the Google Analytics, i saw two hundred post hits but the post hits counted only 57. What should i do?
Hi there 
I prepared a test site for you and everything seems fine to me: http://www.burnhambox.com/develop/test-post-for-koray/
Just refresh the page and you’ll see the views number increasing.
Not sure really, but please ensure that you’re using the latest version of our theme and any 3rd party plugin is not causing your issue.
Hi. The test site doesnt work; although i entered different IP’s, it’s still 18. I use the last version.
Hi again,
OK here’s the issue: We just realized that the counter increases if only the visitor logged in. Thank you for letting us know about that. We’re going to launch a fix as soon as possible.
Kind regards, Kerem
Hey,
We realized that it was not related to the logged in or out. It was just because of the cache. If you visit the link again, now you can see the counter is working:
http://www.burnhambox.com/develop/test-post-for-koray/We didn’t change anything. Just disabled the cache plugin.
When posts are added to the header widget, they are displayed again later in the page. I would like to exclude this duplicated content from appearing a second time.
The checkbox in the widget option has no effect: Screenshot: https://d.pr/i/K38EO7
Site screenshot: https://d.pr/i/vJi0k1Can you advise on how to exclude these posts from being duplicated?
Thanks!
Hello 
That checkbox for the “post page”, not the “blog homepage”. That’s why you still view it on your blog homepage.
Please check this page: http://www.burnhambox.com/develop/
This is the blog homepage and you see 3 post widgets in both header and post feed.
But on this post page, you don’t see the first header widget: http://www.burnhambox.com/develop/2018/10/09/listen-to-your-heart/ Because this is the post page of that post widget. You know what I mean?
As far as I see, you inserted those posts into the slider too. So if you wish, you can hide those ones from the feed. To do this, please go to “Appearance > Customize > 5. Slider Settings > 5.5. Blog Posts in Slider” and check “Exclude the Slider Posts From Feed”.
Hope this helps!
Thank you!
hello
at reading options we show 8 posts, that happends is in homepage it shows with big spaces and make a disorder, post are not line up.
https://ibb.co/mVrbHf http://lhespaidebat.com/how can we solve that?
thank you
Hi there,
Could you please try to use the Regenerate Thumbnails plugin to fix your image sizes? Just go to “Tools > Regenerate Thumbnails” on your WordPress admin panel. Please let us know about the result.
we regenerate all the images of the site and nothing happends.
the problem still happends. please how can we fix this?
thank you
we think is something about the order of the news because the 3rd new is under the 2nd new…and it have to be under the 1st.
the div class is clearfix col-1-2-sidebar. But the problem we think is the order of the elemts
OK, could you please go to “Appearance > Customize > 7. Layout Options > 7.6. Listing Style Heights” and set the “Minimum height for Style A item” to 660? This will solve your problem.
now works perfect!
thank you very much
Happy to hear! You’re very welcome 
Hello, sharing on Facebook is giving error. The window does not share the post and gives the message “access denied”.
Hi 
Right now your site gives a general error I think: https://i.imgur.com/vxRXmhS.png
This might be related to your server settings or a 3rd party plugin you’re using.
hello at installing happends this issue with the plugin
Warning: Wrong parameter count for stristr() in /home/bzlrwrrp/public_html/wp-content/plugins/old_q2w3-fixed-widget/q2w3-fixed-widget.php on line 142
how can we solve that
http://lhespaidebat.com/thank you
Hi again,
I prepared a test site for you and everything seems fine: http://www.burnhambox.com/develop/
(The “Meta” widget is fixed.)
Could you please delete the plugin and install again? To delete it, go to “Plugins” section and click “Delete” button right under the “Q2W3 Fixed Widget” title.
I did..and still happends
I understand.
Please see this link: https://wordpress.org/support/topic/error-message-wrong-parameter/
hello! Hunted supports WPML? thank you
Hi
Yes it does.
Please let us know if you have any other questions.
Hi There – Is there a way to make category pages display what is added to the ‘Description’ section that is available when editing the category? I saw on an article that I could add this code to the archives.php page but I’m not sure where to place it. Would that do the trick, and if so, where should I put it? {code type=php}<?php echo category_description( $category_id ); ?>{/code}
Hi 
Yes, we can help you with. But your support period seems to be expired 2 weeks ago. So you should renew it to let us help you.
Please go to your “Downloads” section or the item page to renew your support period. https://themeforest.net/item/hunted-a-flowing-editorial-magazine-theme/16253424
Hi There – I have renewed my support. Please let me know what I can do in order to display content above my posts on category pages. My goal is to tell a bit about my podcast (text and images) above the latest posts in that category (this page to be exact: https://reasonabletheology.org/podcasts/). My thought is to be able to make use of the Description section when editing a category, but whatever you think is best and would get the job done. Thank you!
Hi again 
Yes, the description field on category edit page is the best option. Please follow the steps below:
1. Go to “Appearance > Editor” and open archive.php file from the right hand side.
2. In archive.php, search for the line below:
<div class="wrapper clearfix">
3. Add the following code AFTER the line above:
<?php
$obj = get_queried_object();
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
if ( $obj->description && $paged == 1 ) { ?><div class="home-excerpt fs16 hunted-font-2 clearfix mb20"><?php echo esc_attr( $obj->description ); ?></div>
<?php } ?>
4. Save the file and you should see the descriptions on the first page of each category.
Let us know about the result please.
Thank you. This has allowed me to insert plain text onto my category page. However, any HTML formatting such as bold text, links, images, or short codes are just showing strings of code instead on the live site. Are there any adjustments we can make to be able to format the text, add images, etc? Thanks again for your help.
Ah sorry! Just replace the part below:
esc_attr( $obj->description );
With the one below:
wp_kses_post( $obj->description );
This will do the trick!
Thank you! That seemed to do the trick. Shortcodes do not want to work still – any thoughts on that? If that is not a possibility for some reason on category pages that is okay – I can work around that. Thanks for your help!
You’re very welcome!
Well, I tried the solutions below, with no luck:
https://wordpress.stackexchange.com/questions/232411/how-get-a-shortcode-working-in-category-description/232418https://webgilde.com/en/shortcode-not-working-category-description/
https://generatepress.com/forums/topic/add-shortcode-to-category-description/
These sources belong to 2016 and 2017, so maybe the newest version of WordPress does not support it. I’m really not sure because couldn’t find an official documentation about that.
I also found this plugin: https://wordpress.org/plugins/enable-shortcodes-inside-widgetscomments-and-experts/
Haven’t tested it and can not guarantee that it will work.
On the other hand, these practices probably remove the wp_kses_post part of the code I’ve provided. And this may cause security problems. So I’d suggest you to not to use any shortcodes in descriptions, if it’s not mandatory for you.
No problem – I can make do without using short codes on those pages. Appreciate your help on this!
Happy to hear
Let us know if you have any other questions.
Hi, I just bought and installed your theme. Really nice one.Will come up with questions when needed…
Good to hear! 
Hi, I now have a question
I want to build the homepage with the widgets and I set the homepage as Static page. How can I add the home widgets to the home page now?
Thanks
Hi 
Normally those widgets are only for blog homepage but still, we can guide you how to do it. But it seems you have bought our theme without support package at $15, I guess.
In order to get 6 months of support, you should buy the support package at the current price. Please visit your Downloads section on ThemeForest, or the item page of Hunted. There you should see the instructions to get the support package.
Thank you for your understanding!
Hello, I would like to change the style of the featured images in the theme. for the attached model. Can you help me about it?
New model: http://j1diario.com.br/temp/Tela.jpg
Hi 
Please follow the steps below:
1. Go to “Appearance > Customize > 5. Slider Settings > 5.6. Slider Style” and choose “Style C”.
2. In the same part, check the “Center Text for StyleB and C” box.
3. Then navigate to “Appearance > Customize > Additional CSS” and add the following CSS:
.slide-text-outer { width: 400px; margin: 0 auto; }
.slider-header { font-size: 25px; }
That will do the trick.
Hi, i just instal this theme on my site. can i instal it again on my sub-domain? Thanks
Hi
Yes, you can. Subdomains are included in 1 regular license. If you’ll install it on a different domain at the same time, then you should buy one more license.
Thanks then 
You’re welcome!
May I know is it possible to change the position of the menu? I saw that in the demo homepage, there’s a bar under menu item: featured, hot, treading. May I change these buttons into other custom links? Thanks.
Hi there 
Yes it’s possible. And yes, you can easily change that buttons.
Please let us know if you have any other questions.
Buy it, i love it! One Question:
Is it possible a backspace on single post (excerpt).
See what i mean, now:
This is an excerpt. This is a Test.
What i will:
This is an excerpt.
(blank!!)
This is a Test.
Another Question:
Is ist possible the “Inline-Related-Post” not after the excerpt, rather paragraph (x)?
Hi 
1. First, please ensure that the “Excerpt” field is available on “Edit Post” screen. Just see the button named “Screen Options” at the top right of the screen. Click it, then check the “Excerpt” box. Now scroll down the page and you’ll see a text field has appeared which has the title “Excerpt”. And write it like that:
This is an excerpt.<br /><br />This is a Test.
2. For now, “Authorized Posts” (Inline-Related Posts) part is only comes right after the excerpt. But thanks for the suggestion. We may consider adding a feature to set its place in the future.
Please let us know if you have any other questions.
Thank!
2. Please add this feature, this is great 
Hi – Is it possible to display posts of a certain category on a non-category page? I have found some plugins to do this, but none of them display the posts in the same style. Essentially I want to pull in recent posts from my podcast category and show those posts in the same style (photo, title, description) as on a standard category page.
Hi there 
You need to create a page template for that. But this customization is beyond the support limits. If you wish, we can do it for a small fee. When we’re done, you’ll have an additional section on your customizer which you can set the category and number of posts to show for that template. If you’re interested, please let us know via the contact form on our profile page.
Hi, how can i make that the featured image that shows up in the post, doesnt get resize, i mean, i dont know whats causing that its resizing every featured image in the post itself, any idea? also how the resize works? does the slider use the original file or resize?
Hi 
Please go to “Appearance > Customize > 1. Featured Image Settings” and see the settings over there. Our theme uses those sizes. You can set them as you wish but don’t forget to use Regenerate Thumbnails plugin to let the changes take effect. https://wordpress.org/plugins/regenerate-thumbnails/
For the slider, go to “Appearance > Customize > 5. Slider Settings > 5.1. Slide Image Width & 5.2. Slide Image Height”.
Hi, how can i remove the “Nothing Found” section from my homepage?
https://waasop.com/Hi there 
Please go to “Appearance > Customize > Additional CSS” and add the CSS below:
.home .wrapper { display: none; }
Let us know if you have any other questions.
Also, the instagram widget, stopped working, any idea of this?
Hi again 
All of us waiting for a fix from the plugin author. See: https://wordpress.org/support/topic/sudden-no-images-found/
Hi, is working again, thanks.
One more thing, how can i make the post text, only that text to be a little but bigger, like 2px or more, and change the color of the post links to another one, but only those links, and hide the hamburguer menu from the mobile version cuz right now i only have one page and that menu doesnt work, i will put more pages later but for now i want it to be hidden. thanks
Hi, any idea of how can i do this? thanks
Sorry for late reply!
Please go to “Appearance > Customize > Additional CSS” and add the CSS below:
.article-container .brnhmbx-font-2.fs16 { font-size: 18px; }
This will make your post text 18px instead of 16.
For the links:
.article-content-outer a,
.article-content-outer-sidebar a { color: #0ff; }
.article-content-outer a:hover,
.article-content-outer-sidebar a:hover { color: #ff0; }
You can play with the color values as you wish.
And finally, to hide the mobile menu button:
.brnhmbx-menu-button { display: none !important; }
Let us know if this helps. By the way, you can always submit a ticket on https://burnhambox.ticksy.com to let us help you better and faster.
Thanks!, the support here is amazing!
Hi, the code for the links works, but for the mobile hamburguer menu and the font size of the post is not working, im i doing something wrong?
I’m sorry! My bad. It must be “hunted” instead of “brnhmbx” word. So, the correct CSS is:
.article-container .hunted-font-2.fs16 { font-size: 18px; }
.hunted-menu-button { display: none !important; }
Please let me know about the result.
Hi, how can i add icons to the secondary menu like you have on the demo site?
Hi there 
They are created with FontAwesome. Here’s an example usage:
<i class="fa fa-star" />Your Menu Item
You can find all of the icons over here: https://fontawesome.com/cheatsheet
Please let us know if you have any other questions.
But, where do i put that code? can you explain me? Thanks!
Just go to “Appearance > Menu” and insert it into the “Navigation Label” field like that: https://i.imgur.com/75F2ejv.png
i did that… but its broken, show up, really bad and ugly, not like in your site..
Could you please submit a ticket on https://burnhambox.ticksy.com to let us help you better? Just include your site address too, so we can see what you got right now.
Hi! I would like to know if the theme respects the w3c accessibility rule. they ask me to create a site with this standard w3c (world wide web consortium)
Hi 
Yes, all of our themes are W3C validated. As you may know, themes are already being checked by Envato quality team before they got their places on Envato market.
Please let us know if you have any other questions.
Hi, that’s a great theme, thanks. But there are some bugs, still there… First, “view all” buttons weren’t work and fixed. Thanks… But now, i can’t use the “post type / standart-gallery-video…” Why that’s not working or i can’t?
Hi again Koray 
I prepared a test site for you to check if everything works fine.
Standard Post: http://www.burnhambox.com/develop/2017/08/30/post-9/
Gallery Post: http://www.burnhambox.com/develop/2016/09/22/post-20/
Video Post: http://www.burnhambox.com/develop/2017/08/30/post-22/
So, it seems OK to me. Since when are you having problems with the post types? Could you please show me a post which is not working correctly?
Hi friend. This feature hasn’t worked anytime. I can’t show you because when i chose “video” or “gallery”, nothing happened.
Are you inserting a video into the post for “Video Post” and a gallery for “Gallery Post”? If no, it’s natural to not to see any difference from a “Standard Post”.
Of course i’m inserting but it doesn’t work.
With this featured, when you selected the “gallery post” or “video post”, a little tab opens and you insert there the pictures for gallery or video/embed for video. But in this theme, that tab doesn’t exist. When i insert a video or gallery as you say in the post, i see the featured image on first. But i must see the gallery or video as featured image.
You can see the examples;
for gallery post with inserted gallery:
http://kalemkahveklavye.com/2017/09/kadikoyun-denize-nazir-calisma-alani-idea-kadikoy-aciliyor.htmlfor video post with inserted video:
http://kalemkahveklavye.com/2017/09/levent-tulekin-ilk-kitabi-pitbull-okurla-bulusuyor.htmlFor the gallery post, please go to “Appearance > Customize > 9. Post Format: Gallery > 9.2. Gallery Position” and ensure that “Instead of Featured Image” is selected.
For the video post, I can’t see any video inserted in your post, but still, please ensure that “Show video(s)” is selected in “Appearance > Customize > 10. Post Format: Video > 10.1. Featured Image Options”.
By the way, it seems your support period has ended on July 11. If you need any further help, you should renew your support package. To do that, just go to your “Downloads” section and follow the steps over there.
I think It would be beneficial if we could build up pages with Visual Composer.
The theme itself is AWESOME! But If we could personalize it futher… 5*
Hi
Glad to hear and thanks for the suggestion!
Hey again, probably another stupid question: How can I just get rid of the slider? Thanks!
Hi
It seems your support package has expired on 10/02/2017. You should renew your support period from your Downloads section in order to get help.
On a tight budget. I’ll figure it out 