Forum Replies Created
-
AuthorPosts
-
September 7, 2015 at 8:23 am in reply to: File to change the speed of the fullscreen slider transitions #499091
Hey!
Can you please provide a link to the page with the slider? We would like to check it.
Regards,
IsmaelHi!
Did you copy the code right from your email? Please copy the code directly from the forum. Make sure that all symbols (parentheses, semicolons etc) are intact.
Best regards,
IsmaelHey!
For the masonry element, try to adjust the width of the image before uploading. Make sure that it is not wider than 705px. Adjust the dimension of this image ( http://www.rorygibsonarchitects.co.uk/wp-content/uploads/2015/05/Synton-5.jpg ) to 705x286px.
Cheers!
IsmaelSeptember 7, 2015 at 8:11 am in reply to: theme shortcode button looses target "_top", but "_blank" works #499084Hey!
Please turn on the custom css class field. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Modify the buttons that requires a target=”_top” attribute. In the custom css class field, add something like “custom-button”. Update the page. Add this in the functions.php file afterwards:
// target _top function add_custom_script(){ ?> <script> (function($) { $('.custom-button a').each(function() { $(this).removeAttr('target'); $(this).attr('target', '_top'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');If you’re working on a shortcode, just add this parameter inside the button shortcode:
custom_class='custom-button'Regards,
IsmaelSeptember 7, 2015 at 8:01 am in reply to: Place an image betwen the top of page and the header #499081Hi!
There is no default option for adding elements above the header so you have to modify the theme files directly. Go to the Appearance > Editor panel. Modify the header.php file. Look for this code:
if(!$blank) //blank templates dont display header nor footer { //fetch the template file that holds the main menu, located in includes/helper-menu-main.php get_template_part( 'includes/helper', 'main-menu' ); } ?>Above that, you can add another container. Something like this:
<div class="custom-background-image container_wrap"></div>Use the Quick CSS field to apply the image as background.
Regards,
IsmaelSeptember 7, 2015 at 7:56 am in reply to: Individual size of pictures doesn't work in Blogposts #499078Hey!
I’m sorry but I’m not sure I understand it clearly. What do you mean by ” I gave the picture a individual size “? How did you do that? Please provide a screenshot so that we can understand it better.
Cheers!
IsmaelHi Richard!
Thank you for using Enfold.
Try to use the Grid Row element to create nested columns.
Best regards,
IsmaelHey!
I’m sorry for the delay. The issue seems to be server specific which makes it hard to debug. Please try use the icon font manager again to regenerate the error. After that, ask your hosting provider for the php error log.
Regards,
IsmaelHey leRenaar!
Thank you for using Enfold.
If you can alter the query parameter of the events, the post nav settings will automatically follow. The post nav script is base on the get_previous_post and get_next_post functions which can only retrieve the adjacent post. Please contact the plugin author regarding the events query.
Regards,
IsmaelHey webmanu!
Thank you for using Enfold.
I’m not sure if this is going to work with the ACF plugin but there are modules that lets you add php codes inside the editor:
https://wordpress.org/plugins/insert-php/
https://wordpress.org/plugins/shortcode-exec-php/Please contact the ACF plugin author for more info.
Regards,
IsmaelHey!
Which browser did you use to test the page? If the background is repeating, maybe this will help:
.page-id-14 #main > .container_wrap { background-repeat: no-repeat; }Remove browser cache then reload the page.
Best regards,
IsmaelHi!
Please modify the includes > helper-main-menu.php file. Look for this code around line 108:
if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;Add the flag code below.
Regards,
IsmaelHi!
Please do as suggested then we will provide you with the css modifications to remove the margin. Also, in the color section option panel, add an id in the Section ID field. Use “custom-section” for example. A screenshot of the actual layout that you have in mind will help. Use imgur or dropbox.
Regards,
IsmaelHi!
Unfortunately, this is not possible. You will have to update the file every time you upgrade the theme. Create a change log or note of some sort in case you update the theme.
Regards,
IsmaelSeptember 7, 2015 at 4:22 am in reply to: Standard Kategorieanzeige zeigt falsches Bildformat / Woocommerce Kategorieseite #498994Hey!
Resize the images before uploading them as product image. If you set the Woocommerce > Settings > Products > Display > Catalog Images settings to 450x450px, try to resize the images to 950x950px or to the exact dimension specified. If there are images with different orientations, create a square canvas on photoshop or any image editor then attach the product image. Disable the “Hard crop?” option. The point is to not let WP do all the image cropping and resizing.
Cheers!
IsmaelSeptember 7, 2015 at 4:18 am in reply to: Mega Menu – broken design in second column with hdden title #498992Hi!
I was able to reproduce the issue but I still don’t know the root of the problem. If you replace the dash symbol with the “non-breaking space” (   ;) entity, it seems to correct itself. NOTE: Remove the ; symbol after the letter “p” to create a non-breaking space. http://enfold.drachenmond.de/
Cheers!
IsmaelSeptember 7, 2015 at 4:04 am in reply to: Add advertising banner to the right of post selected image? #498990Hi!
You need to modify the includes > loop-index.php file. Look for this code:
echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';Add the adsense code below. You will have to add css modifications afterwards.
.big-preview.single-big { float: left; width: 50%; }Cheers!
IsmaelHey Jan!’
Thank you for using Enfold.
The code is actually incorrect. The body tag contains the #top id attribute, basically, they’re the same. Please replace it with:
@media only screen and (max-width: 467px) { body { font-size: 13px;!important; } }OR
@media only screen and (max-width: 467px) { #top { font-size: 13px;!important; } }Best regards,
IsmaelHi!
Is it the same when you activate a default theme? If it is then it is a browser or WP specific issue.
Cheers!
IsmaelSeptember 7, 2015 at 3:51 am in reply to: Enfold theme not updating through Envato Toolkit plugin #498986Hey!
We will include it in future updates. Are you experiencing any issues with the current version of the plugin?
Cheers!
IsmaelHey Khalid!
Thank you for using Enfold.
1.) Looks like you managed to remove the border. Is that correct?
2.) Go to Appearance > Menus panel. Edit the menu item, look for the Description field.
3.) Add this in the Quick CSS field to change the background on mobile view:
@media only screen and (max-width: 767px) { .header_color .header_bg { background-image: none; background-color: #000000; }}Regards,
IsmaelHi Anton!
Thank you for using Enfold.
Modify the sidebar.php file, look for this code:
//global sidebar if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;Place it above the other widget areas.
Best regards,
IsmaelHey eny4W!
Thank you for using Enfold
Did you add any css modifications to alter designs on mobile devices? Please upgrade the theme to the latest version 3.3.2. If the upgrade doesn’t fix the issue, use this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header { top: 50px !important; border: 0; }}Regards,
IsmaelSeptember 6, 2015 at 4:15 am in reply to: How to insert different background images to mega menu? #498793Hi!
Please try to adjust the code to something like this:
.avia_mega_div > .sub-menu { background: url("//barkingzebratours.com/new/wp-content/uploads/2015/08/Megamenu_kili-1050.jpg") !important; background-size: 100% 100% !important; } .avia_mega_div .sub-menu li, .avia_mega_div .sub-menu a, .avia_mega_div > .sub-menu li ul { background-color: transparent !important; }Best regards,
IsmaelHi Mark!
Thank you for using Enfold.
We haven’t included the latest version of the plugin yet but it will be included eventually. Please wait for the next theme update.
Best regards,
IsmaelHey!
@fjhughes: If you can’t update the theme automatically, try to update the theme via FTP: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/Best regards,
IsmaelHi!
If you want to add a search box inside the mobile menu, please add this in the functions.php file:
add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 ); function avf_add_search( $items, $args ) { if ($args->theme_location == 'avia') { $search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>'; $items = $search . $items; } return $items; }After that, add this code in the Quick CSS field:
@media only screen and (max-width: 767px) { #top #searchform>div { display: block !important; opacity: 1 !important; } }Regards,
IsmaelHey!
Alright. If you have the chance to access the site, try to add this in the functions.php file:
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); $args['link'] = get_permalink($id); $args['heading'] = 'h1'; } return $args; }https://kriesi.at/support/topic/cant-change-blog-die-aktuellsten-neuigkeiten/#post-460731
Best regards,
IsmaelSeptember 6, 2015 at 3:48 am in reply to: Title in Single-Portfolio-Page and position of picture #498786Hey!
Add this code below the other one:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); function avf_title_args_mod($args,$id) { if ( is_single() ) { $category = get_the_category($id); $args['title'] = $category[0]->name; $args['link'] = get_permalink($id); } return $args; }Regards,
Ismael -
AuthorPosts
