ThemeForest

Hype Wordpress Theme Blogs, Magazines & Portfolios

  • Bought between 100 and 499 items
  • Has been a member for 6-7 years
studio Purchased

One more question: Does the top featured section of the home page allow for auto-rotating or do you have to only manually advance by clicking on the thumbnails?

If so, how is this set to auto?

Thanks again for all your help. -Tony

luckykind

Hey Tony…

No.. it doesn’t currently auto rotate… the page is setup to showcase your last recent post… if your users aren’t interested in that, they can then thumb over the thumbnail to choose a different post…

I may make this an option in a future update, however I have no time line right now of when that will be…

  • Bought between 100 and 499 items
  • Has been a member for 6-7 years
studio Purchased

No problem. Great theme!

  • Bought between 50 and 99 items
  • Has been a member for 5-6 years
  • United States
ehdesign Purchased

Just wanted to add my two cents to the auto rotating feature on the home page….

That would be a big deal…

  • Bought between 50 and 99 items
  • Has been a member for 5-6 years
  • United States
ehdesign Purchased

I am having two problems when viewing this theme on Internet Explorer.

The pages are all generating an error on line 192, character 62.

I can’t seem to identify what it is.

Also, the mouse overs on the main nav look really poor on IE.

So:

1. Any idea on the errors on the page?

2. Any ideas on why the nav looks poor? And how / where to alter the style?

Thanks.

luckykind

I’m not seeing any errors in IE on the preview version… what pages are you referring to? do you have a url? what version of IE are you using…

I don’t know what “poor” means… it’s rather a general statement… if you need to change styles you can change them inside the styles/master-styles.php file… look for #nav and go from there…

  • Bought between 50 and 99 items
  • Has been a member for 5-6 years
  • United States
ehdesign Purchased

Sir -

Sorry I wasn’t clear.

I am seeing an IE script error on my computer running Windows Vista and IE 8 .

The URL is YogurtonYourown.com

I am seeing errors on line 217 and line 415, character 62

ONLY reported by IE

Also, regarding the NAV , I notice that on IE they are BLACK colored on Mouse over, but in Firefox or Google Chrome, I see a much prettier button on mouse over.

No idea why this might be the case.

Thanks in advance for your help.

I see these same IE errors when browsing your preview page for the theme as well.

Thansk.

luckykind

Ok… the script errors you are seeing on your site can be seen in Firefox as well using the Firebug plugin… I’m guessing they are showing due to the rotating feature section you added or the mail form you added in the footer… either way they are kind of out of my hands as they weren’t included with the theme….

There were no script errors on my preview site in Firefox or IE… if you think your still getting them, please link to a screen shot so I can see what you’re seeing.

The menu is a bug in IE with transparency and really only looks poor in IE using the white menu option… I’m looking into a fix for this (IE is a huge pain in the arse), but the best way for you to fix this right now is to go into the style sheet… do a search for:

#nav > ul > li > a:hover

Included within that style will be:

rgba(1, 1, 1, 0.5) 

change them to:

rgba(1, 1, 1, 1)

to get rid of the transparency…

That should fix the black showing on the white background…

  • Bought between 50 and 99 items
  • Has been a member for 5-6 years
  • United States
ehdesign Purchased

Sir -

Sorry I wasn’t clear.

I am seeing an IE script error on my computer running Windows Vista and IE 8 .

The URL is YogurtonYourown.com

I am seeing errors on line 217 and line 415, character 62

ONLY reported by IE

Also, regarding the NAV , I notice that on IE they are BLACK colored on Mouse over, but in Firefox or Google Chrome, I see a much prettier button on mouse over.

No idea why this might be the case.

Thanks in advance for your help.

I see these same IE errors when browsing your preview page for the theme as well.

Thansk.

  • Bought between 100 and 499 items
  • Has been a member for 6-7 years
studio Purchased

One more question: I was able to change the color on the footer area where it displays the tagline. I was able to change the color of the text, on the home page; but for some reason they aren’t changed anywhere else.

Is there a different place to change the color of this area? If so, where is this located?

Thanks again for your help.

luckykind

Yes… the CSS uses PHP variables to adjust the colors around the site. In the same directory that the master-styles.php file is in, there’s a master.php file… this houses all the color variables… look inside and adjust where needed…

I’d also change back the ones in the master-styles.php…. most likely you removed the variable place holders in there, and you’ll want to change them back to make life easier if you want to change it around in the future. ;)

  • Bought between 100 and 499 items
  • Has been a member for 6-7 years
studio Purchased

One last question, hopefully.

Where in the CSS , can I remove the post date from showing on the home page and on the post pages. Is there a way?

luckykind

You want to search or add this to your CSS :

.post-date { display:none }
  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hi – is it possible to edit the homepage top featured section so that it displays pages rather than posts?

Or, alternatively, can the ‘Read More’ links be edited to point at pages rather than posts?

Apart from that, the theme is great.

Regards

David

luckykind

Thanks mktgdigital for your purchase…

That top section doesn’t currently support pages…

However, one way to get around it would be to open up the homepage.php file…

Inside it is a function called get_featured_main_query

Inside that function is an $args array… you would need to add to it…

'post_type' => 'page'

(make sure you add a comma after it if it’s not the last one…)

Then for each page… if you put it in it’s own category… you can use the category option under the Hype Theme Option Settings under the Appearance Tab in the Admin… and add in those category ID’s…. that should work for you.

Hope that makes since… let me know if you have any other questions… Thanks again!

Default-user

Thanks for the quick reply. I understand all of that except for one thing, how do I give a page a Category. I can do that for posts, and have currently got all the content that I’m showing in that section in their own category, so the content is fixed. But I can’t fathom out how to give a page a category setting.

Ultimately what I am trying to do is to use that section to focus on core content, which looks odd on a blog page. Perhaps I’m trying to go the wrong about fixing that?

luckykind

Damn… forgot that pages don’t have Categories by default…

Not sure how it will work without diving deeper into the code… if you change it without the Category part, does it bring in the last nine pages?

If it does, great… but you may need to post date any additional pages you create in the future before the ones you want set up.

Or, using the default settings, you could make those Pages into Posts… (remove commenting, etc.) give them categories and then use the homepage category options on the backend to set them up.

Default-user

Well, I changed this code:
‘posts_per_page’ => 9, ‘orderby’ => ‘date’, ‘order’ => ‘DESC’, ‘cat’ => $categories

to this:
$args = array( ‘posts_per_page’ => 9, ‘orderby’ => ‘date’, ‘order’ => ‘DESC’, ‘post_type’ => ‘page’

And now the Featured section is showing pages not posts.
To make sure that the right pages are displayed, I will simply need to go in and edit the dates to make sure they are most recent 9 pages created. That is not too much of an issue.

Thanks for your help

David

luckykind

Glad you figure it out…. and you don’t need to go back in each time a new page is created… you just need to make sure the new page you created is older than all of them… ;)

Default-user

:-) Yeah, I figured that out right after submitting my reply

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hello,

I bought you theme and I am configuring it. I’d like to remove the “Gallery” section from the home page. Is this possible ?

Thanks

luckykind

Hi greg,

Thx for your purchase… :)

There’s an option in HYPE Theme Options panel to Hide the Sub Featured section, this would hide all of the sub featured sections.

If you wanted to target the Gallery section only… you need to manipulate the code in the homepage.php file and potential put something it’s place… otherwise you’ll just have a big empty space there…

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
dbbykerk Purchased

Hello Lucky, Thanks for the reply on the other issue ( my own issue ) a few days ago…

I was wondering if it is possible to edit the gallery.

I think this will take editing core files to accomplish the goal.

In a NUTSHELL .

My goal is to have a theme site, the Gallery page will be the Free Themes Page. And the images/video links and drill down would be themes and theme types. example… CSS Wordpress Magento etc etc etc

And once clicked would show all CSS Themes or Wordpress Themes, so on and so on. Exactly how the image and video gallery work now, but different names and more of them.

I think this is an intense request, so if you can extend the theme in this way but need to be on a freelance basis, that is fine. OR it could be a really great theme update.

Anyways, thank you and Social POP is a cool app too. If you need this info for any reason. site is www.themewild.com username: admin passcode: admin

Thanks

luckykind

Hi dbbykerk,

Unfortunately, I’m back logged with projects right now and can’t take on any more side work at this moment in time… Sorry :(

PS – It’s probably unwise to leave username/password on a public forum… I’d recommend changing that ASAP ;)

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hi,

I bought the theme, love the design.

Its a little annoying to have to add three image sizes for each post?

Is there a way for it to automatically select the 1st image in the post and auto resize like Woothemes does using TimThumb?

Thanks

luckykind

You don’t need to add 3 sizes if you use the standard “Set Featured Image”... it sizes them automatically for you… I only added the other option where you add your own for more control for when you use the “Set Featured Image” option sometimes you lose image quality… which isn’t really a big deal for most blogs… but may be for a photo blog.

Default-user

Oh yeah – see that now – doughnut!

Is there a way to remove [latest from the gallery] from the homepage view as I do not currently have a gallery.

Its a shame, [set featured image] is not automatically done as I now have to go through all my posts.

Thanks

luckykind

latest from the gallery can be hidden along with the rest of the sub featured sections in the admin options section…

The image resize for older post is a Wordpress problem as size occurs when the image is uploaded and they haven’t added a way to make it do all past posts…

Default-user

I have set all the past posts to have a featured image.

What seems to be happening on the homepage is when I click one of the small thumbnail images it is swapping out for a full size image and not resizing back to the thumbnail. This is nothing to do with the “featured image”.

Try it at kpopmusic.com

Cheers

luckykind

i did try it… I’m telling you you haven’t reset the images yet on the posts… remove the old ones, upload new ones…

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

I am trying to remove the large image from the post and page headings.

I am trying to remove various bits of the code but not having much luck.

Can you help at all?

Also when I click on one of the small images on the left hand side of the homepage, I get a weird spotlight effect?

url: k.p.o.p.m.u.s.i.c.c.o.m

Thanks Carl

luckykind

If you want customization work… I can do it for an hourly fee (currently $75/hr)... If you’re interested, send me a message through the form on my profile page of what you need done and I’ll send you a quote back… Thx!

Default-user

Hi,

I might want some work done so will contact you.

One of the issues was a coding bug I think?

If you click on one of the images on the left hand side on my homepage, it brings up a another large image in error?

Can you take a look at that please as thats a theme issue not custom request.

Thanks

luckykind

Not a coding error… just that the correct thumb isn’t there as we discussed earlier…

You need to reload the images for those posts, so that they have the correct thumb…

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
  • United States
360Admin Purchased

I downloaded HYPE and tried to upload it through Wordpress Install. It is moving very slow and after waiting quite some time (10 min.) it is getting an error

So, I decided to go the FTP route and when I drag the full zip to themes it will upload, but not show in in Wordpress later as an available theme.

When I tried to pull the “hype” folder out of the zip file (for ftp upload), I get a warning asking if I want a copy of this folder without encryption, a problem is keeping this folder from being encrypted.

This is where I have stopped. Hope you can help me out.

Thanks.

luckykind

Responded to your email… thx! :)

  • Author had a Free File of the Month
  • Bought between 10 and 49 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars

Wow, absolutely love it, spent about an hour looking for a theme for a blog im going to launch and i think i found it.

However, im an absolute WP virgin and will require some minor tweaks etc, how easy is it to set up this theme? And do you provide support if i run into any brick walls?

Fantastic work again, hoping to grab this one! :)

CA

  • Author had a Free File of the Month
  • Bought between 10 and 49 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars

Hi luckykind,

I went ahead and bought this great template, I only have one question! :)

Is it possible to use the gallery header (with lightbox videos etc) on the blog post items?

If not, is it possible to add the ‘About this author’ box to the bottom of the gallery items?

Thanks for a great template.

luckykind

Thanks for your purchase! :) ... if you want to add “Author” to the Videos & Images pages, open up the files called single-hype_videos.php and single-hype_images.php... find this section:

<div id="pb-content-box">    
    &lt;?php the_content(); ?&gt;
</div>

and right below it… paste this:

<div class="clearfix" id="pb-post-author">
    <div class="author-avatar" id="pb-auth-avatar">
        <?php echo get_avatar(get_the_author_meta('user_email'), $size = '64'); ?>
    </div>
    <div id="pb-auth-desc">
        <h4>Author: <?php the_author_link(); ?></h4>
        <p><?php the_author_description(); ?></p>
    </div>
    <div class="clear"></div>
</div>
CreativeAddiction

Worked like a charm, thanks!

Another quick question, im almost finished with the blog but wondered if there was any way to get a ‘search’ bar in the top menu?

Thanks!

CreativeAddiction

Never mind the query above, however, 1 last question…

Is there a way to disable comments on the created pages?

ie. I have created an about page and i don’t want users to be able to comment, or even to see the comment form…

Thanks

luckykind

maybe I’ll add in an easier way to remove them in a future update… but for now… if you go to the page.php file and look for this line:

<?php comments_template(); ?>

If you remove that line it will no longer show comments for pages you create…

CreativeAddiction

Once again that worked like a charm!

Im almost done, just one FINAL request…

Is their any way to show a category description at the top of a post list.

So for instance, if a user is viewing the ‘Misc’ category post list then they would first see the description of the category that i entered when i created it and THEN the post list as it is now…

Hope you can help me sort this :)

Once im done with this ill be sure to rate this 5 stars, it’s been a pleasure to work with!

CreativeAddiction

Hey there, any luck with my request? cheers

CreativeAddiction

Never mind, i figured it out! :)

If anyone else would like to know how its done then here you go (Forgive me if the code is a little ‘Hacky’)

Add the following code to the ‘index.php’ file under line 50.

(unsure why it only works WITH the loop, tried without the loop and nothing was returned…?)

//Hack to add category description to top of category listings
if(is_category()) {
    $get_catdesc = get_the_category();
    foreach($get_catdesc as $the_category) {
        $the_desc = $the_category->description;
    }
    echo "<div class="\\"tag-wrap\" id="\\"pb-breadcrumbs\"><span>$the_desc</span></div>";
}
  • Exclusive Author
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • Sold between 1 and 100 dollars
  • United States

hey,

does this theme support self hosted video?

how about short codes for video plugins?

does it have it’s own player?

if so, can you provide a sample,

thanks!

luckykind

Thanks for your interest….

The theme does support self hosted (tested with .mp4, .swf, .mov)

There’s no video plugin shortcodes or own player for it… just the lightbox example on the gallery pages…

  • Exclusive Author
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • Sold between 1 and 100 dollars
  • United States
CRISPPX Purchased

hi, I have a few questions (awesome Theme)

goo.gl/asmMs

is there any way to disable the homepage from showing up blog posts? besides the top feature slider?

basically I trying to have the latest items from the gallery to populate the homepage with 3 columns and X rows.

however I would like to keep one feature block to showcase a feature item ( from the gallery not from the blog.)

I hope this is possible to do, or can you point in the right direction to do it my self.

thanks!

luckykind

I’m not sure exactly of the question… but it seems like you want to remove the top section on the homepage with the thumbnails… you can disable this through the Hype Theme Admin panel…

  • Exclusive Author
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • Sold between 1 and 100 dollars
  • United States
CRISPPX Purchased

sorry I wasn’t clear enough. :)

I just want to disable 1st and 2nd Featured Small Column.

I want have the Featured Big Column to fill the page.

can you guide on how to do this, I know is not possible from the admin.

thanks.

luckykind

You need to adjust the code in the homepage.php file.. remove the columns/divs for the sections you want removed and then I’m sure you would need to use some CSS to layout the images across the full width of the page/section…

CRISPPX
CRISPPX Purchased

thanks, and how about adding .html to the end of each video or image?

my posts do have the .html extension but I can get the videos and images to have is well. thanks!

luckykind

Not sure at all why you would need a .html extension on your video or images…

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Hi, I’ve just done a fresh install of this theme in WP 3 .2 and for some reason the dropdown menu’s aren’t working?

Any idea what might be causing this?

Thanks Jon

by
by
by
by
by