Forum Replies Created

Viewing 30 posts - 48,301 through 48,330 (of 66,046 total)
  • Author
    Posts
  • in reply to: WordPress 4.2 –> Enfold #436688

    Hey!


    @matcho
    : There is no Enfold installation when I checked the dashboard. Please install Enfold again then we’ll check it.

    @jeffh: Please make sure that you have the latest version of the theme, 3.1.3.

    Cheers!
    Ismael

    in reply to: Enfold Masonry problem safari ios #436674

    Hey!

    Maybe, this will work:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 1500);
    	
    	$(window).load(function () {	
    		setTimeout(function() {
    			clearInterval(int);
    		}, 3000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: retina ready #436669

    Hey!

    Like I said, it’s not integrated in the theme. It will require major modification, one that we can’t provide here. Please try the css media query solution. Refer to the links above.

    Regards,
    Ismael

    in reply to: Opinion, quotes or other options #436662

    Hi!

    I checked the page but it’s blank. Please refer to this link: https://en.support.wordpress.com/splitting-content/nextpage/

    Best regards,
    Ismael

    Hi!

    You should ignore those errors for now. Adding a sidebar id will reset the widget area settings. You can disable debug mode to hide the errors:

    define('WP_DEBUG', false);
    

    https://codex.wordpress.org/Debugging_in_WordPress

    Best regards,
    Ismael

    in reply to: Aspect ratio blog thumbnails #436636

    Hi!

    Edit includes > related-posts.php. Look for these codes:

    'image_size' => 'square',
    

    Replace ‘square’ with a different thumbnail size. The name of the thumbnail size is located on functions.php:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider

    Best regards,
    Ismael

    in reply to: Reservation Form Datepicker Disable Typing In Date #436629

    Hey Jon!

    Thank you for using Enfold.

    Add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($){
    	$('.avia_datepicker').attr('readonly','readonly');
    }(jQuery));
    </script>
    <?php
    }

    Cheers!
    Ismael

    in reply to: UL List Markup #436590

    Hi!

    Please refer to this link for a possible fix: https://kriesi.at/support/topic/replace-bullets-with-icon-font/#post-429401

    Regards,
    Ismael

    in reply to: rtl footer #436589

    Hi!

    Works fine on our installation. Please post the login details here and set it as a private reply.

    Regards,
    Ismael

    in reply to: swap tabs fro accordian mobile #436584

    Hey!

    For example, if you use the “custom-tabs” css class attribute for the tab elements and the “custom-toggles” for the toggle elements, the css code will look like this:

    @media only screen and (min-width: 768px) {
    .custom-toggles { display: none; }
    }
    
    @media only screen and (max-width: 767px) {
    .custom-tabs { display: none; }
    .custom-toggles { display: block; }
    }

    Regards,
    Ismael

    Hi!

    Add the prefix webkit:

    .avia-caption-title, .avia-caption-content, .avia-slideshow-button {
    	-webkit-animation: 0s ease 0s normal none 1 running none !important;
    	animation: 0s ease 0s normal none 1 running none !important;
    	visibility: visible !important;
    }

    Cheers!
    Ismael

    Hey!

    You can contact the Avada support. :)

    Kidding aside, if you want to remove the Enfold theme’s default flag configuration, add this in the functions.php file:

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }

    You can then use the wpml language flag code to render the language switcher anywhere you want. For example, you can edit includes > helper-main-menu.php, use this code:

    do_action('icl_language_selector');
    

    Or add something like this in the functions.php file to insert the language switcher inside the top bar of the header:

    add_action('avia_meta_header', 'add_custom_content_to_header');
    function add_custom_content_to_header() {
    	do_action('icl_language_selector');
    }

    Cheers!
    Ismael

    in reply to: showing blog full content via blog post alb element #436575

    Hi!

    Thank you for using Enfold.

    You can enable the order and orderby settings in the blog posts element. Refer to this link: http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/

    Cheers!
    Ismael

    in reply to: Updated theme sidebar not showing #436574

    Hi!

    How can you go to this page (http://maintecx.com/whats-new/?portfolio=financing)? From the menu, which menu items did you click? I clicked the Services page and the items inside display as a portfolio item, not as a default post.

    Cheers!
    Ismael

    in reply to: Insert PHP in pages/posts… #436571

    Hi!

    I’m not saying you shouldn’t use php, it’s just not advisable to use php inside the wp editor because it is meant to be use as normal text and html editor. And what if you change themes or decided to migrate to a different cms, what will happen to the multiple pages with multiple php codes? Maybe, it’s better if you use custom fields. Refer to this link: https://codex.wordpress.org/Custom_Fields

    You can add the modifications directly in the the template files like page.php, single.php or if you built the page with the advance layout builder, modify the template-builder.php file.

    Best regards,
    Ismael

    in reply to: Portfolio Slug #436569

    Hey!

    When you replaced the code… did you flush or re-save the permalink settings? The previous one is wrong because the Permalinks > Portfolio Entry Settings will be useless. I tested the code on my installation and it works fine. Please try it again or just use the previous code if it works.

    Don’t forget to refresh the portfolio overview page before going to the actual portfolio item page.

    Cheers!
    Ismael

    in reply to: Testimonial Slider (Large) Issue on Safari #436564

    Hey!

    Issue seems random and unique to few installations. Is this happening when the testimonial element is the only content inside a page? Please create a test page with only the testimonial element. Let us know if the issue is still happening.

    Regards,
    Ismael

    in reply to: Datepicker Buttons #436563

    Hi djshortkut!

    Thank you for using Enfold.

    Use this in the Quick CSS field:

    .avia-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button:hover {
      background: red;
      border: 1px solid black;
      color: pink;
    }

    Adjust the values.

    Cheers!
    Ismael

    in reply to: HELP! suddenly wrong items in portfolio grid!! #436561

    Hey Munford!

    Thank you for using Enfold. Glad you figured it out. :)

    Cheers!
    Ismael

    in reply to: WPML and custom css #436560

    Hey!

    Yes, please. Post the login details here as a private reply. Check the code, make sure that all symbols, apostrophe etc are not converted to character codes.

    Cheers!
    Ismael

    in reply to: Create youtube/uploaded video gallery #436003

    Hey!

    Unfortunately, mp4 video format isn’t supported by the lightbox plugin. You can still add the url as portfolio item custom link but it will open the video player in another page.

    Regards,
    Ismael

    in reply to: Visual Editor Issues #436001

    Hi!

    Issue seems to be happening only on specific pages(About Us for example). I created a test page and the default editor is working fine (visual and text mode): http://www.saddlecreekllc.com/test-page/

    Please try to deactivate all plugins, remove browser cache then test it again.

    Regards,
    Ismael

    in reply to: Appearance – Menus #436000

    Hi!

    Is this happening when you switch to a default theme? Please refer to this link for a possible fix: https://kriesi.at/support/topic/menu-creation-disappear-when-activating-enfold-v2/#post-433916

    Best regards,
    Ismael

    Hi!

    Did you add a code wrapper element? It doesn’t look like that in our installation. Use a text block instead. Make sure to switch to html or text mode before adding the shortcode.

    Looks like you
    Cheers!
    Ismael

    in reply to: font size menu problem #435998

    Hey!

    Go to the Appearance > Menus panel. Edit the Nuestras Ventanas menu item, disable the “Use as Mega Menu” option. You might need to recreate the sub menus.

    Best regards,
    Ismael

    in reply to: ÆØÅ (Norwegian letters) turned to gibberish #435995

    Hey!

    Thank you for the info. We have reported the issue to Kriesi. It might take a while before we can fix it.

    Regards,
    Ismael

    in reply to: Theme Update Problems (kinda urgent) #435994

    Hey!

    The Enfold theme is deactivated when I checked the dashboard. We enabled it back: http://plasticar.pt/wp-admin/admin.php?avia_welcome=true&page=avia

    Please update the theme to 3.1.3.

    Best regards,
    Ismael

    in reply to: Theme CSS not loading for https #435992

    Hey!

    I don’t see any minified files when I checked the page. Do you have a cache plugin? Please purge the cache. I just noticed that you’re using a very old version of the theme, 2.7. Please update the theme to version 3.1.3 then we’ll check it again.

    After the update, try this plugin: https://wordpress.org/plugins/ssl-insecure-content-fixer/

    Best regards,
    Ismael

    in reply to: Section Background Overlay #435982

    Hi!

    It is a unique class. You can edit includes > loop-index.php if you want to change it.

     //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }
    
            if(!empty($before_content))
                echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';

    Cheers!
    Ismael

    in reply to: swap tabs fro accordian mobile #435981

    Hi!

    Yes, you can use the class attribute to toggle the display of the elements. You don’t need to add the custom page id.

    Cheers!
    Ismael

Viewing 30 posts - 48,301 through 48,330 (of 66,046 total)