Forum Replies Created
-
AuthorPosts
-
Hey!
That is weird but I can’t reproduce the issue on my own test installation so it’s either a third party plugin or a file modification that is causing the issue. Please try to deactivate all plugins then test it again on IE.
Cheers!
IsmaelHi!
I’m sorry but this is not possible without using the advance layout builder. If you use the default editor, it will render all content inside a container with a fixed or max width. If you’re working on a page, you can modify the page.php file, if this is a post, edit the single.php file.
Regards,
IsmaelHey!
There are permission errors when we check the site:
Failed to load resource: the server responded with a status of 403 (Forbidden) : http://ecoproofbenelux.com/wp-includes/js/tinymce/wp-tinymce.php?c=1&ver=4109-20150505
Please make sure that WP installation have the correct folder/file permission: https://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPress
http://webmasters.stackexchange.com/questions/69692/forbidden-403-for-js-file-on-localhost
Regards,
IsmaelHi!
I don’t think there is a plugin for that. You need to get the link from the Media > Library panel then click the “Insert/edit Link” icon in the text block toolbar. You can also browser through the “Add Media” panel to get the url.
Best regards,
IsmaelHey mexi33330!
Thank you for using Enfold.
I would like to help but when I translate the inquiry it’s a bit unclear:
Hi,
Unfortunately the customer menu does not display made Bestellunge more. What’s wrong there?
For quick help, I’m really thankful :-)
LG mexi
Can you please clarify “Bestellunge” a bit?
Regards,
IsmaelHey!
I logged in to the site to check the settings but I can’t see the Settings > Media panel. Can you please provide the url?
Best regards,
IsmaelJuly 31, 2015 at 10:05 am in reply to: Blurry (Non-retina) images and text in Product Slider (woocommerce) #481203Hey Carl Emil!
Thank you for using Enfold.
This is the default styling of the heading tag which works well on retina displays.
.products .product h3, .products .product h4, .products .product h5, .products .product h6 { padding-top: 5px; font-size: 1em; line-height: 1.3em; font-weight: normal; margin: 0; }And this is your own css modification in the style.css file which is not retina ready:
.inner_product_header h3 { font-family: "brandon-grotesque"; font-size: 16px !important; font-weight: bold !important; text-transform: uppercase; letter-spacing: 0.14em; color: #0a4d6d; }You can use css media queries specifically for retina displays: https://css-tricks.com/snippets/css/retina-display-media-query/
Best regards,
IsmaelJuly 31, 2015 at 9:55 am in reply to: Layer slider – different effects in different browsers #481196Hi!
I think it’s just a cached version of the site. Looks OK now: http://www.ambitiousprnew.sensiblesmallbusinesswebsites.com/
We set the transition to Slide from right.
Cheers!
IsmaelHi!
I checked the site and header background looks OK. Did you fix it?
Cheers!
IsmaelHey!
1.) Add this in the Quick CSS field:
@media only screen and (max-width: 989px) { .responsive .phone-info { float: none; width: 100%; clear: both; text-align: center; }}2.) You can set the Enfold > Header > Mobile Menu > Header Mobile Menu activation to the second option. It will force the mobile menu to show earlier.
3.) If you want to adjust the vertical position of the title, use this:
.title_container .main-title { top: 2px; }Adjust the top position value if necessary.
Cheers!
IsmaelHey!
Alright. Please post the login details so that we can check it. Set it in the private field.
Regards,
IsmaelHey!
The max width and height of the images in the product page is set to 450px by default. They will not go larger beyond that point unless you happen to change the size on Woocommerce > Settings > Products > Display panel. You can create a canvas 450x450px in size then attach the product image there before uploading them. Use photoshop or any image editor.
Regards,
IsmaelHey!
There is no problem with the files. They can be easily transferred whenever you want. The problem is with the database. Maybe, you can ask your hosting provider to fix it for you. You can ask them for the access on the dev site.
Regards,
IsmaelHi!
I checked the home page and it is not set to transparent header. The option will only work for pages with transparent headers. It’s not going to work for the “Header is invisible and appears once the user scroll down” option.
Best regards,
IsmaelJuly 31, 2015 at 9:17 am in reply to: Three websites continually report errors in theme log files #481169Hi!
It’s not a critical error so you can just ignore it. This will help clear things out a bit. http://stackoverflow.com/questions/9869150/illegal-string-offset-warning-php
Best regards,
IsmaelHey!
I checked the html markup of the site and the scripts and stylesheets are loaded right after the body tag. Why is that? Those scripts should be included in the head tag. Did you install a plugin to change it? I was able to reproduce the issue on my installation and the code above fixed it.
Cheers!
IsmaelHi!
You can replace this code:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');with this:
$excerpt = get_post($entry->ID); $excerpt = preg_split( '/<!--more(.*?)?-->/', $excerpt->post_content );And this line:
if($excerpt)$output .= "<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";with this:
if($excerpt)$output .= "<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt[0]}</div>";It’s basically the same as your first solution. Regarding the br tags, unfortunately, that is the default behavior of the wp editor. I don’t think we can do anything about it. If you want to preserve the br tags, try not to switch to the visual editor. You can also try this plugin:
https://wordpress.org/plugins/toggle-wpautop/
Cheers!
IsmaelHey!
1.) If you want a search bar inside the mobile menu, 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, use this code in the Quick CSS field:
@media only screen and (max-width: 767px) { #top #searchform>div { display: block !important; opacity: 1 !important; } }2.) I’m sorry but you can’t add a link to the fall back image.
Best regards,
IsmaelHey!
Where did you add the columns? What page? Please add the url here.
Regards,
IsmaelHi!
The slider images resize correctly but you have this css code which breaks the default layout of the color section.
#home-images-section { position: fixed; }I assumed this code is needed to create a fixed background effect.
Regards,
IsmaelHey!
I’m not sure if we understand each other correctly. I’m using google translate to read your inquiry. Please post the login details here. We will check it.
Cheers!
IsmaelHi!
1.) Please remove that code then replace it with this:
#top .main_menu .menu { background-color: rgba(255,255,255,.8); height: 70px; }Don’t forget to remove browser cache before checking the page.
2.) Alright. Use this to remove the top border of the sub menu:
.av-main-nav > li > ul { border-top: 0; }3.) The shuffle mode is ON when you checked it? Please remove browser cache then test the slider again. You might be looking on a cached version of the site.
4.) If the plugin didn’t work, please hire a freelance developer. You can contact codeable: http://kriesi.at/contact/customization
Cheers!
IsmaelHi!
I logged in to the site yesterday and yes, I can see the issue. Is it OK if we switch to a default theme while checking the site? We would like to fix the issue but unfortunately, we are not familiar with the plugin so it will help a lot if you can contact the plugin author. Note that we don’t provide support for third party plugins as stated on our support policy but we will try to find the issue.
Cheers!
IsmaelHey!
I can’t reproduce the issue on an iPod. Anyway, please try to add this in the functions.php file:
.avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry { -webkit-animation: none; /* Safari 4+ */ animation: none; /* IE 10+ */ }It will disable the masonry animation. Remove browser cache then reload the page.
Regards,
IsmaelHey!
Please try to add this to the functions.php file:
add_action('wp_footer', 'add_custom_script'); function add_custom_script(){ ?> <script> (function($){ $(window).scroll(function () { var sliderheight = $('.avia-fullscreen-slider').height(), winh = $(window).scrollTop() + 1, menu = $('.html_header_sidebar #header .av-main-nav > li:first-child'); // console.log(sliderheight + " " + winh); if(sliderheight < winh && !$('.html_header_sidebar #header .av-main-nav > li:not(:first-child)').hasClass('current-menu-item')) { $(menu).addClass('current-menu-item'); } else { $(menu).removeClass('current-menu-item'); } }); })(jQuery); </script> <?php }Remove browser cache then reload the page.
Cheers!
IsmaelHi!
Please remove the modifications above then look for this code:
if(empty($this->atts['thumbnails'])) { $image = ""; $extraClass = "av-magazine-no-thumb"; }Below, add this code:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');If you want to increase the excerpt length, use this in the functions.php file:
add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1); function avf_magazine_excerpt_new_lenght($excerpt) { $excerpt = 200; return $excerpt; }The br and p tags are remove because of the wpautop function which is a default feature of WordPress. https://codex.wordpress.org/Function_Reference/wpautop
Best regards,
IsmaelJuly 30, 2015 at 11:49 am in reply to: Full display of blog post with advance blog layout in category #480626Hey!
If you build the content of the post by using the advance layout builder, the content is not going to show up in the archive or category pages. You need to create a summary in the Excerpt box of the post. Unfortunately, it’s not possible to display the ALB content on archive or category pages without major modification on the theme.
Best regards,
IsmaelHey!
You can follow the solution provided here: https://kriesi.at/support/topic/disable-dates-showing-in-magazine/#post-441877
Regards,
Ismael -
AuthorPosts
