Discussion on Bigbang - Responsive WordPress Theme

Discussion on Bigbang - Responsive WordPress Theme

Cart 10,895 sales
Well Documented

Brankic1979 supports this item

Supported

This author's response time can be up to 2 business days.

4653 comments found.

How can I customize the footer?

Like in most themes, it’s managed with sidebars – Appearance -> Widgets…

Please disregard my question. I found out the problem. Thanks. This is a wonderful theme. Julie

Dear Brankic, thank you for a nice theme. I purchased your Big Bang for Wordpress theme. i edit page and add some code [bra_portfolio title=”” cat_id=”14” no=”-1” show_filters=”yes” columns=”4” shape=”” height=”“].

But I want like this http://customers.authorselvi.com/demo26/wp-content/themes/bigbangwp/images/test.png

Now showing Title & Description only.

Please help.

Hi,

I don’t see PURCHASED tag next to your name.

However, even if I see it, we’re not providing this kind of support…

Morning,

Just a quick simple question im sure but do you or anyone else know how to make the item shaped as triangle and hexagon 4 rows across..

I change the short code to 4 columns but it still only shows 3 when in the demo it shows 4 lol – weird.

Can someone please be a gent and suprise me with your amazing knowledge..

ah thank you :)

Hi,

you can’t change number of columns if you’re using shapes, sorry…

Oh wonderfull theme ! but…

Actually I got a little issue with the contact page. When I try to send a message it answers “email server problem”. I see on the FAQ that you were able to fix it if I send you my wp-admin URL. Am I authorized to do so by mail ?

Thanks, Regards, S.A

Hi,

use contact form on our profile page and please let me know via this discussion board (because these days we’re not providing support via email)

Does this theme work effectively with iPad and iPhone? The Theme Forest Demo does not seem to.

Julian

Hi Julian,

It should work fine – We’ve tested it on both iPad and iPhone. Just remove header frame when testing…

Thank you for this theme. For some reason the slider on the homepage doesn’t work for me. I have loaded three extra images on that page. Isn’t it supposed to rotate as a slider? Can you give some pointers as to how to get it to work? Thanks. Julie

Hi Julie,

Adding Extra images should be enough. Maybe there is some kind od plugin conflict. Try to disable all 3rd party plugins and check if slider is working…

Hey, I purchased your Big Bang for Wordpress theme. I am wondering if I can shrink the pictures in the main page home slider so that I can see the 4 sub-posts below the main slider on the homepage, without scrolling down to see it. The website is below – if you look at it, you will know what I mean.

www.rockriverkennelsia.com

Hey, Sorry for the late response. Yes, I could be happy to send a quick sketch. Do you have an email or something that I can attached the sketch to to send to you? Please let me know.

Thanks, Zach

Hi,

You’ll have to contact me via email form on our profile page – but we’re busy these days, so I’ll can’t answer it in next 10 days…

Hey,

I just sent you an email from your profile page. There wasn’t a way to attach my sketch to the email. Please respond to my email and I will send the attachment with the sketch of what I am trying to do.

I am confident that it’s not a hard problem for you to fix, I just can’t seem to diagnose it myself.

Let me know, please. I really appreciate it!!

Zach

Dear Brankic, thank you for a nice theme.

My issue has been adressed before by a previous customer and I followed your advice but it’s still an issue I’m afriad.

On my blog page I wish to get rid of the “continue reading” and rather have all posts “pile up”. This was however adressed and the solution was to replace the code the_excerpt(); with the_content(); in the blogx.php. The other option you gave was to rid <a href="<?php the_permalink(); ?>" class="more-link"><?php _e('Continue reading ?', BRANKIC_THEME_SHORT); ?></a> all together. So I did but it’s still there.

Is there something I’m overlooking or another approach on this matter.

Thank you. Johan

You should try to replace the_excerpt with the_content in index.php

Thank you kindly!

Why is the footer on my home page not full width like it is on the other pages? Website: www.wookeyfilms.com

It looks fine – I guess you’ve figure this out…

I purchased this theme – and I think I’m missing something obvious, but the Portfolio page will not work for me. This is the code I have entered on the Page “Work”, I’m unsure of what to put in for the cat_id as nothing I’ve tried is working (I’ve tried – cat_id=”video”, cat_id=”portfolio”. I know it explains it somewhat in the Help Document, but I’m not totally sure what’s wrong:

[bra_portfolio title="Recent work" cat_id="video" no="12" show_filters="yes" columns="4" shape="circle" hover="yes" height="200"]

Can you tell me what I should put in to get it to show? Thanks very much – looking forward to you speedy reply.

Hi,

are you using Brankic Shortcode button in the editor. There is Portfolio button and there you have to choose category from the drop down menu. If you don’t want to use that button, in the help file is explained how to obtain right ID.

Hello again. is there a way to turn a portfolio image in the portfolio grid into a link to the portfolio item itself as well as the link icon and the name?

You can’t have both – I would use some kind of redirection plugin (search the WP plugins directory)

how about just turning the hover image into the link instead of the title and the magnifying glass? I do know some php so if can tell me where to edit that, that would help too. If not, i understand.

Hi Jake,

Use hover=”no” in portfolio shortcode

You can’t make whole hover area clickable…

MAybe I didn’t understand right your demand, so if this is not what you meant, don’t hesitate to reply to this post…

Nice theme :) I am wondering if its a way i can get the posts to be showed in full on the front page. I use it for my blog and have blog as front page. Now I just get summary.. My blog is http://villapaprika.no. Hope to hear back from you .. all the best

Hi,

you should try to change the_excerpt() with the_content() in bigbangwp/index.php

Hi! Great theme! My client wants her logo and menu to be fixed to the center. Can you please tell me how to do this without compromising the responsive nature of the theme.

Thanks.

Gareth

Hi Gareth,

it’s not that easy :(

I’ve tried easy fix (removing float and adding auto for margin-left, right) but it doesn’t work.

You’ll have to change more declarations and it’s beyond our support…

Hi. On my portfolio page the sub head order above the portfolio images currently reads: ALL / VIDEO / LOGO & BRAND / WEB / PRINT / EMAIL MARKETING How do I change the order to: ALL / PRINT / LOGO & BRAND / WEB / EMAIL MARKETING / VIDEO Thanks for your help. (great theme)

Add this Extra JavaScript (Brankic Panel)
jQuery(document).ready(function($){
    $nav = $("#portfolio-nav");
    $nav_1 = $nav.find("li:nth-child(1)"); // ALL
    $nav_2 = $nav.find("li:nth-child(2)");
    $nav_3 = $nav.find("li:nth-child(3)");
    $nav_4 = $nav.find("li:nth-child(4)");
    $nav_5 = $nav.find("li:nth-child(5)");
    $nav_6 = $nav.find("li:nth-child(6)");
    $nav.empty();
    $nav_6.append("<span>/</span>"); // old last item
    $nav_2.find("span").remove(); // new last item
    $nav.append($nav_1).append($nav_5).append($nav_3).append($nav_4).append($nav_5).append($nav_2);
});

Hi I bought your template. it’s really nice. however there is no documentation on installation, setup, and use, no screenshots, no help !!! could anyone help me to have something similar as the demo ? thx

It’s there “Show sharing options – Facebook, Twitter and Google + sharing buttons. You can add your own sharing code if you edit bigbangwp/share.inc.php”

Add this to Extra CSS in Brankic Panel
.form textarea {
  width: 85%;
}

Thx for your help !! i appreciate !! But sorry to bother you, i have three last questions :

1- I currently have the socials icons activated in both portfolio and blog pages. How can i have them activated only in the blog (and not in the portfolio) ?

2- How can i put the ” filter words ” in the portfolio in the order i want?

3 – Is there a way to re order the order of silde’s appearance in the slider of the homepage. Without re entering everything each time i want to add a new extra image in first ?

Thanks, have a nice week end !!

Hi,

1) You’ll have to disable it manually – Appearance -> Editor -> single-portfolio_item.php and delete
include("share.inc.php") ; 

2) Not that easy – in FAQ is explained but you’ll need basic programming knowledge (the way your brain works) http://themeforest.net/item/bigbang-responsive-wordpress-template/2826493/faqs

3) Sorry, but not :( (unless you edit slider.inc.php and check flexslider options)

Apologies for all the questions but I am having an issue with my portfolio pieces. I exported my blog and imported it to a sub-domain in order to translate it in another language. The problem is the footer and the portfolio pieces are not showing on the sub-domain. I compared the settings of both sites and everything seems to be the same… including the portfoli0o items… my website is wookeyfilms.com and my second site is fr.wookeyfilms.com

Thanks!!!

When you export, you have to choose to export all (not only blog posts) (I see you already did it)

Footer widgets are not the content of export file – you’ll have to customize sidebars again (I see you already did it too)

I can’t seem to display all the portfolio categories at once.

Looking to create the same effect as your sample page: http://demo.brankic.net/bigbangwp/column-4/

Also the filter doesn’t show either.

What’s your category hierarchy?

Selected category in portfolio shortcode must have children. These children are filters…

I love this theme. How do you add the social icons to the team page instead of just the text links under the images. I have tried the shortcode in several places and can only get it to show when it is outside the “member” section. Thanks, Jason.

Hi,

You can insert social icons instead of text links.

In fact, you can’t insert any image below main team image :(

Hi,

I’m probably missing something really simple here, but how to I make to Instagram/Flickr photo streams pull from my account instead of yours? I’m currently using the [bra_photostream social_network=”instagram” limit=9] short code.

[bra_photostream social_network=”instagram” user="yourusername" limit=9]
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