Discussion on Mana - Responsive Multi-Purpose Theme

Discussion on Mana - Responsive Multi-Purpose Theme

Cart 1,123 sales
Well Documented

themeton supports this item

Supported

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

552 comments found.

I’ve got a huge problem with Mana theme 1.7.71 when I try to post a new article with post-new.php I obtain a blank page. It’s very urgent issue !

Hello!

I see, Could you send me you WordPress login details in our support forum? Please, allow me to check your issue!

http://themeton.com/support/forums

Thank you.

I’ve resolved this by update of revolution slider . But I’ve got a new issue:(this issue was before blank page) I don’t see blox editor in visual mode only its tags es: width=”1/4”] Can I resolve this? thanks

Please send us your issue and site details on the forum

Thanks

Hello. 1. I did not make changes to the site for a long time Problem. Does not work “Block content builder”. WP-version:4.4.1 Mana-version: 1.6.3

It may be necessary to update the theme?

2. I have installed the theme on a test domain. What API-key must be entered on ENVATO-page in WordPress for update theme(this is “Item Purchase Code” ?) ?

Thanks

Hello,

1. Yes, WP core updated frequently and we need to update wp themes as well. Current version is 1.9.2 and it means it has bunch of changes and improvements.

2. You can apply your code there and you’ll receive notification and able to update your theme with a few mouse clicks

Thanks

Is this theme compatible with Wordpress version 4.4.1? I’m having problems! Some elements are not visible in the browser. I’m having the same problems with the demo pages. Is this a problem of the pagebuilder? Tested in Chrome and IE. Theme is the latest version. I’ve donwloaded the latest version because your older version had problems whit the pagebuilder, doesn’t work anymore. That’sway i upgraded everything and now i’m having other problems pff. Thanks

Hello!

Thank you for purchased our theme! Could you send your WordPress login details in “support/forum”. Then I will check myself your issues!

Thank you

Done :)

Hi, I’m having trouble with the “Metro” style tiles. I would like to have a similar layout as you have used on http://themes.themeton.com/mana/home/home-5/ but I cannot seem to get the Metro tiles to span 3colums as you have in your example.

Can you please advise exactly how this layout is achieved?

Thanks

Hello,

I need to inspect and what drops that last column elements. But I don’t know how. So please install new install (locally or wherever) instance and include demo content entirely. Means you can have home5 and post content together with this action. Then you should check. Currently we set post sizes as possible as nested in the element width.

Thanks

Thanks, I will arrange for this to go live and will send over url details asap

Okay, I’ll see your issue

Hello. nice theme. how to change POWERED BY WORDPRESS and write my thing.Thankyou

Hello, Please check the Theme Options under your dashboard.

Thanks

Hi,

We are interested in purchasing the theme. I have few queries on that. 
Can we have two set of menus in header. One set of menu on top right side. 
Below that now as given in template we would like to have another set of menu with a subtext in small font below each Menu (Home, Features, Blog). Is it possible, Kindly confirm .

Yes, Thanks

Thank You for your earliest reply. We would like to have side bar menu set , which should be scroll with in the page. Will your template mega menu support for page scroll to id concept.

I’m not sure what exactly you want. Btw, you can add #link on your menu and point to your any section.

Thanks

is it possible to create photo albums when clicking I can see all the photos in that album, could be masonry, grid, etc and when clicking it opens lightbox?

Hello,

This is how it is possible with this theme Gallery. If you need that masonry style, you can use some additional plugin for it.

Thanks

I still got a problem with the portfolio-section not working with the filter on http://schneiderplanung.ch/

Will this bi fixed soon?

Thanks Micha

Hello,

Looks there you have some modification with it and grayed out filter posts. Is this okay now or not? please let me know about it and what would be better for you

Thanks

Hi, I have a page with several sections and want to go to a section directly by using a link to it, so the page scrolls smoothly down/up to that section, but the page is not a one page, just a normal page. I’ve tried to add an anchor in the section with raw html and add a link with that anchor’s id, but then the page just goes directly to that anchor (without nice scroll effect).

Furthermore the anchor scroll up to the top of the page hiding the anchor (and the to op the section) under the menu. It would be nice to have a class to add to the link which results in scrolling smoothly to the anchor, placing the anchor below the menu.

Is this already available or do I have to build this myself? It would be great to add an unique id to the section too.

Thanks for your help, Florian

I wanna give you this solution but simple. Please follow this instruction.

1. Add scripts to “assets/js/scripts.js”

jQuery(document).ready(function($) {
    $(".scroll").click(function(event) {
    event.preventDefault();
    $('html,body').animate( { scrollTop:$(this.hash).offset().top - 160} , 1000);
    } );
} );
I’ve decreased top position by 160 for preventing behind menu view.

2. Add an ID to the destination section

3. Add an anchor tag with proper id and class
<a href="#mypoint" class="scroll">Click me!</a>

Thanks

Hey, just wondering how I can reduce the height of the footer? Thanks for your help :)

Hello,

Please just apply this small css on custom css field.
.footer_widget_container {
    padding-top: 20px;
    padding-bottom: 20px;
}

Thanks

Thanks so much for your reply :) I went to Theme Options / Custom CSS and entered the Code in the “Custom CSS (General)” tab however unfortunately nothing has changed. I have entered text and links within the footer, would this affect anything?

I want to do following there

- Is your changes saved? Refresh theme options and check once.

- Have you refreshed enough time your front view? Might your browser cache old css styling

- May we need to add more higher priority on the style
.footer_widget_container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

- If you don’t see one of above are helpful, you should leave us a ticket on our support forum with your site details.

Good luck :)

Blox Content Builder doesn’t work anymore. Seems to be the same problem like “hernanpaz” has. Please help. Best regards.

Please clear cache of your browser once and check again. Also you should share more information and your site secrets on our forum and we’ll inspect it and give you solution asap. Best regards, ThemeTon

Hello! I do not work the ” BLOX CONTENT BUILDER ” . It is always in “html code”

I have all updated and Wordpress plugins in its latest version .

I await your response Thank you!

Hello, I cannot help you with this small info right now and please share your site site address and login details on our support forum. Our staff will answer you asap with informative solutions.

Thanks

Hi, i am using the tabs feature that is included in this theme which is great. But could’t figure out a way to center the tabs header and content because it has a left alignment. How can i center the tabs? it is essential for my website. Thank you.

Hello,

Looks this is required only on your site and we need to apply small css improvement with it. Please allow following on your site. Also you can make more modification inserts with it.

For centering content.
.tt_tabs { text-align:center; }
For centering title is a bit complicated
.tt_tabs {
    width: 100%;
    overflow: hidden;
}
.tt_tabs ul.tab_header {
    position: relative;
    float: left;
    left: 50%;
    display: block;
}
.tt_tabs ul.tab_header li {
    position: relative;
    float: left;
    display: block;
    right: 50%;
}

Thanks a lot

Hello,

i thank you for your answer, but the css you gave me, only the content centering code is working. The code for centering the title is not complete i’ve tried to debug invain. This is before the code is implemented: https://www.dropbox.com/s/mh7rmxf6rgxfli4/title%20before.jpg?dl=0 and this is the title after the code is implemented : https://www.dropbox.com/s/ls98z80e729sm42/title%20after.jpg?dl=0

what seems to be the problem?

Best regards.

Okay sir, please share you site address and more information on our support forum. We need to inspect and improve css dedication. Thanks

From time to time the site was broken . It seems to fail the CSS or something like that .

Here I capture http://hpaz.com.ar/captura.png

They changed the fonts , colors and others. Without such changes . What happened? How I can fix it?

Wordpress theme and are updated Web >> www.golive.la

I await your response Thank you!

Hi, I think there have missing some css file or background image. Need to check it in action. Please share you site address and possible secret details on our support site and dedicated support staff’s will help you more capable.

Thanks

I no longer operates the “BLOX CONTENT BUILDER” I can not create the boxes. Only by code

HELP ME PLEASE! Thank You

I believe it works with latest version. Please clear cache of your browser and try again. If it won’t work, please share your site address and login details on our support forum and we’ll help you there for this issue

Thanks

From time to time the site was broken . It seems to fail the CSS or something like that .

Here I capture http://hpaz.com.ar/captura.png

They changed the fonts , colors and others. Without such changes . What happened? How I can fix it?

Wordpress theme and are updated Web >> www.golive.la

I await your response Thank you!

Hi, I think there have missing some css file or background image. Need to check it in action. Please share you site address and possible secret details on our support site and dedicated support staff’s will help you more capable.

Thanks

Hi,

First of all congratulation for the good job with this theme. I just need to solve a problem I have with the Header Top of my mobile version.

Like you can see in the following link the Header Logo hides my slider: http://images.devs-on.net/Image/wJv2V1T05odQAh0W-Region.png.

The site is: http://www.prometim.net/

Can you help me with that? Thanks. Regards.

Hello,

This is a transparent slider and it is place over on your slider. And you can select different header style there.

Or we can switch your menu to regular style on your mobile resolution.

Please let me know which one do you prefer?
And please send us a ticket on support forum with more details including site login etc and we can do those changes in your site directly.

Thanks

Updated with the patch which fixes Box Builder in page making but box builder is not appearing in portfolio building

Hello,

Please drop us your site address and login details on our support forum. We’ll inspect your site and give you tecky solutions if necessary.

Thanks

Hi, well its not my site, my daughter bought this from you sometime ago and I was trying to work on it for her but it seems as though wordpress updates have caused the mana files to break? I dont know how looking at her page will help with the fact that the portfollio builder doesnt show box builder? I fixed the box builder not showing in the page making menu with your js update but as I said its also broken in the portfolio side of things too and simply doesnt show up

Okay I see. But please provide your site information us.

- What version are you using? Latest version is 1.9.2 now. I wanna check there version and suggest you update if you’re using earlier versions.
- I wanna check your js updates are exactly applied there
- If there don’t, I can update required files on your server with your credentials.

Now I can’t do any of above because you don’t provide me anything.

Thanks

Hi,

I have a problem with the full map in the contact page, like you have in your demo: http://images.devs-on.net/Image/eDc8S29FE44yzKOp-Screen2.png

How we can solve this?

Thanks. Regards.

Hmm, familiar issue because I saw it earlier on customers site. And suggested to use different GMap shortcode there.

Looks this is same on my demo. I’ll look forward it and find a solution and let you know soon

Thanks

Hi – considering buying this theme, but have a few questions:

1) does the current build still rely on the patch file to support Wp 4.3? 2) do you know if the theme easily supports the plugin “Search & Filter Pro” http://goo.gl/EyR6RC 3) do you know if the theme easily support plugin “Advanced Custom Fields”

thanks

Hello,

1. I’ve updated the theme and now you should use without this patch because it is already in.

2. Looks this is an advanced plugin and filters various things but I don’t see any thing to suspect. Yeah I think so because all the meta sections, post types registered by wp hooks and they will work fine.

3. Yes it will work.

Thanks

What’s happened to the themeton support page?

Please leave us here (http://themeton.com/support) your issues. 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