Forum Replies Created
-
AuthorPosts
-
Hi,
Can you help me with the code to align the logo with the background-image?
1.) Please use this css code to adjust the top position of the logo image.
.logo img { top: 15px; }I would also like to change the background-image on the mobile so that it is placed under the logo with some padding above and below.
2.) Could you please provide a screenshot of the layout that you have in mind? Please use imgur or dropbox for the screenshot.
Best regards,
IsmaelJanuary 18, 2017 at 8:43 am in reply to: How to prevent the transparent header on mobile to transform into normal header? #735188Hi,
I can’t reproduce the issue on my installation, maybe I don’t have the exact settings. Could you please provide the login details so that we can check page settings? What is the original purpose of the css modifications above? Why do you need it? I added it in my installation but it’s not doing anything, again, maybe because of the page settings or layout.
Best regards,
IsmaelJanuary 18, 2017 at 8:35 am in reply to: Date and Author Missing from single post with Grid View #735185Hi,
no the post titled “Squash + skinnypasta = a new mom’s dream meal” is still missing date and author for some reason.
Yes, I didn’t notice that. My bad. I’m not sure why it doesn’t have the date info. Have you tried to delete it then re-create it from scratch? Make sure to delete it permanently in the trash to avoid minor slug or url conflict. And what happens if the plugins are deactivated?
Best regards,
IsmaelJanuary 18, 2017 at 8:29 am in reply to: Which function is responsible to display the_content(). #735184Hey Legendaryz,
Thank you for using Enfold.
Which element or template are you referring to? Is this the post item? If it is, you can find the function in the includes > loop-index.php file.
$current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>') : get_the_excerpt(); $current_post['content'] = $blog_content == "excerpt_read_more" ? $current_post['content'].' <div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div> ' : $current_post['content'];It’s the get_the_content or the get_the_excerpt function, depends which option is enabled in the backend.
Best regards,
IsmaelHey happybloodycamper,
Thank you for using Enfold.
The is the blog posts element set to 2 columns. You can insert the element inside a grid row or a color section then set the columns to 4.
Best regards,
IsmaelHey Flávio,
Thank you for using Enfold.
Please provide a link or url to the actual page with the date info. Is this a single post item?
Best regards,
IsmaelJanuary 18, 2017 at 7:40 am in reply to: [solved] enabling avia_builder for CPF doesn't work #735162Hi,
The $post_type or the first parameter of register_post_type function should not contain capital letters.
// https://codex.wordpress.org/Function_Reference/register_post_type
Instead of creating the custom post manually, please use the following plugin.
// https://wordpress.org/plugins/custom-post-type-ui/
Best regards,
IsmaelJanuary 18, 2017 at 7:36 am in reply to: Flexible Masonry Gallery: problem with the order of images #735160Hey Daniel,
Thank you for using Enfold.
Which of the items are not in order? Could you please provide a screenshot? This issue does happen on masonry element but we don’t know what’s causing it. If I have to guess, it’s because of the image sizes. As much as possible, make sure that all images in the gallery have the same exact dimension.
Best regards,
IsmaelJanuary 18, 2017 at 7:28 am in reply to: Hyperlinks to section id specific colour sections giving me and others an error #735159Hi,
The url is incorrect.
<a href="../accommodation/#alpine_retreats‎">Alpine Retreats</a>Please use absolute url.
<a href="http://james.artyzans.co.uk/wp/accommodation/#alpine_retreats">Alpine Retreats</a>Best regards,
IsmaelHi,
Which specific element or template are you referring to? If you’re talking about the posts, you can find the function in the includes > loop-index.php file.
$current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>') : get_the_excerpt(); $current_post['content'] = $blog_content == "excerpt_read_more" ? $current_post['content'].' <div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div> ' : $current_post['content'];The theme is using the get_the_content or the get_the_excerpt function, depends on the blog posts settings.
Best regards,
IsmaelJanuary 18, 2017 at 6:46 am in reply to: How to align a masonry element to the right in RTL language site #735139Hi,
The masonry element is limited to left-to-right layout at the moment. You can replace it with the portfolio grid element if you really need the rtl layout and then follow this link.
// https://kriesi.at/support/topic/rtl-portfolio-grid-2/#post-714685
This option was disabled because it doesn’t work well in the masonry element. You can test it by editing the js > shortcodes.js file, look for this code around line 1436:
methods.applyMasonry(container, false, function().. replace it with:
methods.applyMasonry(container, 'av-masonry-entry', function()After that, go to line 1245:
var filters = selector ? {filter: '.'+selector} : {};.. replace it with:
var filters = selector ? {itemSelector : '.'+selector, filter: '.'+selector, layoutMode : 'fitRows', isOriginLeft : false} : {};You’ll see why it is disabled.
Best regards,
IsmaelHi,
Did you remove the code in the functions.php file?
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if($args['context'] == 'entry_time') { unset($attributes['datetime']); unset($attributes['itemprop'); } return $attributes; }Yes, there are a few requests about this and same snippets that we provided here worked for them.
Best regards,
IsmaelHey DaFool71,
Thank you for using Enfold.
Please remove the css modification then add this code in the functions.php file:
// set sidebar height add_action( 'wp_footer', 'ava_custom_script' ); function ava_custom_script() { ?> <script type="text/javascript"> (function($){ var a = function() { var ch = $('.container .av-content-small.units').height(); $('#top #main .sidebar ').css('height', ch); } $(window).load(function() { a(); }); $(window).on('debouncedresize', function() { a(); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
The width and height attributes are added to the markup to satisfy google crawlers. If you want to remove it, please edit the includes > helper-main-menu.php file then look for this code around line 122:
$output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);.. set the last parameter to false:
$output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', false);The attributes are not going to affect the actual dimension of the logo because it is specifically declared in the layout.css file.
.logo img { padding: 0; display: block; width: auto; height: auto; max-height: 100%; image-rendering: auto; position: relative; z-index: 2; height: 100%\9; height: auto\9; -webkit-transition: opacity 0.4s ease-in-out; transition: opacity 0.4s ease-in-out; }Best regards,
IsmaelJanuary 18, 2017 at 6:14 am in reply to: Child theme translation not working (changes in PO file doesn't reflect) #735122Hi,
Thank you for using Enfold.
What’s missing? Did you set the installation in your own language?
Best regards,
IsmaelHi,
Yes, it’s quite confusing. Let me see if we can do something about the options in the future. Anyway, glad that it is working. Let us know if you need anything else. :)
Best regards,
IsmaelHi,
Please go to the Settings > General panel then set the Site Language settings to your own language.
Best regards,
IsmaelJanuary 18, 2017 at 5:59 am in reply to: Turn off all dates from appearing from anywhere – especially posts, category pag #735115Hi,
Please add this in the Quick CSS field.
.slide-meta-time.updated { display: none !important; }That option can be found in the Blog Layout > Blog meta elements section but it doesn’t work for the grid layout. And post meta info such as the date has great significance over search engine optimization, and we found out that only few users want to disable it hence the lack of options. Anyway, you can request the feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelHey Slade,
Thank you for using Enfold.
How did you set the height of the header? I checked the Header > Header Layout > Header Size option and it is currently set to “large”. Did you add any css modifications?
Best regards,
IsmaelJanuary 18, 2017 at 5:38 am in reply to: using a custom single-CTP.php page for a CPT I have added #735104Hi,
Are you using the advance layout builder? Please post the WP login details so that we can access the custom post.
Is this the correct directory?
// staging.infanttoddler.com/web/content/
Best regards,
IsmaelHi,
Yes, the slider will preload the image one at a time before it starts.
Best regards,
IsmaelHi,
Thank you for the info. We edited the code a bit. Please remove browser cache before checking the page.
Best regards,
IsmaelHey ralfbelusa,
Thank you for using Enfold.
How did you add the breadcrumb? And where do you want to add it? If you want to replace the default breadcrumb, please follow this thread.
// https://kriesi.at/support/topic/make-breadcrumb-path-follow-primary-category/#post-607364
Best regards,
IsmaelHey vero,
Thank you for using Enfold.
Please use the Icon shortcode and its Optional Tooltip field. You can insert the shortcode inside the table.
Best regards,
IsmaelHey ariane1001,
Thank you for using Enfold.
The pages do not exist. Are you using the portfolio items? Please remove all modifications then add this in the functions.php file:
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('portfolio')) { $settings['taxonomy'] = 'portfolio_entries'; $settings['is_fullwidth'] = false; } $settings['same_category'] = true; return $settings; }Best regards,
IsmaelHey bluecafe,
Thank you for using Enfold.
Please copy the whole “avia_tweetbox” class without the “class_exists” function in the child theme’s functions.php file.
Best regards,
IsmaelJanuary 17, 2017 at 9:14 am in reply to: Get a Sharper Logo When Using the "Slim" Mode for the Header? #734575Hi,
If you’re planning to use the “slim” version of the header, you can upload a smaller version of the logo so that the browser doesn’t have to resize it.
Best regards,
IsmaelJanuary 17, 2017 at 9:11 am in reply to: Translate No products found which match your selection. #734572Hey!
Are you referring to the Product Slider? Please post the login details here so that we can check the settings. And maybe we can translate the strings as well.
Best regards,
IsmaelHey fristil,
Thank you for using Enfold.
I’m not really sure what you’re trying to do here. Could you please explain it further? Or provide a screenshot. This may help:
// http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Best regards,
IsmaelJanuary 17, 2017 at 9:05 am in reply to: Cart Button Background in transparent menu not transparent #734569 -
AuthorPosts
