Discussion on SympaGrid - Responsive Grid WordPress Theme

Discussion on SympaGrid - Responsive Grid WordPress Theme

Cart 485 sales
Well Documented

pukkathemes supports this item

Supported

This author's response time can be up to 1 business day.

185 comments found.

Can we make the text on the secondary menu to align in the center so that all the text is centered? www.theoneseed.com

Hi,

it’s a little bit hard for me to provide exact solution without testing, but try adding this to the “Custom CSS” textarea:

#secondary-menu > div{
margin-left: auto !important;
margin-right: auto !important;
text-align: center;
}

#menu-wrap.menu-top #secondary-menu li{
float: none;
display: inline-block;
}

If you have any problems implementing this code, please open a ticket with our support system at pukka.ticksy.com, leave your WP login credentials and our support staff will be glad to help you out.

Best

Great, it solved the issue. Thank you again. You have been very supportive since the start. I am glad that I gave you 5 stars.

You’re welcome!

Glad that you’ve solved it :)

Hi Again, I’d like to be able to duplicate the functions of the front page for multiple pages. I am using custom content and need to be able to add custom content to inside pages exactly how my front page appears. Can you advise on how to do this? http://www.theoneseed.com/

Thanks!

Hi, I am able to put a custom content box on the front page. I would like to put a custom content box on an inside page in grid format exact how my current front page appears. For inside pages, I am only allowed to create a new Page or Media. Can you show me how i could put a custom content box on an inside page because I can’t seem to figure it out? Thanks!

On my front page right now (www.theoneseed.com), I have news feed widgets running. I would like to do the same on inside pages too.

Hi,

page template that I suggested can only be used to display “latest posts” in grid format, but adding custom content goes in the “home page” on every page which currently isn’t possible (without some extensive modification).

We’re thinking about adding that feature in the one of the future updates, but I’m not sure where about exact date.

Best

Hi Pukkathemes,

How do I embed a scroll function into custom content on the front page manager? When I embed the code for the Trendspottr widget, it gets cut off due to the size limitation of the box, so I want to be able to scroll down to see the rest of the feeds.

Thanks!

Hi,

try adding this to the “Custom JS” textarea (Theme Settings -> Style):
jQuery(function($){

$("#wrapper").on("content-loaded", function(){
FG_NS.drawWidget1();

});

});

Best

Yes, it works! Thanks again.

You’re welcome!

Hi,

I’m considering buying this theme but I have a question first :

- in your demo, how is defined the color of the “share” section in each item ? Is it function of the category of the item ? Is this colored section removable from the boxes on the homepage ?

Thank you !

Hi,

the color of the share section is specific to the item size and it can be changed, if needed, with one CSS line.

Removing it is also a easy CSS modification and that is something that we can certainly help you out with.

Best

Thank you for your quick reply !

You’re welcome!

There are so many nice things I can say about this theme but the two most important feature to recommend this to potential buyers are:

1. Awesome Customer Support. Marko is just the best when it comes to working with clients to find solutions to theme modifications. Response time is quick and direct to the heart of the problem. Never condescending no matter how lame a question is :)

2. This theme was clearly thought out from an end-user’s perspective. It has a powerful theme settings and front page manager which content creators like myself find very useful. I can easily make changes using the theme setting panel without opening up php files like I used to do. This enables me to better use my time on creating content than fiddling with the theme files.

Two thumbs up!

Wow!

Thank you Robert for all the compliments, glad that you like SympaGrid so much!

We put a lot effort in planning and making it and we certainly try to provide best customer support.

If you like it so much, please consider rating it here on Theme Forest.

Best Regards and thank you once again :)

Hi, I’m about to buy this theme but I would like to know if it lets you: -Adapt the size of the posts and their images on the front page (I would like them to be at a fixed size, all of them) -Modify the sharing buttons on the bottom (I´d like to put a more colorful ones) -Change the title of the posts to be on top of the image, on the homepage.

Thanks!

Hi,

there 3 predefined front page box sizes (as you can see in our demo) from which you can choose. Also, there is an option in Theme Settings to change it’s dimensions. You certainly noticed how different size boxes fit? Using that option you can set size of the medium box and from that the size of other 2 boxes is calculated (so grid doesn’t get broken). When you change box size, the image size will change as well.

As for the title and the social buttons, a small theme modification would be required. For the title template file, which is used for front page posts, should be modified, but luckily theme is built that way so this is easily done. Regarding changing colors of the social buttons, I’m not exactly clear how you would like to make them more colorful, but if you just want change it’s color it is an easy change.

We could help you out with both of those things.

Best

Hello,

I love the theme! Its been great so far. One problem though, I can’t seem to change the font size of my posts on the homepage (Header 3). I can change the background color, but the font will not change. Thanks!

Hi,

that’s because “brick” titles are treated different then “ordinary” h3 tags. If you want to change it’s size just paste this into the “Custom CSS” textarea (Theme Settings -> Style):

.brick-content h3 { font-size: 22px; }

And tweak 22px value.

Best

Worked perfectly. Thanks for the great support!

You’re welcome.

Hi Guys, we are totally in love with the theme. I’m a very happy customer. A couple of quick questions:

If you check our gadgets blog here Tres Cool Gadgets.

Questions:

1 – Is there a way to add ad units on the grid of the category pages? Example is on a page like: http://www.trescoolgadgets.com/category/drones-aircraft/

2 – Anyway to add a static footer to the template? Or do I need custom coding?

Thanks in advance, and again great theme. Looking forward to purchasing others!

Hi,

1 – Of course, you can insert “category widget” (in the Front Page manager) and it will display latest (or random) post from selected categoy.

2 – Adding a static footer requires some extra coding, if you want to implement it, and having some trouble doing so, open a ticket with our support system at pukka.ticksy.com and our support staff will guide you through.

Best

P.S. Thanks :)

Hi,

how can i hide the title of a post?

thank you

Hi, you can edit single.php template file and remove title or hide it using CSS. If you decide to do it via CSS, and you’re talking about single post page, paste this into the “Custom CSS” textarea:

.single .entry-title{
display: none;
}

Best

P.S. If you have any more questions please open a ticket with our support system at pukka.ticksy.com

Hi,

can I disable the comment section below the posts?

thank you

You can edit single.php template file and remove necessary code ( HTML element with ID set to “comments-outer-wrap”) or hide it using CSS. If you decide to do it via CSS, and you’re talking about single post page, paste this into the “Custom CSS” textarea:

.single #comments-outer-wrap{
display: none;
}

Best

Hi,

how can I hide the date, categories and tags on the top of the post page?

Thank you.

You can edit single.php template file entry meta HTML element (the one with the “entry-meta” CSS class) or hide it using CSS.

If you decide to do it via CSS, and you’re talking about single post page, paste this into the “Custom CSS” textarea:

.single .entry-meta{
display: none;
}

Best

Hi,

is it possible to add the infinite scroll at the end of a post page below the comments? For example like a kind of related articles plugin but with infinite scroll. Thank you.

Hi, currently that’s not possible without some “mid level” theme modification.

Best

Hello,

how can I make an affiliate link with a picture appeare instead of the googe adsense ads. And how would such an ad tag look like (Example maybe) I want to diplay an affiliate add on my grid homepage.

Thank you!

Hi,

you should have some affiliate code? If so you just need to paste into the “Grid banner ad tag” field (Theme settings -> Advertising).

If you have any more questions please open a ticket with our support system at pukka.ticksy.com

Best

Hello, I just purchased this theme last week and I saw some websites that had the same theme that had a feature that I cannot figure out.

When I make a post on my homepage with grid layout, How do I redirect the image to a link (in a new window) and redirect the body text to the child page? I been trying numerous of ways however I can either make the whole post be redirected to a different link or have the whole post redirected to the child page. How do I redirect the image to a different link and the body text to the child page?

Thank You

Hi, you could use “link” post format and the specify a URL to the post you wish to link to or you could use “custom” content box and enter arbitrary HTML (and thus an arbitrary link).

If you have any more questions, please open a ticket with our support system at pukka.ticksy.com

Best

If I use the link format it opens up on one link only. The image and the body text is connected to that one specific link. Im wondering how i can separate it and have one link for the image and one link for the body text. Thank You

Yes, you’re right if “link” post format is used image and body text would link to the same URL.

Those sites are probably using some plugin or “custom” content box. You could open a ticket with our support system at pukka.ticksy.com and leave a link to some of those sites so we could take a closer look.

Best

is theme now supporting woocommerce/product posts? Cheers

Hi, unfortunately we haven’t (yet) implemented WooCoomerce support.

Best

I wish for you to make your next html template something like this http://www.zergnet.com/

Hi, thanks for you suggestion, but we make only wordpress templates.

Best

Homepage grid is set to random. Each time the page is refreshed the box size pattern changes. Is there a way to fix the pattern? Noticed on your demo the homepage content stays the same when the page is refreshed. Thanks…

Hi, on our demo site grid is not set to random, but every box has it’s own size set (which can be done on “Front page manager” page or on “post edit” page for each post individually).

If you have any more questions please open a ticket with our support system at pukka.ticksy.com and our support staff will take it from there.

Best

Appreciate the feedback. Thanks!

Hei! Quick question! I want to show the sidebar on tablets. How can I do that? Thanks!

Hi, on which page? On single post pages your sidebar should be visible, but it’s located underneath the content.

Can you please open a ticket with our support system at pukka.ticksy.com and our support staff will take it from there.

Thanks!

Hi Marko,

If the home page has four boxes in the grid, how difficult would it be to add an image that overlays the inner four corners? If you reply by email I’ll send you an example. Also, in the grid boxes, can multiple images be scrolled through? Maybe on a rollover or something like that? I hope that makes sense.

Ken

Hi Ken, can you open a ticket with our support system at pukka.ticksy.com and our support staff will take it from there.

Also, can you explain in more detail what you would like to achieve, to cover inner four corners of those boxes or their (parent) container?

As for the multiple images, it can be done, but there a code modification will be needed.

Best

How can I send you an image of what I would like to do? I haven’t bought the theme yet.

Sorry, I’ve misread your question.

Here is our email: office@pukkathemes.com

Best

My social icons seem to be missing from the main menu. In there place is three little squares saying E604, E620 and E627 for Facebook, Twitter and Instagram. What should I do to get these back?

Hi, can you open a with our support system at pukka.ticksy.com and leave a link to your website and our support staff will take it from there.

Thanks

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