Forum Replies Created
-
AuthorPosts
-
Hi!
Can you post a link to the page where you’re trying this and a mockup/screenshot of how it should look?
Best regards,
JosueNo problem Angelo, glad to help :)
Regards,
JosueMay 28, 2015 at 11:57 pm in reply to: WPML language switcher on the menu with several different menus ? #451477Hey!
Try adding this at the very end of your theme / child theme functions.php file:
if(!function_exists('avia_append_lang_flags')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); function avia_append_lang_flags( $items, $args ) { global $avia_config, $sitepress; if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu'); if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items; $languages = icl_get_languages('skip_missing=0&orderby=custom'); if(is_array($languages)) { foreach($languages as $lang) { $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : ''; if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']); $items .= "<li class='av-language-switch-item language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>"; $items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>"; $items .= "</a></li>"; } } return $items; } }Cheers!
JosueHi @angelomaldito,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
I did some updates to the style.css to test and they reflected on the frontend as expected, can you tell me a specific thing you’re trying to change and it’s not reflecting?
Regards,
JosueHi,
Can you please create us a temporary FTP / SFTP account and a WP account? post them here as a private reply.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueMay 28, 2015 at 10:16 pm in reply to: Fullscreen slider with multiple images on the same page #451453You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#top .av-submenu-container .container { max-width: 100%; width: 97%; }Cheers!
JosueSorry i now see the issue you’re referring to, seems to be a color section glitch. I managed to workaround it by duplicating the page, check /home-test.
Regards,
JosueHi,
1. Create a phpinfo.php file in the root of your install with this contents:
<?php phpinfo(); ?>2. Access it via browser – http://website.com/phpinfo.php
3. Search for “memory_limit” and check if it’s really up to 256MRegards,
JosueHi!
I’m not sure what error you’re referring to, maybe you’ll get a more precise answer on the webmaster forums:
https://productforums.google.com/forum/#!forum/webmastersRegards,
JosueMay 28, 2015 at 8:59 pm in reply to: Fullscreen slider with multiple images on the same page #451432You mean the aspect ratio? i don’t think there is a logical way to do that and -at the same time- keep the masonry 100% wide and 100% long of the window size. You’ll need to sacrifice the width and make it a minimum of 2000px (500px * 4):
.av-masonry-container { min-width: 2000px; }Regarding the socket set it a high z-index value:
#socket{ z-index: 100; }Regards,
JosueThat depends on your set-up (which image sizes you use and which you don’t), can you post a link to your site/blog?
Best regards,
JosueMay 28, 2015 at 8:39 pm in reply to: Need Embedded iframe Video to always show up as full screen #451427I think using a fullscreen slider should do it, to have a video slide simply select to use a “Video Slide” and put the Vimeo URL here (controls will appear).
Best regards,
JosueTechnically, if no tag.php is provided it falls back to archive.php so that means that if you put archive.php contents in tag.php (instead of removing it) you’ll get the same result, the difference is, you can do this from a child theme.
Best regards,
JosueDrag a Full Width Submenu and select to “Build a simple custom menu”, then for each menu item fill the label with a
<img>tag, like – http://a.pomf.se/bjbtbj.pngBest regards,
JosueHi!
Try with the following:
function rtl_columns_fix(){ if(is_page(array(32,3,4,5))){ ?> <script> (function($){ var resizeTimeout, sortedReverse = false; $(window).resize(function () { if (resizeTimeout) { window.clearTimeout(resizeTimeout); } resizeTimeout = window.setTimeout(function () { var windowWidth = window.innerWidth; if ((windowWidth < 767 && !sortedReverse) || (windowWidth >= 767 && sortedReverse)) { var rtlContainer = $(‘.entry-content-wrapper, #footer .container’); rtlContainer.each(function(){ var rtlCols = $(this).children(‘.flex_column’).not(‘.av_one_full’); $(this).append(rtlCols.get().reverse()); }); sortedReverse = !sortedReverse; } }, 100); }).trigger(“resize”); })(jQuery); </script> <?php } }Regards,
JosueColor Section doesn’t support that behaviour right now, but you can use the FullWidth Submenu element which does support fixed positioning on scroll.
Regards,
JosueI think so, have you tried it with the latest version?
Cheers!
JosueMay 28, 2015 at 11:07 am in reply to: Header Widget, Page Design, Buttons behavior and more… #451094In Quick CSS, change:
strong.logo { top: -60px; }To:
strong.logo { top: -40px; }Best regards,
JosueMay 28, 2015 at 11:04 am in reply to: Fullscreen slider with multiple images on the same page #451090Change the script to:
(function($){ $(window).load(function() { var win = $(window); function calc_accordion_height(){ var subtract = $('#wpadminbar, #header.av_header_top:not(.html_header_transparency #header), #main>.title_container'), wh100 = win.height(), wh100_mod = wh100; subtract.each(function(){ wh100_mod -= this.offsetHeight - 1; }); $('.av-masonry-image-container img').css('height', wh100_mod + 'px'); } win.on( 'debouncedresize', calc_accordion_height); calc_accordion_height(); }); })(jQuery);That will get you closer but you’d need to re-think the mobile view.
Regards,
JosueOk, start with that and once you have the actual homepage set-up let us know through this topic.
Best regards,
JosueTry reducing the number of items in your menu.
Regards,
JosueMay 28, 2015 at 9:54 am in reply to: Fullscreen slider with multiple images on the same page #451039Try playing with that JS fullscreen enabler script, you can apply it to other elements changing the selector:
$('.aviaccordion').css('height', wh100_mod + 'px');Not sure how this would interact with a ‘load more’ button though as that will increase the masonry height in order to fit more items.
Regards,
JosuePlease do so.
Regards,
JosueMay 28, 2015 at 9:48 am in reply to: How to control AddThis cookies such as __atuvc and __atuvs? #451029Hi,
Can you please check if the issue persists with the default WordPress theme activated?
Regards,
JosueHi,
That’s strange, can you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueSeems your server is taking some time to update the dynamic stylesheet (/wp-content/uploads/dynamic_avia/enfold.css), giver it a few minutes. If it doesn’t update: connect via FTP, manually remove the aforementioned file and re-save the Theme Options to generate a new one.
Regards,
Josue -
AuthorPosts
