Forum Replies Created
-
AuthorPosts
-
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!
IsmaelHi!
Please provide a screenshot so that we know what to fix. Use imgur or dropbox.
Best regards,
IsmaelHey!
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!
IsmaelHey 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!
IsmaelHi 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,
IsmaelJune 21, 2015 at 10:36 am in reply to: Remove tooltips (title attributes) from masonry gallery #462307Hi!
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,
IsmaelJune 21, 2015 at 10:28 am in reply to: Enfold: Removing the search magnifying glass and adding in the search field #462304Hi!
What happens when you add this in the Quick CSS field?
#menu-item-search { right: -50px !important; }
Let us know.
Best regards,
IsmaelHi 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,
IsmaelHi!
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!
IsmaelJune 19, 2015 at 4:23 pm in reply to: Remove Current Portfolio Post from related portfolio grid Enfold #462034Hi!
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,
IsmaelJune 19, 2015 at 4:19 pm in reply to: Remove Current Portfolio Post from related portfolio grid Enfold #462031Hey!
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,
IsmaelHey!
It’s just a notice that a variable has not been initialized, in this case the “$meta[‘index’] variable in the said file.
Regards,
IsmaelHey 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!
IsmaelHi!
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!
IsmaelJune 19, 2015 at 3:15 pm in reply to: New Border/Color options for columns are breaking responsive? #461971Hi!
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,
IsmaelHi!
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!
IsmaelHi!
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,
IsmaelJune 19, 2015 at 2:57 pm in reply to: same layout for blog posts 1:1 and other mouse over png #461951Hey alfaweb2!
Thank you for using Enfold.
I’m sorry but can you please explain it a little bit further?
Cheers!
IsmaelHi!
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!
IsmaelHey!
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,
IsmaelHi 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,
IsmaelHey!
We will ask Kriesi to check this thread personally. Please wait for his response.
Best regards,
IsmaelJune 19, 2015 at 2:34 pm in reply to: Problem Changing Size of Featured Image in Blog Post via Child Theme #461921Hey!
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,
IsmaelJune 19, 2015 at 2:30 pm in reply to: Google Search Results – av_textblock & other code as the Description #461914Hi!
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,
IsmaelHey 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,
IsmaelHey pedronx!
Thank you for using Enfold.
What is the code that you use? Please post it on pastebin.com.
Cheers!
IsmaelHey!
I checked the site on a desktop browser and on a mobile device (iPod). The tables are scrollable.
Best regards,
IsmaelHi 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 -
AuthorPosts