Forum Replies Created
-
AuthorPosts
-
Hi erwin_m!
Thank you for using Enfold.
Please add this filter in the functions.php file.
function avia_post_slide_query_mod( $query, $params ) { if( is_archive() ) { $query['orderby'] = 'rand'; } return $query; } add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);Best regards,
IsmaelJanuary 25, 2017 at 5:29 am in reply to: Layerslider Error (Elements moving erratically on front page) #738102Hi,
@jsaverhea: What do you mean by “% tool”? There are 7 sliders in there and I’m not sure where to look for the issue. Please open a new thread with the login details plus the screenshot of the issue. We’ll close this one for now.
Best regards,
IsmaelHi,
Are you using the API key somewhere else? Please regenerate a new API key to replace the current one.
Best regards,
IsmaelHi,
We edited the css codes in the Quick CSS field but it’s not taking effect in the frontend. Please go to the wp-content > uploads > dynamic_avia folder, rename the enfold_child_theme.css file to something else. Go back to the theme options, toggle any settings then save to regenerate the dynamic stysheet again. Purge the cache afterwards.
Best regards,
IsmaelJanuary 24, 2017 at 12:36 pm in reply to: Add featured image caption in slide-image (postslider.php) #737688Hey belugatinu1!
Thank you for using Enfold.
In the postslider.php file, look for this line:
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";Below, add this code:
$description = get_post(get_post_thumbnail_id())->post_excerpt; if( !empty( $description ) ) { $output .= '<div class="slide_entry_featured_caption">' . $description . '</div>'; }Cheers!
IsmaelHi!
Is this the same request?
// https://kriesi.at/support/topic/moving-sidebar-top-top-on-mobile-above-content/#post-737622
Best regards,
IsmaelHi StormCreek!
Thank you for using Enfold.
What is the css code that you use? Please add this one.
.protected-content { display: none !important; } .logged-in .protected-content { display: block !important; }Regards,
IsmaelHey ycoleman31!
Thank you for using Enfold.
Please go to the Appearance > Menus panel, add a menu then set the “Menu Style” settings to “Button Style”.
Regards,
IsmaelJanuary 24, 2017 at 10:05 am in reply to: Revert "Reset all options" at tab "Advanced Styling" #737634Hey Holger!
Thank you for using Enfold.
Looks like the Enfold > General Styling has been reset to default. I’m sorry but we can’t help you with this. Please contact your hosting provider regarding the latest backup of the site. If you want to disable the “reset options” button, please add this in the functions.php file.
add_action( 'admin_head', 'ava_custom_admin_style' ); function ava_custom_admin_style() { echo '<style type="text/css">.avia_reset { display: none !important; }</style>'; }Cheers!
IsmaelHey Munford!
Thank you for using Enfold.
Looks like it’s not loading the enfold_child.css file. Please try this code in the style.css file.
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header { width: 1310px; max-width: 90%; }I also noticed that there are multiple instances of the same css media query. Example:
@media only screen and (max-width: 480px) { .responsive #top .slideshow_caption .avia-caption-content { font-size: 9px !important; } .caption_bottom .slideshow_caption .slideshow_inner_caption .slideshow_align_caption { padding: 0!important; }} /*fix padding on films under trailers*/ @media only screen and (max-width: 480px) { .avia-video, .avia-iframe-wrap { margin-bottom: 0px; }}It can be simplified to this.
@media only screen and (max-width: 480px) { .responsive #top .slideshow_caption .avia-caption-content { font-size: 9px !important; } .caption_bottom .slideshow_caption .slideshow_inner_caption .slideshow_align_caption { padding: 0!important; } /*fix padding on films under trailers*/ .avia-video, .avia-iframe-wrap { margin-bottom: 0px; } }Regards,
IsmaelJanuary 24, 2017 at 9:49 am in reply to: Gravity Form Other Field Won't Align with Radio Button #737624Hi!
@MarcG5: Please add this code in the Quick CSS field..ginput_container .small { max-width: 50%; }Adjust the value as you see fit.
Regards,
IsmaelHi vegasft!
Thank you for using Enfold.
Please add code in the functions.php file.
add_action('wp_footer', 'ava_new_custom_script'); function ava_new_custom_script(){ ?> <script type="text/javascript"> (function($) { function a() { if( $(window).innerWidth() >= 768) return; $('.sidebar').insertBefore('.av-content-small'); } $(window).load(function() { a(); }); })(jQuery); </script> <?php }Cheers!
IsmaelHi info224!
Thank you for using Enfold.
Please add this snippet in the functions.php file.
// insert adsense add_action('wp_head', 'wp_head_adsense'); function wp_head_adsense() { ?> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-1483620619655473", enable_page_level_ads: true }); </script> <?php }Or install this plugin. https://wordpress.org/plugins/google-publisher/
Best regards,
IsmaelHey Armin Ginkel!
Thank you for using Enfold.
If you’re planning to install the theme on a different domain then you will need another license. A single license can only be installed on a single domain.
Regards,
IsmaelHi!
so as i see it I need to clone the website and export the database, change the name of the database and import it tp myadminphp and use the clone database?
Instead of doing this manually, please use one of these plugins to clone the site.
// https://wordpress.org/plugins/wp-migrate-db/
// https://wordpress.org/plugins/wp-clone-by-wp-academy/Best regards,
IsmaelHi!
What line? Is it the “avia-menu-fx” container? Please post the login details here so that we can checking the settings.
Regards,
IsmaelHey!
This thread has been going on for quiet a while. Could you please provide the url to the actual page with the issue plus a screenshot?
Best regards,
IsmaelHey iflw-gmbh!
Thank you for using Enfold.
It is being resized via css. Please add this in the Quick CSS field.
.template-blog .blog-meta { float: none; margin-right: 0 clear: both; } .single-post .single-small.with-slider .small-preview { width: 220px; height: 220px; margin: 0 auto; display: block; float: none; } .single-post .single-small.with-slider .small-preview img { width: 100%; } .template-blog .post .entry-content-wrapper { overflow: hidden; position: relative; clear: both; margin-top: 50px; }Regards,
IsmaelHi!
The tooltips are not displaying because of the following css code in the rtl.min.css file.
.avia-tooltip { display: none!important; }Best regards,
IsmaelHi Dave!
Thank you for using Enfold.
Could you please provide a link to the site? We would like to check it. A screenshot will help as well.
Best regards,
IsmaelHey!
I tried to load the page but it’s not loading properly. Did you transfer the site? Please try css code in the Quick CSS field.
tr td:nth-child(4) { width: 200px; }Cheers!
IsmaelHey!
Which element or shortcode are you using to create the gallery? The theme’s gallery element does not have captions at the bottom by default. The captions will display as tooltip.
// http://kriesi.at/themes/enfold/shortcodes/gallery/
Regards,
IsmaelHey clairemartindigital!
Thank you for using Enfold.
Please add this in the functions.php file.
// menu active function add_custom_script(){ ?> <script> (function($){ // cache selectors function ab() { var lastId, topMenu = $(".av-subnav-menu"), topMenuHeight = topMenu.outerHeight(), // all list items menuItems = topMenu.find("a"), // anchors corresponding to menu items scrollItems = menuItems.map(function(n, i){ var item = $(i).attr("href"); if (item.length && item.indexOf("#") != -1) { return item; } }); $(window).scroll(function(){ // get container scroll position var fromTop = $(this).scrollTop()+topMenuHeight, fromTop = fromTop + 150; // get anchors var anchors = scrollItems.map(function(n, i){ var item = i.substring(i.indexOf("#")); return item; }); var section = $('.avia-section').each(function() { return this; }); section = section.map(function() { if ($(this).offset().top < fromTop) return this; }); // get the id of the current element var cur = section[section.length-1]; var id = section && section.length ? section[section.length-1].id : ""; current = $(cur).attr('id'); if (lastId !== id) { lastId = current; menuItems.parent().removeClass("active").end().filter("[href*='#"+current+"']").parent().addClass("active"); } }); } ab(); function a() { $('#top .av-submenu-container').append("<a href='http://thymeforachef.com.au/#top' class='submenu_logo'><img src='//thymeforachef.com.au/wp-content/uploads/2017/01/Megara-logo-340x156.png' /></a>"); } a(); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');And this code in the Quick CSS field.
#top .av-subnav-menu > .active > a { color: red; }Best regards,
IsmaelJanuary 24, 2017 at 8:30 am in reply to: Link background image / logo in full width sub menu #737590Hey!
Thank you for using Enfold.
Please remove the css modification then add this one.
.submenu_logo { width: 120px; height: auto; overflow: hidden; position: absolute; top: 0; left: 10%; }After that, add this snippet in the functions.php file.
// submenu logo function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function a() { $('#top .av-submenu-container').append("<a href='URL' class='submenu_logo'><img src='//thymeforachef.com.au/wp-content/uploads/2017/01/Megara-logo-340x156.png' /></a>"); } a(); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');Adjust the URL.
Regards,
IsmaelHi!
The login credentials are not working. Please post the whole code of the header.php file on pastebin.com. We would like to check it.
Best regards,
IsmaelHey!
Thank you for using Enfold.
Please ignore my previous post, that was intended for another user. We are currently checking the page. I’ll get back to this thread as soon as possible.
Regards,
IsmaelHey sandra1307!
Thank you for using Enfold.
Where do you want to put the image? You can use the advance layout builder’s Image element for that.
Regards,
IsmaelHey!
Thank you for the screenshot. Please add this in the Quick CSS Field.
@media only screen and (max-width: 1024px) { .responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet { display: none !important; } }Remove browser cache before checking the page again.
Cheers!
IsmaelHi Uroš!
Thank you for using Enfold.
Do you have a multi-language site? Are you using the W P M L plugin? By default, you can change it in the Settings > Permalinks > Portfolio Items Base field, but if you need to translate it to another language, you’ll need the W P M L plugin plus the W P M L String Translation extension.
// http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Regards,
Ismael -
AuthorPosts
