Hey runekjensen!
The progress bar does not display any units (i.e. percentage or currency) but it will change the length of the progress bar based on the percentage value you insert into the option field (i.e.: http://kriesi.at/themes/enfold/shortcodes/progressbars/ ). If you want to calculate the percentage on your own you can use the progress bar shortcode without doing any code customization. However note it does not support automatic calculations – i.e. it won’t calculate the percentage based on the amount raised to far, etc.
If you need such a calculation I recommend to try third party plugins like: http://wordpress.org/plugins/personal-fundraiser/ which can be used for professional fundraising campaigns.
Cheers!
Peter
Hi altr!
In WordPress dashboard, please go to Appearance > Editor and open functions-enfold.php file and find
{
$entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
else
{
$entries['prev'] = get_previous_post($settings['same_category']);
$entries['next'] = get_next_post($settings['same_category']);
}
and replace it with
{
$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
else
{
$entries['next'] = get_previous_post($settings['same_category']);
$entries['prev'] = get_next_post($settings['same_category']);
}
Best regards,
Yigit
Hi Devin,
Thank you for your quick reply. Are there people at Kriesi who do this kind of customizations? If so, is it possible to get a quote? And if not, do you have suggestions where to look for a good developer who knows this Enfold theme? What would be the required skills for such developer?
Hopefully you can answer these questions.
Best regards,
Stephen
I’ve try also to modify the default slider “Enfold – most beautiful theme ever”, but in this case I can’t save anythig.
Hi Ismael,
Thanks for your help! Thats exactly what I wanted!
However, I would like to have this layout only for some of my pages like my “News” page.
With this css code:
.slide-image {
width: 30%;
margin-right: 10px;
float: left;
}
I get all of my blog pages displayed that way. (for example, for my “Tours” post page I wanna use the masonry option) Can you please tell me what selector(s) to add to this code?
And again, I want to know if Enfold has a feature that tells you in one element the latest updates of posts and custom post types. Or is it something I have to deal with the plugins?
Thanks for your support.
Yeas
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-icon-pos-left { clear: both; }
Cheers!
Yigit
Hi!
Please review your website now. I have uploaded your new logo and made some CSS changes. You can find custom CSS in Quick CSS section in Enfold theme options
Best regards,
Yigit
Hi aliquill!
The fullwidth slider will always stretch the image to 100% width and the height may increase if the screen resolution is higher than the image width. Kriesi uses images with a resolution of 1500px x 430px on his demo website: http://kriesi.at/themes/enfold/shortcodes/easy-slider/ – this should also be a good starting point for your images but you can select a different image size on the option page: http://www.clipular.com/c/6199712663207936.png?k=z3LVqIyzGAvZkbUFp9HSNxvmjwA
Regards,
Peter
Hello
I’m sorry to again discuss about that (https://kriesi.at/support/topic/building-a-non-conventional-website-with-enfold/) but you have close my ticket.
You said “individual theme features are not able to be pushed out under any specific deadline” but i’m not agree with you :)
I do not consider that it is an “individual theme features”!
If you have made possible to have pages as blog with masony features you may consider that the work is not finished:
In a post, the breacrumb do not work at all because it is build with the archives pages
The mainmenu is unable to tell where you are (no highlight links)
It creates Duplicate Contents (yes, on my new site you can go there:
http://www.domodeco.fr/l-exterieur/terrasse
and there:
http://www.domodeco.fr/exterieur/terrasse
The first one is a page with blog contents inside masonry, and the nex one is the archive!
I’m very suprised that nobody else has seen that, or maybe i’m the only one who use mansory page with blog content?!
Please advice the author that it can’t leave us with a mess like that /-)
Thank you
Hey!
Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and replace
if($format == 'link')
{
$current_post = array();
$current_post['content'] = $entry->post_content;
$current_post['title'] = $entry->post_title;
if(function_exists('avia_link_content_filter'))
{
$current_post = avia_link_content_filter($current_post);
}
$link = $current_post['url'];
}
with
$linktarget = '';
if($format == 'link')
{
$current_post = array();
$current_post['content'] = $entry->post_content;
$current_post['title'] = $entry->post_title;
if(function_exists('avia_link_content_filter'))
{
$current_post = avia_link_content_filter($current_post);
}
$link = $current_post['url'];
$linktarget = 'target="_blank"';
}
and
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
$output .= "<div class='slide-content'>";
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false));
$output .= '<header class="entry-content-header">';
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
$output .= '</header>';
with
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
$output .= $thumbnail ? "<a href='{$link}' {$linktarget} data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
$output .= "<div class='slide-content'>";
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false));
$output .= '<header class="entry-content-header">';
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' {$linktarget} title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
$output .= '</header>';
Best regards,
Peter
Hey!
What type of header do you have? Please check on Enfold > Header > Header Type. Please post the link of the actual website here.
Best regards,
Ismael
Hi,
I did noticed that since I’m moving from Sentence theme to Enfold that if anyone wants to share a post on the blog, facebook isn’t able grab a picture of the blog posts I wrote since I changed the theme and doens’t display the meta describtion aswell??
Any cloes why? I’m using shareholic, but changed nothing with the move from Sentence to Enfold.
Thanks,
Tina
Hey vadesign!
Please give us a link to the page. DId you set the page as home page on Enfold > Frontpage Settings?
Cheers!
Ismael
Hi!
Enjoy the Enfold theme. Let us know if you need any help. You can watch this video to learn more about the theme: http://vimeo.com/channels/aviathemes/
Best regards,
Ismael
Hi There – I’m wondering if there is a way to increase the size of the social media icons in the header of the enfold theme? I’m using the ‘header with social icons and navigation on the bottom’ option.
thanks
Hey Folks – here’s my latest with Enfold!
http://www.acmena.com.au/
Hi David!
The website is on maintenance mode.
Best regards,
Ismael
Hi donwattz1459!
Go to Enfold > Sidebar > enable the “Sidebar on Smartphones Show sidebar on smartphones (Sidebar is displayed then below the actual content)”. Remove browser cache then reload the page.
Best regards,
Ismael
Hey Eric!
You can do the following in order to increase the max execution time:
1. Edit wp-config.php. Add this:
set_time_limit(60);
2. In htaccess:
php_value max_execution_time 60
3. Or edit php.ini. Ask your host.
max_execution_time = 60 ;
Try to increase php memory limit, refer to this link.
Cheers!
Ismael
Hi fgrippe!
Add the class selector “alignleft” on the anchor tag. You can add something like this on the Text Block:
<a class="alignleft" href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21.jpg"><img class="awesome-image" alt="Awesome Balloons" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21-300x195.jpg"/></a>
Use the “awesome-image” selector to specify the width and height of the image on Quick CSS:
.awesome-image {
width: 100px;
height: auto;
}
Best regards,
Ismael
Hey fgrippe!
Go to Enfold > Styling > look for “Defines the Font for your body text”. Select “Helvetica Neue”. Add this on Quick CSS or custom.css:
h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica Neue", "Times New Roman", Georgia, Arial, sans-serif;
}
Cheers!
Ismael
Hi- your theme is amazing- I am new and have searched the forums but haven’t found a clear answer to my question.
I would like to have a single background image throughout my site in the enfold theme and have transparent backgrounds everywhere- like this example- http://geoglassdesign.com/shop/
I have pasted this into the quick css: and it worked for the header. Is there an easy way to do this everywhere?
.header_color .header_bg, .header_color{
background-color: transparent;
}
would really love your help…
I am using the Enfold theme and it has the option to show a fullwidth masonry where you can choose to display the post Title and/or Excerpt.
Now I am using the “WordPress SEO” plugin from Yoast and here I can set the “SEO title” and “Meta Description” which are used by Google to display title and excerpt in the search results.
The SEO title is 70 characters max and the excerpt 156 max.
Because I already have written 2 good excerpts (both SEO title and meta description), I want to use one of these instead of the excerpt your theme uses by just taking the first x number of characters from the post. How can I get it to use the “SEO title” instead?
Thank you in advance for helping out.
Kind regards,
Stephen
Hey Tina!
This website has Sentence active, please activate Enfold and apply the changes Yigit provided so we can continue with the next ones.
Cheers!
Josue
Hi!
Have you set the frontpage in the Enfold theme options too?
Regards,
Josue
Hi :-)
Since I update my enfold theme I have a litte problem:
The content looks like:
1. This is an example
—— 2. This is an example
————— 3. This is an example
———————– 4. This is an example
The new animation for the icons is pretty cool, but I don’t like text entry on each line…
How can I disable it?
Thanks for help!
-
This topic was modified 11 years, 10 months ago by
Fabrice.
I am getting an Http error when uploading images. I was on the phone with Godaddy support and they traced it back to theme (activated twenty13 theme and worked fine). I tried disabling all plugins and still no luck. I am also getting a 30 second timeout error when i disable htaccess file. The file am am trying is less than 1mb in size and takes only a couple seconds to upload. Error seems to occur during crunching.
Also get this sometimes: Fatal error: Maximum execution time of 30 seconds exceeded in /home/content/21/11561321/html/wp-includes/class-wp-image-editor-imagick.php on line 338
-
This topic was modified 11 years, 10 months ago by
ericdiro.
Hello!
You can request a quote here.
Cheers!
Josue
Thanks for your help. I think I will hire you guys to help since I have several things I would like to do and a limited time to do it in.
Hey!
I know, but that’s the starting point, the centering will be done via CSS.
Cheers!
Josue