Forum Replies Created
-
AuthorPosts
-
Hi Andy,
Can you give a bit more detail on exactly the set up you have so I can try and duplicate it on my live install.
Regards,
Devin
Hi Arnaudov,
We aren’t really able to help with something like that as its a completely new code extension on top of the theme code. Nick did a short video on adding the advanced layout editor to custom post types but beyond that, it sounds like the taxonomy for your custom post type may not be set up correctly.
It just comes down to us not being able to support code that isn’t ours.
You can see the video I mentioned above here: https://vimeo.com/channels/aviathemes/64996057
Regards,
Devin
May 31, 2013 at 3:18 pm in reply to: How to make background image in color section responseive? #121881I can’t see a way to do it with that layout. It is possible in a static html layout or if you were doing a layout from scratch specifically for it but the only method I’ve read about wouldn’t work in this instance at all.
What you could do, is Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
@media screen and (max-width: 900px){
#top.page-id-60 #av_section_1 {
background-image: none !important;
}
}Adjust the 900px number to whatever pixel width you want the background image to be removed or replace the background image with a different one so that it didn’t have the same size image.
See: http://www.w3schools.com/cssref/pr_background-image.asp
Regards,
Devin
Hi doremus,
No there isn’t at the moment. I’ll mark it as a feature request however :)
Regards,
Devin
Hi erh1086,
It is most likely in the way you are targeting the css. You need to make sure the css targets the item with greater authority than something else.
So for instance, .logo {left:10px;} wouldn’t do anything where as #top .logo {left:10px} would.
Regards,
Devin
Hi Sebastian,
If the issue is still happening when you switch to Twenty Twelve or Twenty Eleven it means there is an issue with your wordpress installation unfortunately.
You can try asking about the issue on the wordpress support forums or even contacting the hosting provider to see if they have ever come across it with someone on their server before.
From the theme side of things there just isn’t much we can do with wordpress issues.
And yes, I believe there will be another update soon if it isn’t live already. The 1.5.1 was the version I pulled from our git repo which is the current iteration Kriesi is working on.
Regards,
Devin
May 30, 2013 at 4:35 pm in reply to: How to show all child categories when parent category is selected for portfolio? #122134Hi cyoniq,
Unfortunately that is quite a bit beyond what we can help with via support. If no one here on the forums has any ideas you would need to look into a freelance developer to customize the function for you.
Regards,
Devin
Hi tocal,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .iconbox_content_title {
line-height: 24px;
}That will increase the line height for those and should fix it on your end.
Regards,
Devin
May 30, 2013 at 4:26 pm in reply to: Remove Copyright from footer without touching theme files? #122143Hey Michael,
In the copyright field just add the following at the end of your custom text:
[nolink]
Regards,
Devin
I’m not really sure what you mean without seeing an example or a copy of the layer slider settings. The amount of depth the layer slider can get into with layouts, effects etc is pretty big so its pretty hard to go into an open ended question like that without some reference.
The whoe LayerSlider itself is a plugin Kriesi incorporated into the theme, so by itself its had a lot of use and I can’t imagine basics like fade, rotate etc have not worked for as long as it has been out and actively used.
Regards,
Devin
Hi skkirilov,
Maybe we aren’t looking at the same thing. Can you provide a link to your page showing the tabs in use so we can take a look?
Regards,
Devin
Hi spinner,
What are the active plugins that you are using? Do you have any plugins within the browsers at all either?
I’ve done maybe 100 different layouts and settings since the theme has been released but nothing like what you are describing has happened. Though it does still sound like a memory issue. When you changed/updated your settings, were you able to check if the change actually changed your usable memory? Very often just changing it in wp-config doesn’t fully set it on the server so establishing that it has in fact been changed is a good place to start.
Regards,
Devin
May 29, 2013 at 6:37 pm in reply to: How to make background image in color section responseive? #121879Hi nimrodmadar,
I’m not really sure what you mean. As a container, it already is responsive as it scales with the site.
If you mean getting the image inside of it as the background to shrink down, I’m not sure that is doable with the way the color section works. You can do fixed which will keep it in place and give a semi parallax effect which is pretty popular however.
Regards,
Devin
Hi juanfra93,
You’ll need to up the amount of memory wordpress is allowed to use on your server. Here is a good couple of steps and ways to do that: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Going up to 128 should prevent this from happening.
Regards,
Devin
Hi alexpaulec,
Increasing the php memory limit with one of these methods should also help (up to 128mb): http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Devin
Hi RichardKeyt,
The last version of WordPress removed the Links functionality from WordPress. So you’ll only see it on previous installs of wordpress where you had links added in.
Regards,
Devin
Hi MikehJPP,
I just finished up a video that should help: https://vimeo.com/channels/aviathemes/67221517
Regards,
Devin
Hi nimrodmadar,
These kinds of errors have been found to be related to low usable memory for wordpress. Try increasing your php memory limit to 128mb. Here is a couple of ways to do it nicely written out: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Devin
Hi nimrodmadar,
IE8 doesn’t support media queries so responsive design doesn’t typically work on IE at all. It will always just output the normal site.
Regards,
Devin
Hi Thomas,
I think the hang up is that the “Blog” is different from single blots “Posts”.
So you can use the Advanced Layout Editor to make a specific set of posts or post categories output in a layout and you can also use the theme options to set the default overall blog where all posts get spit out.
Outside of that, wordpress has single blog pages that are independent of everything else. To set a layout on a single post, go to that post and on the right hand side of the screen go to the Layout meta box and for the Layout dropdown choose “No Sidebar”.
Regards,
Devin
The border on the menu is from this css:
/* CREATES TOP MENU FEINT LINE */
#top .main_menu {
height: 27px;
border-bottom-color: #5e5957 !important;
border-bottom-width: 1px;
border-bottom-style: solid !important;
}Just remember when you add new css for the desktop, you need to remove that styling if you dont’ want it on the content below.
Or, add your desktop only styles to a media query that will make them only show on a desktop. Something like:
/*
DESKTOP STYLES
Add styles inside the media query below that you only want to be applied to the desktop layout of your site */
@media only screen and (min-width: 768px) {
/* Desktop styles go here */
}Regards,
Devin
May 28, 2013 at 6:52 pm in reply to: It appears that there is an update awaiting approval at Envato/Themeforest? #121762I believe its under review right now from Themeforest. Once it has been approved it will be available for download from your Downloads.
I’m not sure what features are coming next unfortunately, Kriesi is usually the only one to add in major features but I don’t know what he plans on addressing since he has been doing almost entirely bug fixes the past week or so.
Hi skynandi,
1.5 is awaiting approval from Themeforest right now.
The issues users were having with the text box seems to all stem from low memory. Kriesi is now advising if you are having issues to up your wordpress memory to at least 128.
Here are a couple ways of doing that: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Devin
Hi vijaypillai,
That is where the sidebar shows up on single product pages. The items within are all wrapped in the proper sidebar/widget wrappers so i’m not sure what you mean by unformatted.
Regards,
Devin
May 28, 2013 at 6:35 pm in reply to: It appears that there is an update awaiting approval at Envato/Themeforest? #121759Hi MikehJPP,
The changelog is posted at the bottom of the theme page: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi
So there wouldn’t be a point in also adding it to a sticky for each theme forum as well.
Also, any new features added with updates will be added to the product description. Enfold 1.5 is all bug fixes so if you were waiting on a feature, it isn’t coming with 1.5.
Regards,
Devin
Hi UKiain,
Try going to one of your pages and at the top right is a button/tab for “Screen Options”. Click and then in the panel that appears try checking the box for Advanced Layout Editor if it isn’t checked. If it is already, uncheck it and then recheck it.
Regards,
Devin
Hi Thomas,
WooCommerce doesn’t have an overall option for it as far as I know.
You can disable reviews on each product individually from the Product data>Advanced section on the individual product. You can also try adding the following to your functions.php file:
add_filter( 'woocommerce_product_tabs', 'custom_woo_remove_reviews_tab', 98);
function custom_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}Regards,
Devin
Hi Jan,
Try the video linked here for adding the advanced layout builder to custom post types: https://kriesi.at/support/topic/video-requests
Regards,
Devin
Hi Andy,
We don’t do one on one support. Any questions need to be posted here on the forums.
If you need more specific help, I’d recommend looking into a freelance developer who an help you customize and bug fix on a private basis.
Regards,
Devin
May 28, 2013 at 3:02 pm in reply to: Contact form as part of a text block… not possible with Enfold, but how? #121381Hey Andy,
Gravity Forms would definitely be the best option for that kind of flexibility.
Regards,
Devin
-
AuthorPosts