Enfold feature request – Gallery and Portfolio.
1 – Gallery
Ability to add captions/descriptions under (or over) the main/large preview image in the Gallery with Preview.
Also to have these captions/descriptions appear under (or over) the pop-up slide show images
2 – Portfolio
To have the option of removing the grey keyline borders completely.
To be able to introduce space between images
Thanks,
:o)
OK, thanks Devin – I’ll explore some plugins.
I’ll also post the option to include captions in the ‘feature request’ thread.
:o)
Enfold 1.6
Wordpress 3.6.1
I am trying to add the following shortcode to display the 10 latest blog posts into a standard wordpress text widget to show on the blog pages of the site including the archive and category pages:
[display-posts posts_per_page=”10″]
The shortcode does not work. It just shows the text exactly as typed into the text widget.
Any idea?
Dear Ismael,
You can even see how the logo is broken in Google Chrome in my computer, not event in my Nokia Windows Phone,…
See here, http://equipodemarketing.com/contacto/
Have you talk with Kriesi about this problem?. Please I need a solution, because my client starts to be angry.
What reason this happens with Enfold version 2.4.2 and not whit 2.3.2.?
See here, http://equipodemarketing.responwebdesign.com/contacto/
Many thanks for everything, Adolfo
Hi beyondeverything!
Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
Peter
Hi!
Der Code findet sich in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog.php – suche nach folgender Function
function query_entries($params)
Vermutlich muss man eine meta_query hinzufügen bzw mittels meta_value oder meta_value_num den orderby Wert anpassen.
Best regards,
Peter
Hi!
Yes – you can use the after_setup_theme hook – i.e. following function would overwrite the entry_without_sidebar thumbnail size which is define in functions.php.
function avia_after_parent_theme_setup() {
global $avia_config;
$avia_config['imgSize']['entry_without_sidebar'] = array('width'=>1030, 'height'=>450 );
}
add_action( 'after_setup_theme', 'avia_after_parent_theme_setup', 10);
Regards,
Peter
Hi Josue,
Thanks for your reply. I allready found that post and it didn’t mention anything about editing .php files in your child theme.
I want to load the .php files from the enfold theme first, and then have the changes in my child overrule the regular enfold theme. Is there some code to get this done?
Hey!
As far as I know the contact form code/class is wrapped into a “class_exists” check – thus you can overwrite it with a child theme. Just make a copy of the /wp-content/themes/enfold/framework/php/class-form-generator.php file and place it into the child theme folder. Then modify class-form-generator.php in your child theme folder and add following code to the child theme functions.php:
require_once( 'class-form-generator.php' );
to include the code/file. WordPress will load the child theme code first and the parent theme will use it because the “class_exists” check avoids that the contact form code will load a second time.
Cheers!
Peter
thank you Devin, for the information. So I need to use a work around. So I will copy the administrator role, and strip it from all the rights I do not want the semi-admin to be able to do. Should work then.
But it would be cool if you and your team could maybe think about capabilities and user roles, so that the site admin can determine other user groups, and what they are able to do. Because I think it is often a topic, to let users do some things (for instance set up sliders) but not let them update plugins or something. So maybe a solution for the user rights of the layout builder and the slider would not be a bad idea. :)
Thanks and best regards from Austria :)
Hey theworldawaits!
Please try to add an important tag to your css code
p.verse { font-size: 9px !important; }
There’s no general tooltip feature at the moment but you can use the “icon” shortcode which supports a tooltip Enfold v2.4.1. Another solution would be the html5 abbr tag: http://www.w3schools.com/tags/tag_abbr.asp which can be used for a small tooltip box.
Best regards,
Peter
Add a blue button to a post (button has white text/icon and blue background and lighter blue background on mouseover)
copy shortcode
create text widget in sidebar
add shortcode
the resulting button in the sidebar has dark text instead of white.
Mouseover changes text to white but it seems the default color for the button text is controlled somewhere else.
Internal site so no links but that should be easy to reproduce
EDIT: the button on the page looks just like the shortcode demo, white text with colored background that changes slightly on mouseover.
Taking the same code and putting it in the sidebar gives a different default text color
Hello,
I had questions regarding updating enfold theme. Should I always keep track of files that I changed and later insert things I changed into new files? I mean this: update/replace whole theme and then fill with my changes again, or there is easier way to keep track of changes in relation to previous version?
Hey!
But you completely deactivated the sidebar on these pages? BBPress normally will show a sidebar on the right (like here: http://kriesi.at/themes/enfold/forums/ ) you’re using a fullwidth page template at the moment. Maybe you modified a file to remove the sidebar (forum.php, etc.)?
Cheers!
Peter
@Compustar82 Beyond Compare is a fantastic program and time saver. http://www.scootersoftware.com/
@Devin , not trying to meddle with your support here, just trying to help. I have no relation to this company, but can vouch that it works as advertised and many programming friends I know use it. Although there is a trial available, comparison software is well worth the price due to the time it saves you. If you do any type of web management or programming and value your time, it’s definitely worth the cost.
Cheers.
Are those recommended above the included contact form in Enfold?
Is it possible that when someone completes a form, it will attach an excel file of the form to the email send to my address? I’d like it in excel so that I can then directly import that into a quotation software.
Josue,
Is there a really excellent web forms plugin that integrates easily with the Enfold theme? I am not a fluent web designer but I have a limited budget with this project so I have to roll up my sleeves and try many things myself.
Hi!
Regarding the logo element, yes that would be it.
For the page/single titles, actually you’ll need to edit this file: functions-enfold.php:
Change line 274:
'heading' => 'h1'
To this:
'heading' => 'h2'
Cheers!
Josue
Hi,
Just for confirmation (as i cannot afford to make a mistake :( )
1) Need to use the following for changing image structure right?
In header.php replace:
echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, false, ‘strong’);
with:
echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, false, ‘h1’);
2)Need to use the following for changing page title right?
add following code to functions.php:
add_filter(‘avf_title_args’, ‘fix_single_post_title’, 10, 2);
function fix_single_post_title($args,$id)
{
if ( is_single() )
{
$args[‘title’] = get_the_title($id);
}
return $args;
}
I have taken the All contents backup with wp export within tools as well as using xcloner plugin that will be enough for backup right?
For Enfold, after a huge amount of user complaints we turned off wpautop so that the shortcodes had better support and so did third party plugins within the text editor.
You can either use break tags in the text tab or use this shortcode to define your space explicitly:
[av_hr class='invisible' height='30' shadow='no-shadow' position='center']
The number 30 being the height of the whitespace displayed.
Hi!
Did you add the css from above? My point is that the box width doesn’t actually make the items fit onto one line.
Regards,
Devin
Hey Niels!
Not with any of the built in gallery types. You could either try using a plugin or just using the built in WordPress gallery which I believe has some caption support.
Cheers!
Devin
Hi netengineat!
As far as I know it is only available for Admin users specifically.
Regards,
Devin
My theme says I am up to date
“No Updates available. You are running the latest version! Great!” I am running version 2.0.1.
Why will it not update?
Kind Regards
Michael LoMonaco
Looking for a way to disable the Previous and Next arrows that show on the sides of a post.
Can this only be done globally or can the control be left to the individual post where a toggle could be added on the post page?
Not a feature request just an idea if the only option is all or nothing.
Anyway…how does one remove the previous and back links?
Thanks in advance
Hi Syclopz88!
Please login on ThemeForest with the account you have purchased Enfold and go to Downloads section to download the latest version of Enfold.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Cheers!
Yigit
This reply has been marked as private.
Hey!
As i see you changed themes name to Midischool. so link is currently http://dev.midischool.com/wp-content/themes/midischool/dev.midischool.com/wp-content/themes/enfold/images/layout/bg-button.png
while it should be http://dev.midischool.com/wp-content/themes/midischool/images/layout/bg-button.png and you should have the image in that path.
Your current css is
.main_color input[type='submit'] {
background-color: #c05f5f;
color: #ffffff;
border-color: #a03d3d;
border-radius: 3px;
background-image: url("dev.midischool.com/wp-content/themes/enfold/images/layout/bg-button.png"); }
You should change the path here and other other codes where you used gradient as background image
Cheers!
Yigit
Hey eastmanbrent!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .mobile_menu_tablet .main_menu {
display: block;
}}
Best regards,
Yigit