Discussion on Striking - MultiFlex & Ecommerce Responsive WP Theme

Discussion on Striking - MultiFlex & Ecommerce Responsive WP Theme

Cart 20,183 sales
Well Documented

kaptinlin supports this item

Supported

4684 comments found.

Hi,

Love the theme. It’s amazingly configurable. You thought of everything.

I have a question, though. When I turned on the WordPress Built-In Menu option, all the images for the homepage slider disappeared. So did all the posts featured images. When i turned the Menu option off, they did not reappear.

Can you help me with this or point me in the right direction?

Thanks.

Hi primarycolor,

It’s strange. I never see the issue before. Does the issue caused by the plugin you install?

Can you give me a permission to your wordpress admin panel?

Thanks for the compliments.

Regards,
KaptinLin

kaptinlin,

Not a problem anymore. Found solution in earlier post. I had previously changed permissions on timthumb,php file to 777. When I changed it to 755, the images all reappeared.

Appreciate timely response. Keep up the great work.

Thanks.

Still loving the theme. Three questions for your Kap: 1. I am assembling a 4 column pricing table but need more room inside the boxes than is allotted. Is there a way to remove some of the space in between each pricing box. That would probably give me the room that I need. 2. How can I place an icon inside the cell of a styled table 3. Any chance you can take a stab at my follow-up question from yesterday? Thank so much for your help. RMK

Hi RMK ,

For the questions.

1) You can warp the pricing table to a div with class ‘pricing’

Sample
<div class="pricing">
PRICING TABLE CODE HERE
</div>
Then add custom css code below to ‘striking’->‘general’ option page.
.pricing .one_fourth {
  width:23.5%;
  margin-right:2%;
}

2) You can use img tag in the table.

Sample
<td><img src="You_icon_src" height="20" width="20" /></td>

Regards,
KaptinLin

Hi Kap,

Loving the theme – it’s so great to build a good site – check out www.thecraft-studio.com as an example (i’ve borrowed some design inspirations from your showcases, hope they don’t mind!) – but a quick question. I’m trying to add an image underneath the header and I need it to be a fixed height on the home page, but eleshwere i’d like it to use the standard expansion when adding feature content – see www.scrambledsnake.com i know it’s css related but it’s bugging me how to fix Also, how can I go about reducing the size of the featured image when using as blog posts on the home page – I would prefer them to be smaller in height on the home page – the height is fine on single blog post.

thanks!

Brian.

Hi Brian,

Glad you love it.

For the question.

If you want use an image in the feature bar of the homepage. You can follow the steps below:

1) Create a new page, we can call it Home

2) Choose ‘Header Introduce Type’ to ‘Custom text’

3) Add the image code to the ‘Custom Header Introduce Text’ textarea

<img src="YOUR_IMAGE_SRC" height="440" width="960" />

4) Add the homepage content you want to show on the content editor of the page.

5) Go to ‘Striking’ -> ‘Homepage’ option page. Choose ‘Home page’ With the page we just created.

6) You may go to ‘Striking’ -> ‘General’ option page to enable Wordpress built-in menu. Then go to ‘Appearance’->‘Menus’ to config the menu.

For the smaller in height of blog post on the home page.

You may edit on ‘striking/home.php’

Add the code below to line 2

global $theme_options;
$theme_options['blog']['fixed_height'] = '200';

Regards,
KaptinLin

Hi Kap,

Thanks for this – i’ve added a background image to the custom css – but adding an image that overlays my background using the feature header functionality within the page which you’ve mentioned seems to have broken the formatting of the text below it (i’ve aligned the image to the left which is causing the text below the feature section to wrap around it. See www.scrambledsnake.com to see what I mean. I was expecting the feature section to extend down to the bottom of my added image – is there something I can do to rectify?

Thanks!

Brian.

Hi Bireland,

Add custom css code below to ‘striking’->‘general’ option page will fix this.

#introduce {
 overflow: hidden;
}

Regards,
KaptinLin

Hello,

instead of different colours for the background i want to use an image. Is this also possible?

Only for the background behind the slider.

Hi,

You can use image for feature bar by using custom css code below in ‘striking’->‘general’ option page.

#feature { 
    background: url("YOUR_BACKGROUND_SRC") no-repeat scroll 50% 0 transparent; 
}

Regards,
KaptinLin

Hi there, Loving the theme…quick question. How do I place a link to ‘subscribe’ to my blog on its sidebar? I’ll be a creating a small graphic for the link. I didn’t see any widgets for ‘subscriptions’. I see one for RSS but it looks to be to show other site’s info on the sidebar.

Thanks!

Hi,

You can search a plugin for this.

http://wordpress.org/extend/plugins/search.php?q=subscribe&sort=

Regards,
KaptinLin

Hi Nojule,

I see you using slidedeck plugin. That will slow down the speed. Also conflict with the combine js option.

Regards,
KaptinLin

I’ve been buying Wordpress themes for a few years and this has to be one of the best I’ve ever seen. Its more than a theme, its a framework. Great job. I have a few questions:

1. Is it possible to replace the Header Introduce section that is below the menu with an image that is exactly the same dimensions…approximately 100 pixels. Here’s the catch…I would like to use a different image for each category. Alternatively, how can I keep the Header Introduce section but get rid of the post title being repeated directly below.

2. How can I control the font type and font size that is displayed in a widget. Specifically, the Latest post widget that i have displayed on my homepage.

3. Is there a way for me to resize thumbnails based on custom dimensions. Specifically, I want to change the image size of the thumbnails that appear alongside the latest post widget that I have displayed on my front page.

Hi RMK ,

Do you mean you want the header introduce space only show the post title.

The other items like category name and date etc will show on the white page area?

Regards,
KaptinLin

If its at all possible, yes. But I was able to find an interim fix by making some changes in the theme’s Blog preference section. My problem is that I have a site with over 1,000 articles published in the past 2 years and every post’s title starts with the date and then the title (i.e. “JANUARY 21, 2010: TITLE OF POST ”)...so it was showing a lot of repeated text between the header introduce section and the white area below. Which creates another problem: every single post has at least 1 image in it. Is there a way to have images associated with a category automatically be part of a gallery or portfolio? Or do I have to add each image individually in order to create a gallery or portfolio?

Hi RMK ,

You can edit on ‘striking/framework/helpers/themeGenerator.php’

Locate line 115,

You will find
return $this->introduce($blog_page_id);
Change it to
$title = get_the_title($post_id);

Then edit on ‘single.php’ file.

Locate line 30,

You will find
<h1><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php printf( __("Permanent Link to %s", 'striking_front'), get_the_title() ); ?>"><?php the_title(); ?></h1>

Remove or comment it.

After done, go to ‘striking’->‘blog’ option page. Disable ‘Show in Header Area’ option.

Hope this will help you.

For the images, i don’t know exactly about that. Maybe you can give me your website link?

Regards,
KaptinLin

Hi Kaptinlin,

The combining of the javascript just disables all javascript on my site! Any ideas?

Hi Nojule,

Can you send me your website link?

Regards,
KaptinLin

kaptinlin,

I really love the theme. I’m using it at spf13.com with a few small tweaks.

A few things I’d like to see better.

For the single blog there is an option to use featured image, but no way to configure it. I’d love to be able to use the featured image as a smaller floating image. As it is now I either have to have giant images at the top of the post automatically Like this page or turn that feature off and add each image by hand.

Secondly, the related posts plugin doesn’t seem to be very accurate. Using that same page as an example it should link to This obviously related page but it doesn’t.

Lastly in a dream world I’d be able to have my images served off cloudfront, but I understand the difficulty in using timthumb and doing that.

Again thanks for the great theme :) !!

-Steve

Hi Steve,

Thanks, Glad you love it.

I notice your navigation have a gap between the top menu and sub menu. You can use

Cufon.replace("#navigation a", {fontFamily : "PT Sans Narrow", color: '-linear-gradient(#333, black)'});

for the navigation replacement.

For the featured image in single blog, i will add a option to make it float to left in the next release.

For the related posts, it base on the same tags the post have. It’s not so intelligent.

Btw, I love what you have done! Do you want to share your website to my showcase? If so, that would be highly appreciated!

Regards,
KaptinLin

KaptinLin,

I tried the Cufon fix, but it still has a space :(.

I’d love to share my website on your showcase, how I go about it?

Thanks I’m looking forward to the next release. It would be idea if the float size was configurable, though a sane default would also work well.

I wonder if it would be possible to swap out that widget for the YARPP plugin.

Thanks, Steve

Hi Steve,

You should remove
Cufon.replace("#navigation", {fontFamily : "PT Sans Narrow", color: '-linear-gradient(#333, black)'});

You can email me ( Kaptinlin@gmail.com ) your info that appear in the showpage. I will add it later. Much thanks to your hard work and your kindness.

For the related posts plugin, i think it’s possible to do that. You can look at the code in ‘striking/single.php’ line 44. Also ‘striking/framework/helpers/themeGenerator.php’ line 355.

Regards,
KaptinLin

Why does this theme take sooooooooooooooo long to load? JS issues?

Hi Nojule,

There is a option to combine the js files in ‘striking’->‘advance’ option page.

I think that will speed up the site in some degree.

Also you can try wp super cache or other cache plugin for wordpress.

Regards,
KaptinLin

Hi, just 2 simple questions.

1. I have created a page but how to create a sub-page so that I could to have a drop-down buttons and have it highlighted in a colour (eg. orange)?

2. I have created a contact form. Send several test messages to myself but just could not receive anything. Do you have any idea?

Please help! I’m stuck

Hi,

For the menu, You can use wordpress built-in menu.

First, go to “Striking”->”General” subpanel to enable this.

Then, go to “Appearance”->‘Menus’ subpanel to configure the menu.

On the top of the page, you will see ‘Screen Options’ button. Click it. Then checked the ‘CSS Classes’ option.

Then you can add a class for the menu item.

If you want give a menu a colour, just give it a class like ‘menu_color_orange’.

Then add custom css code to ‘striking’->‘general’ option.

#navigation ul li.menu_color_orange a, {
color:#CC9900;
}

You can lean more from the http://codex.wordpress.org/Appearance_Menus_SubPanel

For the contact form, you can look http://kaptinlin.com/support/discussion/comment/1302/#Comment_1302 first.

If not works, please check your host SMTP settings. Or you can try some plugin to help do this.

Like Configure SMTP .

Regards,
KaptinLin

Awesome theme. Quick question (hopefully): Can I put a textured background behind the slider instead of just the color?

Yes,

You can use custom css code below in ‘striking’->‘general’ option page.

#feature {
 background: url("YOUR_TEXTURED_BACKGROUND_URL") no-repeat scroll 50% 0 transparent; 
}

Thanks,
KaptinLin

‘Home’ menu buttons.

Default install.

I create a Home page that I want to have a few pics, text, etc. on.

I create a menu and add the page Home to it. In the menu bar at the top I see two ‘HOME’s. One goes to the root: http://mysite.com the other goes (it’s the one I created) http://mysite.com/p=67

How do I get the home page I created with my content to be the home page and get rid of the other home page that I didn’t create?

Beautiful work by the way. Amazing customization available.

Mike

Hi Mike,

You can go to ‘setting’->‘readings’

set ‘Front page displays’ to ‘Your latest posts’
set ‘Front page’ to ‘- Select -
set ‘Posts page’ to ‘- Select -

Then go to ‘striking’->‘homepage’ option page

choose ‘Home Page’ with The page you created for the homepage.

Thanks for the compliments.

Regards,
KaptinLin

What a great theme! 10star rating! :) The admin is simply wonderful.

I was just looking for how to make use of one of the languages that came with the skin, but can’t understand from the Documentation how it’s done?

I guess this question has been asked here a couple of times, but seems like Themeforest doesn’t provide search results from comments :)

How do I install a language from the files included?

- Eirik

Thank you for your very quick reply!

I will be more presise: I want to use a language that is ALREADY in the /languages-folder.

How is that done? :)

- Eirik

Excellent, thank you very much!

I am looking at purchasing this for a Real Estate website, it looks like it would fit my needs very well. I had a few questions though:

1. Could the color behind the home page slider and the background of the header on other pages (the area chosen by the color picker) be replaced with a picture easily (I am familiar with html and css but nothing too fancy)?

2. On the home page slider can that link directly to other pages in the site (ex: seller services, contact page, etc.) and not just portfolio pages?

3. Would it be possible to have a side bar on the sortable portfolio page (this page: http://kaptinlin.com/themes/striking/portfolios/sortable/portfolio-1-column/)?

Thanks, Joe

Hi Joe,

Thanks for interest.

For the questions.

1) You can change the image by using custom css code in ‘striking’->‘general’ option page.

#feature { background: url("YOUR_BACKGROUND_SRC") no-repeat scroll 50% 0 transparent; }

2) You can make slider item link to anything you want.

3) The default theme doesn’t support portfolios with sidebar.

If you want, you can email me your demand, i will assist you mod on the theme.

Regards,
KaptinLin

Just disregard my post about “Recent Tweet Widget”

Now its working.

Weird.

Observed it for awhile before reporting.

But when i check again after posting here, i saw its already working. hehe

Sorry.

Thanks!

Nice work man!

Anyway, can I request a new feature for this blog?

For the homepage, where post would be like somehow as designed on Magazine Type theme…

Like this one… http://awesomescreenshot.com/00e66r53a

Thanks

Hi,

You may use recent_posts and column shortcode for that


[one_half]
<h3>Category Name 1</h3>
[recent_posts count="5" thumbnail="true" extra="time" desc_length="80" cat="1"]
[/one_half]

[one_half_last]
<h3>Category Name 2</h3>
[recent_posts count="5" thumbnail="true" extra="time" desc_length="80" cat="2"]
[/one_half_last]

Hope this make sense.

Regards,
KaptinLin

woah, that was nice.

Thank you very much!

It work perfectly on my blog.

Hi,

Why is that the Recent Tweet Widget is not working?

Try to check your Demo http://kaptinlin.com/themes/striking/features/11-custom-widgets/

Hopefully this can be fix soon.

Thank you.

OK. I figured out how to do my previous post question. But now I have a new problem.

I put a background graphic in the “Top Area HTML ” area, But now, when I click my Logo area, I get a light box effect of that background graphic.

How can I disable Lightbox effect for this graphic only?

Here’s my screenshot:

http://shariwarren.com/wordpress/wp-content/uploads/2011/01/SW_HeaderLightboxProblem.jpg

—Thanks, Shariart

Hi Shariart,

Not sure what you have done.

Just use css code for that.

If you want the effort as your screenshot, you can use the custom css code below:

#header .inner {
    background: url("../images/YOUR_IMAGE_SRC.png") no-repeat scroll 50% 0 transparent;
}

Regards,
KaptinLin

Hi again, Kaptinlin,

Can you tell me the html code for adding a background graphic to the Top Area (Logo and menu will be in front.)

Thank you! Shariart

Hi Shariart,

You can use Custom css code for that

#header{
    background: url("../images/YOUR_IMAGE_SRC.png") no-repeat scroll 50% 0 transparent;
}

Regards,
KaptinLin

Hi KaptinLin,

I have a question about the contact form:

When I click the “Submit” button, how can I link to another html page, such as a ‘Thank You’ page?

~P

Hi sweetph,

You can edit on ‘striking/js/custom.js’

Locate line 335-337 & 352-355,

Replace them with

location.href="http://THE_PAGE_URL";

Regards,
KaptinLin

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey