Forum Replies Created
-
AuthorPosts
-
Hi Kevin!
Thank you for using Enfold.
I’m not sure if it’s possible to move the settings but you can hide the theme update panel with this on functions.php:
function ava_custom_script() { echo '<style type="text/css">div#avia_update, .avia_section_header.goto_update{display: none !important;}</style>'; } add_action('admin_head', 'ava_custom_script');Maybe, you can add conditional functions so that only a certain user can see it.
Regards,
IsmaelMay 13, 2015 at 4:24 am in reply to: Share icons in post not placed after end of text but end of post full content #443499Hi!
Please update the WordPress installation to 4.2.2. The dev site is still in WordPress version 3.9.6.
Best regards,
IsmaelHi!
The images in the slider is set as background and the background size is set to “cover” in order to keep the image ratio and proportion. It also means that it will scale the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in view within the background positioning area: http://www.w3schools.com/cssref/css3_pr_background-size.asp
In order to get most out of a huge image on mobile devices, you can set the background position to center:
@media only screen and (max-width: 767px) { .avia-fullscreen-slider .avia-slideshow>ul>li { background-position: 50% 50% !important; }}Or create another slider with slider images specifically resized to fit on a mobile device. Just add another slider on top or below the default slider then use css media queries to show or a hide a specific element on different screen sizes. Refer to these links for more info:
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/
Regards,
IsmaelHey!
Unfortunately, the grid layout post meta info is limited to the comment count and post date. It will not display the category, author info etc. If you want the display the category, follow this instruction: https://kriesi.at/support/topic/display-date-category-blog-posts-grid-layout/#post-389032
Best regards,
IsmaelHi!
Please post the login details here. We would like to check it. The mobile menu modification is not going to work on a child theme. You need to add it on the parent theme’s function.php.
Regards,
IsmaelHey Michelle!
Thank you for using Enfold.
1.) Please update the theme to 3.1.5. Create an API key if you want to update the theme in the dashboard or use FTP: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
2.) Can you please provide a screenshot of this issue?
3.) You need the API key, not the purchase code: Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHi!
Use this:
div form.cart div.quantity, #top form.cart .button, .single_variation { float: none; margin: 5px auto; text-align: center; display: block; } .single_variation_wrap { margin: 10px 0px 20px 0px; }Cheers!
IsmaelHey!
Thank you for using Enfold.
You can actually add a background image on Enfold > General Styling > Logo Area panel. Or use the Quick CSS field if you want to add your css modifications in the theme. Note that bumping or replying to your own thread will push the inquiry back to the newest queue so we will not be able to answer it immediately.
The dead screen issue when posting an inquiry is irregular and we’re not sure why it’s happening, sorry about that. You can refresh the page back.
Best regards,
IsmaelHey!
I created a sample widget for the italian and german language: http://www.geoclima.com/wp-admin/widgets.php?lang=it&admin_bar=1
Italian: http://www.geoclima.com/it/category/ultime-notizie-it/
German: http://www.geoclima.com/de/category/neuigkeiten/Latest New with Archive widget: http://www.geoclima.com/category/news/
Always put the widgets inside the Displayed Everywhere widget area.
Regards,
IsmaelHi!
Since the sticky header feature has been first introduced in the theme, it is disabled by default on mobile devices. Regarding the scroll to top button, it is hidden on mobile devices because you can double tap the top of the mobile device screen in order to scroll back to the top of the page. If you want to display it on mobile devices, add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #scroll-top-link { display: none; }}Best regards,
IsmaelHey!
Please use this code:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Rajdhani'] = 'Rajdhani:400'; $fonts['Exo'] = 'Exo:100'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Google fonts']['Rajdhani'] = 'Rajdhani:400'; $fonts['Google fonts']['Exo'] = 'Exo:100'; return $fonts; }Remove browser cache then reselect the fonts.
Regards,
IsmaelHey!
Are you referring to the gallery inside the portfolio ajax container? Use this in the Quick CSS field:
a.avia-gallery-big.fakeLightbox.lightbox.avia-gallery-big-crop-thumb { opacity: 1 !important; }Regards,
IsmaelHi!
I’m sorry but you didn’t follow the instructions.
Edit config-templatebuilder > avia-shortcodes > magazine.php, find this code on line 558:
if(empty($this->atts['thumbnails'])) { $image = ""; $extraClass = "av-magazine-no-thumb"; }Below, add this:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 10) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');Please check it carefully.
Regards,
IsmaelHey rikv!
Thank you for using Enfold.
That is the grid layout with the image element. You can set a custom link to the image element.
Regarding the categories, in the previous thread, we are referring to the masonry element. The images in the grid row links to the default category pages.
http://kriesi.at/themes/enfold-shop/product-category/women/
http://kriesi.at/themes/enfold-shop/product-category/featured/
http://kriesi.at/themes/enfold-shop/product-category/women/casual/Regards,
IsmaelHey dondela!
Thank you for using Enfold.
That fix is for the Yoast SEO plugin. Please use the Yoast plugin instead of All-In-One SEO. Note that we don’t provide support for third party plugins so you have to report this one to the plugin author.
Cheers!
IsmaelHey!
Look for this code around line 199:
// echo the post content echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';Below, you can add the code:
if(!is_single()) get_template_part( 'includes/related-posts');Don’t forget to modify the related-posts.php file.
Best regards,
IsmaelHey!
Enclosed the font in a span tag with a unique class or id attribute. Example here: http://www.newmarketing.no/wordpress/scatec4/wp-admin/post.php?post=9&action=edit
Add this in the Quick CSS field:
span.opensans-custom { font-weight: 300; }Please remove the sample text.
Cheers!
IsmaelHi!
Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ var title = $('.title_container .main-title a').text(), container = $('.title_container .main-title a').detach(); $('.title_container .main-title').append(title); }(jQuery)); </script> <?php }Cheers!
IsmaelHi!
Please check this code:
@media only screen and (max-width: 1279px) { .grid-image img { padding: 5 50px; }}Add the px after the value 5.
Cheers!
IsmaelHi eyeweb!
Thank you for using Enfold.
Add this in the Quick CSS field:
.image-overlay { display: none !important; }Regards,
IsmaelHey!
Enabling the sticky sub menu may not be exactly the same as the desktop version so it’s disabled by default. Unfortunately, you can’t enable it without modifying the shortcodes.css file directly. You have to delete this line:
.responsive #top .av-submenu-container{top: auto !important; position: relative !important; height:auto; }Regards,
IsmaelHi druzes!
Thank you for using Enfold.
Yes, it’s possible. It will require a bit of css modifications. Turn on the custom css class in order to apply different styles to each accordion: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Basic knowledge of google inspector and firebug browser plugin will help.
Cheers!
IsmaelHi!
Please check it now: http://dentists.theimplantcentre.com/cpd-sponsors/
Make sure that you add the complete url,
Regards,
IsmaelHey!
Make sure that there are no extra spaces after the comma. Try this one to fix the promobox:
@media only screen and (max-width: 480px) { .avia-mozilla.avia-android .av_promobox { max-width: 300px; }}Regards,
IsmaelHey!
Add this in the child theme’s style.css file to hide a specific element in the builder:
function ava_remove_video_element() { echo '<style type="text/css">a[href="#avia_sc_iconlist"] {display: none;}</style>'; } add_action('admin_head', 'ava_remove_video_element');The code above should hide the icon list element.
Cheers!
IsmaelHey!
Is this happening when you switch to a default theme? What did the plugin author say exactly? The theme has a default accordion element. You can use that instead.
Regards,
IsmaelMay 12, 2015 at 7:55 am in reply to: code needed for masonry sort feature, to display shorter tag names #442825Hi!
Have you tried modifying the tag’s slug? Edit config-templatebuilder > avia-shortcodes.php > masonry_entries.php, look for this code around line 475:
$output .= "<span>".esc_html(trim($term->name))."</span>";Replace it with:
$output .= "<span>".esc_html(trim($term->slug))."</span>";This will display the slug instead of the actual name of the terms. Be careful when modifying the slugs. They should be unique.
Cheers!
IsmaelHey!
You don’t need to buy the plugin. Create a slider and insert a slide then add two layers, On the first layer, add the text. Set the width to at least 40%. On the second layer, add the video as iframe or use the video shortcode. Generate the shortcode by using the shortcode wand on a post or page.
Regards,
Ismael -
AuthorPosts
