Forum Replies Created

Viewing 30 posts - 46,981 through 47,010 (of 66,017 total)
  • Author
    Posts
  • in reply to: main content background image not showing #462325

    Hi!

    Alright. Glad we could help. :)

    Best regards,
    Ismael

    in reply to: Audio player in featured image? #462324

    Hey!

    Did you set the post format to “Audio”?

    Cheers!
    Ismael

    in reply to: Google Font works in Chrome only #462323

    Hey!

    I just noticed that you’re using cyrillic text, try to add this to the functions.php:

    function add_subset_func($fontlist) {
    	$fontlist .= "&subset=latin,cyrillic";
    	return $fontlist;
    }
    add_filter('avf_google_fontlist', 'add_subset_func');
    

    Hard or shift + refresh the page after.

    Cheers!
    Ismael

    in reply to: ipad header background disappears scrolling #462322

    Hi!

    Please provide a screenshot so that we know what to fix. Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: DEMO CONTENT WILL NOT IMPORT DESPITE FRESH INSTALL #462319

    Hey!

    This seems to be a server related issue because we can’t reproduce it on our end. And thousands of enfold users are not experiencing the same thing. If there’s a chance, please contact your hosting provider regarding this issue. Ask them why the xml files are not being imported correctly. For a workaround, you can try to import the demo files manually. The files are located on enfold > includes > admin > demo folder. Look for the xml files. Before you do that, follow these steps:

    1) Download and Install 7zip.
    2) Right click on the xml file (restaurant) in the enfold > includes > admin > demo folder -> 7zip -> Add to Archive
    3) Change the “Archive format” to gzip and hit “OK”. Make sure that you know the directory of the converted file.
    4) After the conversion, go to Tools > Import then import the converted xml file.

    Cheers!
    Ismael

    in reply to: Unable to deactivate responsiveness with child theme #462315

    Hey agirard!

    Thank you for using Enfold.

    The option to deactivate responsive styling is working on our installation. Please try to check the child theme folder. Did you modify any template files there like header.php or footer.php? If so then check if anything is related to the responsive option. If you didn’t find anything, try to update the theme to version 3.2.

    Cheers!
    Ismael

    in reply to: User submitted URL #462309

    Hi Freek!

    Thank you for using Enfold.

    Are you trying to open the submitted url in another tab or window? I’m sorry but that’s not possible in the theme without creating a custom javascript. Please hire a freelance developer or do something like this: http://jsfiddle.net/Gv5bq/10/

    Best regards,
    Ismael

    in reply to: Remove tooltips (title attributes) from masonry gallery #462307

    Hi!

    Note that the code above will remove all title attributes on links and images which is not good for SEO. It’s quite beneficial to keep the title of the images to add more context to the page, you can modify the image title on Media > Library panel. https://www.feedthebot.com/titleandalttags.html

    If you’re wondering how to remove those tooltip, unfortunately, that is a default browser feature so we can’t modify it.

    Best regards,
    Ismael

    Hi!

    What happens when you add this in the Quick CSS field?

    #menu-item-search {
      right: -50px !important;
    }

    Let us know.

    Best regards,
    Ismael

    in reply to: iphone 5 portrait resolution #462301

    Hi jenki!

    Thank you for using Enfold.

    I checked the site but it’s not using Enfold. I tried to inspect element using chrome but it wouldn’t let me which is weird, even keyboard shortcuts to open the inspector is not working. Can you please provide a screenshot? If you’re talking about the videos, the quality will depend on the speed of the internet connection used in the device.

    Regards,
    Ismael

    in reply to: More image sizes in folder than available to insert #462300

    Hi!

    You can find all thumbnail sizes in the functions.php file and the Settings > Media panel.

    $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
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);

    You can add the name of the thumbnail in the snippet above. Just follow the pattern.

    Cheers!
    Ismael

    Hi!

    If the above code doesn’t work for all portfolio items, try this:

    function ava_exclude_portfolio($query) {
    	if (is_singular('portfolio')) {
    		$query->set( 'offset', '1' );
    	}
    }
    
    add_action('pre_get_posts', 'ava_exclude_portfolio');

    Best regards,
    Ismael

    Hey!

    Please try to replace the code with this:

    /*filter portfolio sorting */
    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
      $query['offset'] = 1;
      return $query;
    }

    Regards,
    Ismael

    in reply to: debug.log notice #462012

    Hey!

    It’s just a notice that a variable has not been initialized, in this case the “$meta[‘index’] variable in the said file.

    Regards,
    Ismael

    in reply to: Setting different slider heights #461980

    Hey lobstahhhhhhh!

    Thank you for using Enfold.

    Please give us a link to the pages with the sliders. We would like to check it. Try to change the code to:

    .avia-fullwidth-slider .avia-slideshow-inner {
    height: 415px !important;
    }

    Cheers!
    Ismael

    in reply to: MailChimp #461979

    Hi!

    You don’t have the mailchimp api key yet. Please get it here: https://admin.mailchimp.com/account/api

    After that, you need to add the api key here: http://doterrificoils.com/wp-admin/admin.php?page=mailchimp-for-wp

    And then edit the form again, look for the “Lists this form subscribes to”. Select the mailing list. Please contact the the mailchimp support for more info.

    Cheers!
    Ismael

    Hi!

    What do you mean “fixed to default”? The css solution above is unique in your case because we can’t reproduce the same issue on our installation. That’s why I ask you to reinstall the theme. Maybe, after the update, it will be fixed automatically.

    Best regards,
    Ismael

    in reply to: ipad header background disappears scrolling #461963

    Hi!

    What if you use this?

    @media only screen and (max-width: 1025px) and (min-width: 768px) {
    .header_color .header_bg {
      background-size: 100%;
    }}

    Did you follow our suggestion to use another image only for mobile? https://kriesi.at/support/topic/full-image-header-on-top-off-menu/#post-455584

    Cheers!
    Ismael

    in reply to: Ajax portfolio layout #461958

    Hi!

    1.) Use this in the Quick CSS field to change the background overlay of the lightbox:

    .mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader {
      opacity: 1 !important;
      background-color: #ffffff !important;
    }
    
    .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
      color: #000000 !important;
    }

    2.) Can you please provide a screenshot of the layout that you want? The grid will automatically adjust according to the height of the images so using images with different height and ratio not going to work if you want a consistent grid. Try to create a custom canvas for all the paintings. Place the painting in the canvas before uploading them. You can do this using photoshop or any image editor. Basically, we want all images to be the same in width and height.

    3.) You can’t use the advance layout builder to create the ajax preview. Like I said, you need to add the content in the Ajax Portfolio Preview Settings. The left column of the ajax preview will display the portfolio gallery or slideshow, and the right column will display the content. You can use use the advance layout builder to build the actual portfolio item page.

    4.) Go to Settings > Media then adjust the Large Thumbnail. Set the width and height to 9999.

    Regards,
    Ismael

    Hey alfaweb2!

    Thank you for using Enfold.

    I’m sorry but can you please explain it a little bit further?

    Cheers!
    Ismael

    in reply to: custom-spacing #461945

    Hi!

    Add the h6 tag:

    .custom-spacing h6 {
      letter-spacing: -0.1em;
      word-spacing: -0.1em;
    }

    For further modifications, please visit codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: error at footer menu #461939

    Hey!

    It’s also happening on desktop. There are css codes that looks like this:

    .custom-text-spacing { letter-spacing: -0.1em; word-spacing: -0.5em; }
    

    Where do you think that come from?

    Regards,
    Ismael

    in reply to: Socket Customization / Shortcode Options #461929

    Hi cameron329!

    Thank you for using Enfold.

    Unfortunately, that is not possible or there is no option for that in the theme. You will need to edit the footer.php file if you want to create columns in the socket container.

    Regards,
    Ismael

    in reply to: Assets files for One-Page-Portfolio #461926

    Hey!

    We will ask Kriesi to check this thread personally. Please wait for his response.

    Best regards,
    Ismael

    Hey!

    If you don’t want to use a plugin, you can override the default thumbnail size with this on functions.php file:

    function ava_image_sizes() { 
    add_image_size('entry_with_sidebar', 261, 186, array('center', 'top'));
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Again, you need to regenerate the thumbnails or upload it again. The plugin suggested above can regenerate your thumbnails. :)

    Best regards,
    Ismael

    Hi!

    Please give us a link to the actual site so that we can check it. Anyway, I’m not sure if we will be of any help at all. It will take some time before google or any other search engines crawl your site again, a week or even a month. http://googlewebmastercentral.blogspot.com/2010/04/url-removals-explained-part-ii-removing.html

    You can also ask google to recrawl your site: https://support.google.com/webmasters/answer/6065812?hl=en

    Best regards,
    Ismael

    in reply to: Google Font works in Chrome only #461905

    Hey Egorro!

    Thank you for using Enfold.

    Some google web fonts will not work if you didn’t specify the font weight. Try to add this to the Quick CSS field:

    h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title, body, body p {
        font-family: "Tenor Sans","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
        font-weight: 400;
    }

    Regards,
    Ismael

    in reply to: Custom font reset to default after few saves #461891

    Hey pedronx!

    Thank you for using Enfold.

    What is the code that you use? Please post it on pastebin.com.

    Cheers!
    Ismael

    in reply to: Display tables on mobile #461889

    Hey!

    I checked the site on a desktop browser and on a mobile device (iPod). The tables are scrollable.

    Best regards,
    Ismael

    in reply to: conditional menu #461874

    Hi Cevik_Kuersad!

    Thank you for using Enfold.

    You can use this plugin which works like the widget logic: https://wordpress.org/plugins/menu-items-visibility-control/

    Cheers!
    Ismael

Viewing 30 posts - 46,981 through 47,010 (of 66,017 total)