Forum Replies Created
-
AuthorPosts
-
October 24, 2018 at 3:23 pm in reply to: The Language Switcher is Not Displaying on the Search Page #1025930
Hi,
I can’t connect to the file server. The login info is incorrect.
Best regards,
IsmaelHi,
You should add it in the child theme’s functions.php file. Use this css code to remove the theme’s pinterest button.
.av-share-link.av-social-link-pinterest { display: none; }
Or edit the includes > helper-social-media.php file, add the “nopin” attribute on line 236:
$this->html .= "<a nopin {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";
This will exclude the default pinterest button from the script.
Best regards,
IsmaelHi,
The font is set to “Special Elite”. Please remove this css code.
#top #header .av-main-nav > li { font-family: Special Elite; }
And upgrade the theme to version 4.5.
Best regards,
IsmaelHi,
I can’t find anything unusual in the site. Please try to upgrade to version 4.5. Use mp4 or youtube videos temporarily.
Best regards,
IsmaelHi,
Where did you add the layer slider? I can’t find it in the “home-movie” page. Please create a test page and provide a screenshot.
Best regards,
IsmaelHi,
Great! Thread is getting a bit too long. Please open a new thread if you need anything else. We’ll close this one now.
Best regards,
IsmaelHi,
You can modify the image’s title in the Media > Library panel. You can also add html tags inside that title field.
Example:
<a href="URL HERE">Image Title</a>
This markup will display in the lightbox footer.
Best regards,
IsmaelHi,
Yes, you can import the parent theme settings after creating a child theme. You won’t lose anything as long as the theme option import is successful. More info in the documentation.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
Best regards,
IsmaelHi,
I’m not really sure why the layer slider editor is not loading or why it’s returning a 520 error. But I think it has something to do with your cdn. You may need to get in touch with your hosting and cdn provider.
Best regards,
IsmaelHi,
I’ll tag @Gunter or @Dude to the thread again. Please wait for their response.
Best regards,
IsmaelOctober 24, 2018 at 4:21 am in reply to: Mailchimp Form in Layerslider WP Popup Only Works when Logged into WordPress #1025771Hi,
Thank you for using Enfold.
It looks like the subscriptions are being sent properly. I tested it on the “test-timed-signup” popup form.
ajax_mailchimp true avia_0_1 test%40test.com avia_avia_username_1 avia_generated_form1 1 Status code: 200
I didn’t log in. Did you enable the GDPR option in your mailchimp list or forms?
Best regards,
IsmaelHi,
Did you create a backup on your cPanel? We can’t help you restore the site if it doesn’t exist. Please contact your hosting provider. Maybe, they can restore the site from a previous version.
Best regards,
IsmaelHi,
I don’t think that’s possible with the magnific popup. You can’t open a nested lightbox inside the current one. There’s nothing like that in the script documentation.
// http://dimsemenov.com/plugins/magnific-popup/documentation.html#inline-type
Best regards,
IsmaelHi,
You need to remove the “data-pin-custom=”true””. The html code should be:
<a href="https://www.pinterest.com/pin/create/button/" data-pin-do="buttonBookmark">Pinit</a>
I tried to add the pinit script in the funtions.php file but there are errors. Please add this code:
add_action( 'wp_enqueue_scripts', 'ava_enqueue_pinterest_script', 10 ); function ava_enqueue_pinterest_script() { wp_register_script( 'avia-pinit', 'http://assets.pinterest.com/js/pinit.js', array(), '', false ); wp_enqueue_script( 'avia-pinit' ); }
This is working properly on my end.
Best regards,
IsmaelHi,
Thanks for the update.
It’s been a while. I hope you’re doing good. To start this off, please upgrade the theme to version 4.5 first. You have to do it manually because the old update process is nulled.
After the upgrade, please kindly open a single thread for each inquiry so that we can isolate the issues. I’ll close this thread temporarily.Best regards,
IsmaelHi,
Thanks for the update. Try this css code for the main menu.
#top .header_color .main_menu ul> li > a { font-family: kgallofme-webfont; }
Best regards,
IsmaelHi,
Are you trying to set it as a body font? Replace the filter with the following code.
add_filter( 'avf_google_heading_font', 'avia_add_custom_heading_font'); add_filter( 'avf_google_content_font', 'avia_add_custom_body_font'); function avia_add_custom_heading_font($fonts) { $fonts['Montserrat New'] = 'Montserrat:300,600,800'; return $fonts; } function avia_add_custom_body_font($fonts) { $fonts['Google fonts']['Montserrat New'] = 'Montserrat:300,600,800'; return $fonts; }
Select the “Montserrat New” in the fonts panel. You may need to specify the font weight with css manually.
Best regards,
IsmaelHi,
The site is not loading properly. Please try to upgrade the theme via FTP because the old version is still using the deprecated version of the Envato API.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
Best regards,
IsmaelHi,
The actual htaccess authentication info is inside the “/home2/theeduf8/.htpasswds/” file. Please post the content of that file in the private field.
Best regards,
IsmaelHi,
You can modify the search.php template directly. Adjust the default get_sidebar function and point it to a sidebar with a custom name.
get_sidebar('search-sidebar');
You need to create a new template and name it sidebar-search-sidebar.php.
// https://developer.wordpress.org/reference/functions/get_sidebar/
Or install the Widget Logic plugin.
// https://wordpress.org/plugins/widget-logic/
Best regards,
IsmaelHi,
I added the code in the latest version of the avia.js with a console.log to check if it’s working or not. It does work but I’m not sure what you’re trying to do with that script. It just adds the “html_av-framed-box” class attribute to the html tag on scroll and nothing else.
$(window).on( 'scroll', function() { ajout_carlito_func(); }); /* Ajout Carlito */ function ajout_carlito_func() { console.log('carlito'); $("html").addClass("html_av-framed-box"); }
Best regards,
IsmaelHi,
Thanks for the update. This is what I get from the console.
js?v=3.30&key=keyhere&callback=aviaOnGoogleMapsLoaded:54 Google Maps JavaScript API error: InvalidKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error
The API key seems to be invalid. Please delete the current project and then create a new one, just to make sure that you’re using v3 of the API instead of v2.
Best regards,
IsmaelHi,
Do you have a site backup or a restore point? I would like to try to regenerate the thumbnails to increase the size of these thumbnails. (see private field)
Best regards,
IsmaelHi,
I’m not really sure what caused it. But I’m glad it’s fixed.
Best regards,
IsmaelHey ZacharyKnight,
Thank you for using Enfold.
You can actually modify the includes > loop-index.php file in your child theme to override the default thumbnail settings. Just look for this code around line 66:
*/ $size = strpos($blog_style, 'big') ? (strpos($current_post['post_layout'], 'sidebar') !== false) ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
Set the default thumbnail sizes from “entry_with_sidebar” and “entry_without_sidebar” to “full” or “extra_large”.
Best regards,
IsmaelHey Nik,
Thank you for using Enfold.
That code is valid but you have to remove the comment part (// YOUR CODE GOES HERE). How did you add the script? Please post the actual code on pastebin.com.
Best regards,
IsmaelHey wacky32,
Thank you for using Enfold.
The galleries are taking me to non-existing pages. (see private field)
Best regards,
IsmaelHi,
I am referring to this authentication.
Please ask your hosting provider for that info. Or check the wp root directory where the htaccess or the .htpasswds files are located.
Best regards,
Ismael -
AuthorPosts