Forum Replies Created
-
AuthorPosts
-
Hi!
I’m sorry but you’re using a very old version of the theme, 2.7, which is not compatible with WordPress 4.0.1. Please download the latest version 3.0.4 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHi!
Thank you for using Enfold.
@R: I’m sorry but I can’ reproduce the issue on safari. Can you please provide a screenshot? The simple header switch is intentional because not all users require fancy animation for headers. If you want the animation on the link that you provided, unfortunately, this falls as a custom work and is beyond the scope of support. Please hire a freelance developer to configure the header.
@adwbtody: Please provide a link to the actual page with the issue.
Best regards,
IsmaelDecember 1, 2014 at 3:48 am in reply to: Centering columns in footer by content, not centering the margin between columns #360555Hi AlexKK!
Thank you for using Enfold.
Set the Footer Columns to 4. Add a blank text widget on Footer – Columns 1 and 4. Add the actual widget on Footer – Columns 2 and 3. If you can provide a link to the actual website, we would like to check it.
Best regards,
IsmaelHey yperfre!
Thank you for using Enfold.
Can you please deactivate the minify plugin so that we can see the issue?
Cheers!
IsmaelDecember 1, 2014 at 3:41 am in reply to: Adding ability to stretch and expand view on mobile #360551Hey!
You can only enable the zoom function on mobile device when you disable the responsive layout of the theme. Please go to Enfold > General Layout > Dimensions panel. Disable the Responsive Site setting.
Cheers!
IsmaelHi!
@solljul: I’m sorry that you’re having this issue. We haven’t encountered this problem before. If I am not mistaken, there is no download limitation specially for themes because they require frequent update. I’ll ask Kriesi to clarify this.@adwbtoday: You can actually update the theme directly on the WordPress dashboard. Go to Enfold > Theme Updates panel. I’m sorry but you’re seem upset. Do you have any issues regarding the theme? You’re posting a lot of negative comments on multiple threads.
Regards,
IsmaelDecember 1, 2014 at 3:27 am in reply to: wp-content/themes/enfold/css/dynamic-css.php on line 772 #360544Hey!
Please place the Portfolio Grid element inside a 1/1 column layout. This should fix the issue.
Best regards,
IsmaelHi timihecker!
Thank you for using Enfold.
I’m sorry but you’re using an old version of the theme, 3.0, which has some issues with WordPress 4.0.1. Please download the latest version 3.0.4 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHey!
You can set the page’s Layout to No Sidebar then use Widget Area element as sidebar. Place it in the middle of the grid row elements. If you can provide a screenshot of what you’re trying to accomplish, it’ll help.
Best regards,
IsmaelHi joanne!
Thank you for using Enfold.
You can move the icon with this:
a.iconbox_icon:before { position: relative; left: 4px; }Regards,
IsmaelDecember 1, 2014 at 3:12 am in reply to: Adding meta data author category and setting the blog "normal" layout :) #360537Hi!
If you want to add the category on the grid blog style, please edit postslider.php. Look for this code:
$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; } $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));Replace it with:
$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; } $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $category = get_the_category($the_id); if(!empty($category)) { $output .= '<span class="blog-categories minor-meta">Published '.__('in','avia_framework')." "; $output .= '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a>'; $output .='</span><div class="slide-meta-del">/</div>'; };Best regards,
IsmaelHey harrisnext!
Thank you for using Enfold.
I’m sorry but this is not possible without major modification on the theme files. Unfortunately, this task is beyond the scope of support. Please hire a freelance developer or visit Envato Studio or Werkpress.
Regards,
IsmaelHi!
I’m sorry but this is not possible without creating another query for the sticky posts on the config-templatebuilder > avia-shortcodes > masonry_entries.php file. Can you please provide a link to the single author blog posts with the sticky posts issue? We tested this on our installation and it’s only showing the sticky post once.
Cheers!
IsmaelDecember 1, 2014 at 2:18 am in reply to: Top and Bottom padding is different despite identical value #360524Hi axelfx07!
Thank you for using Enfold.
We tested this on our end and the padding of the color section looks the same. Can you please provide a link to the actual page with the issue? Yes, you can use the css to modify the color section padding.
.avia-section-large .content, .avia-section-large .sidebar { padding-top: 70px; padding-bottom: 70px; }Cheers!
IsmaelHey!
Can you please provide the link to the actual page with the issue? Also, place the code of the paypal button on pastebin.com.
Regards,
IsmaelHi bicounet!
Thank you for using Enfold.
You can add this on functions.php:
/** * Remove target attribute */ add_filter('wp_footer', 'avf_remove_target', 10); function avf_remove_target() { ?> <script> (function($){ $(window).load(function() { $( ".avia_partner_widget a" ).each(function() { $(this).removeAttr('target'); }); }); })(jQuery); </script> <?php }Remove browser cache then reload the page.
Cheers!
IsmaelHey!
Thank you for using Enfold.
@javierebollar: Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!
@elames: Thanks for helping out!Cheers!
IsmaelDecember 1, 2014 at 1:57 am in reply to: Question: It is possible to show pagination also on the top? #360517Hey!
You can remove the pagination on the parent page with this on Quick CSS:
.archive main.template-shop nav.pagination { display: none; }Cheers!
IsmaelDecember 1, 2014 at 1:53 am in reply to: Any ideas on the best way to create a sliding gallery with a custom background? #360513Hey!
Looks like it’s coming from the NGG plugin. Please add this on Quick CSS:
.page-id-25 #av_section_1 h3.slide-entry-title.entry-title > a { display: none; }Best regards,
IsmaelHi Jason!
Thank you for using Enfold.
When you say header image, you mean the logo? You can add this on functions.php:
add_filter('avf_logo','avf_new_logo_url'); function avf_new_logo_url($use_image){ if(is_page('PAGE NAME OR ID HERE')) { $use_image = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png"; } return $use_image; }Change the image url then add the page name or id.
Best regards,
IsmaelHey!
The screenshot is private. Please try to use imgur or get the proper dropbox link. It looks like this:
https://www.dropbox.com/sc/9s409nv3dip1312/AACmD84GVLsDMwPtLlPmXOFNa
Cheers!
IsmaelDecember 1, 2014 at 1:45 am in reply to: How to add an H1 title tag on homepage & other static pages? #360508Hey!
Why not place the h1 tag on the slider’s caption? Or add the special heading on top of the slider then push it upwards by adding a negative top margin.
Best regards,
IsmaelNovember 28, 2014 at 8:39 am in reply to: Quick question – what's the limit of images in an easyslider? #359449Hi ecojedi!
Thank you for using Enfold.
There is no image limit on the easy slider but adding hundreds of images on one slide will surely affect the page load. Honestly, I haven’t tested more than 10 images on the slider.
Regards,
IsmaelHey COLORIT!
Thank you for using Enfold.
Use this on functions.php:
function avia_new_excerpt_length( $length ) { return 300; } add_filter( 'excerpt_length', 'avia_new_excerpt_length' );Best regards,
IsmaelHi!
Thank you for the link.
Please add this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { strong.heading.avia-animated-number-title span { font-size: 20px !important; } }Best regards,
IsmaelHi!
If you want to apply the background on that particular page, you can add the page id selector before the table selectors. Something like this:
.page-id-3442 .main_color .avia-data-table .avia-highlight-col, .page-id-3442 .main_color tableDo it on all selectors.
Cheers!
IsmaelHey!
Please replace this css code:
.current-menu-item .avia-menu-text {color: #d1202f!important;}with this:
.current-menu-item > .avia-menu-text {color: #d1202f!important;} #top #header .av-main-nav > li.current_page_item > a .avia-menu-text { color: #d1202f; }Regards,
IsmaelHey art9-de!
Thank you for using Enfold.
You can move the menu upwards when viewing on mobile device:
@media only screen and (min-width: 768px) and (max-width: 989px) { strong.logo { display: none; } }Cheers!
Ismael -
AuthorPosts
