Forum Replies Created
-
AuthorPosts
-
Hi!
If you want to set “Italian” as the default language, you have to add this in the wp-config.php file:
define ('WPLANG', 'it_IT');You can then use the language_attributes filter plus the is_page conditional function to change the lang attribute on the english pages. Add something like this in the functions.php file:
add_filter('language_attributes', 'language_attributes_mod', 10, 1); function language_attributes_mod($output) { if(is_page(array( 2, 55, 'Test Page' ))) { $output = 'lang="en_US"'; } return $output; }The 2 and 55 value is the id of the pages that requires modification. You can also use the actual title or slug of the page.
Cheers!
IsmaelHey!
Alright. I’m sorry but there is no such page in the woocommerce plugin. You can only create a tracking field in order for customers to check the status of their orders. Add this shortcode in any page:
[woocommerce_order_tracking]EDIT: You need to install an extension to enable the order details: http://docs.woothemes.com/document/woocommerce-admin-custom-order-fields/
Cheers!
IsmaelHi!
This is the whole body markup of the home page: http://pastebin.com/ybr6RqNB
Right after the body tag, you’ll see the stylesheets and scripts. Those codes should be included in the head tag by default.
EDIT: The default markup should look roughly like this:
HTML
HEAD
SCRIPTS / STYLESHEETS
BODY
WRAP ALL
HEADER
MAIN
FOOTER
SOCKETThe SCRIPTS / STYLESHEETS in your installation comes right after the body tag and before the wrap_all container.
Regards,
IsmaelHey!
I checked the page and the markup is quite different from the default markup of the enfold theme so I assume you’re using a third party plugin to build the page. Please contact the plugin author regarding this issue.
Regards,
IsmaelAugust 3, 2015 at 1:14 pm in reply to: Mobile Menu Cutting off entries in the Menu based on size of the page #482070Hey!
Did you actually test this on a mobile device? If you open the mobile menu on an actual mobile device, you’ll be able to scroll down or swipe up to see the rest of the mobile menu. On desktop, you can scroll down.
Best regards,
IsmaelHi!
First of all the image that you’re using is not transparent: http://www.hayden-media.com/A1/wp-content/uploads/2015/07/slide1_Layer_x.png
Make it transparent then use this in the Quick CSS field to remove the background of the main container:
#main, .avia-msie-8 .av_header_sticky_disabled#header { background-color: transparent; }Cheers!
IsmaelAugust 3, 2015 at 1:00 pm in reply to: Tooltips icons location and tooltips window overflow off the page #482059Hey!
Thank you for using Enfold.
You can’t set the tooltip to align left or right but you can adjust the position in the Quick CSS field:
#top .avia-icon-tooltip { margin-left: -50px; } .avia-tooltip .avia-arrow-wrap { margin-left: 43px; }Regards,
IsmaelHey RynoSwan!
Thank you for using Enfold.
What is the code that you need to add? You can try the wp_head or wp_footer hook. https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head
Best regards,
IsmaelHey!
Hmm.. I just don’t see any difference between the pages but glad it worked. :)
Best regards,
IsmaelHey djshortkut!
Thank you for using Enfold.
What is the error that you get when you test the code? You can replace the code with this:
add_action('init', function() { global $avia_config; $avia_config['font_icons']['close']['icon'] = 'ue824'; $avia_config['font_icons']['mobile_menu']['icon'] = 'ue824'; return $avia_config; });Adjust the icon value.
Regards,
IsmaelHey MindSpark!
Thank you for using Enfold.
I’m not sure what you mean by that but if you try to resize the browser, you’ll see that the button is visible on smaller screen size.
Regards,
IsmaelHi martinprankl!
Thank you for using Enfold.
Use this in the Quick CSS field to adjust the logo on mobile view:
@media only screen and (max-width: 767px) { .responsive #top .logo { width: 100%; } .responsive .logo a { text-align: center; } .responsive .logo img { display: inline-block; max-height: 156px; } }Regards,
IsmaelHi Gigi!
Thank you for using Enfold.
Use this in the functions.php file to disable the default google font:
/* Disable Google Font embedding */ add_action( 'init', 'enfold_customization_switch_fonts' ); function enfold_customization_switch_fonts() { global $avia; $avia->style->print_extra_output = false; }Regards,
IsmaelHey TippToppFoto!
Thank you for using Enfold.
Users usually use third party services like imgur or dropbox when they want to post a screenshot because the forum doesn’t have any upload capability :)
1.) Are you trying to edit the menu items’ description? Go to the Appearance > Menus panel then remove the menu item description. If you can’t see the description field, activate it in the Screen Options.
2.) I’m sorry but can you please explain the issue a little bit further A screenshot will help.
3.) Use this in the Quick CSS field to adjust the left post navigation:
.avia-post-prev { left: 301px; }4.) You can only use a single style for the header. It’s either the top header or the left or right sidebar menu.
If possible, please create a single thread for each inquiry. Thank you.
Best regards,
IsmaelHey!
Glad it is working now. If you have any question, feel free to open a new thread. :)
Cheers!
IsmaelHey Kasperlino!
Thank you for using Enfold.
What is the application that you’re trying to run? Please give us a link to a test page.
Best regards,
IsmaelAugust 3, 2015 at 12:05 pm in reply to: Oh – Edge on Windows 10 is again totaly different to IE11 etc. #482023Hi Guenter!
Thank you for using Enfold.
Do you see any errors when you check the site on Edge browser’s console? I’m afraid we don’t have the browser at our disposal yet but we will check it as soon as possible.
Best regards,
IsmaelHey timpro!
Thank you for using Enfold.
You can adjust the menu padding and font size on smaller screens:
@media only screen and (max-width: 1100px) { .av-main-nav > li > a { padding: 0 8px; font-size: 11px; } }Regards,
IsmaelHey csmwebdesign!
Thank you for using Enfold.
You can combine the “cars” and “motorcycles” menu items into a single menu then use this plugin to control the visibility of the menu items: https://wordpress.org/plugins/menu-items-visibility-control/
Regards,
IsmaelAugust 3, 2015 at 7:38 am in reply to: scroll percentage setting for displaying thumbnail in galleries #481918Hey!
I’m sorry but you can’t add the modification in the child theme. You can add this in the Quick CSS field to disable the gallery animation:
.avia-gallery-thumb img { opacity: 1 !important; transform: scale(1) !important; }Best regards,
IsmaelHi compudean!
Thank you for using Enfold.
Glad to know you fixed it. How?
Regards,
IsmaelHi!
You can add this in the Quick CSS field:
#top .gallery .gallery-item { margin: 1px 1px 0 0; width: auto; height: auto; padding: 0; }Regards,
IsmaelHi!
Try to set the Maximum Rating of the avatars on Settings > Discussions > Avatars panel. Make sure that the users’ email have a registered avatar on http://en.gravatar.com/
Regards,
IsmaelHey cidcreative!
Thank you for using Enfold.
Please avoid from switching between the Default Editor and the the Advance Layout Builder when building the content. Try to switch the ALB to debug mode to get the shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Cheers!
IsmaelHey!
What is the original size of the images that you uploaded in your posts? You can regenerate the thumbnails in order to recreate the theme’s post thumbnail correctly. Use this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to the Settings > Media panel then click the “Regenerate Thumbnails” button.
Cheers!
IsmaelHey esemmel!
Thank you for using Enfold.
I checked the site but I don’t see the large image. Can you please provide a screenshot of the issue? Use imgur or dropbox.
Cheers!
IsmaelHi aztamer!
Thank you for using Enfold.
We need to see the actual website. Please post the url here. You can use css media queries to adjust the size of the image on smaller screens.
Best regards,
IsmaelHey iveyeng!
Thank you for using Enfold.
1.) Add this in the Quick CSS field to adjust the thumbnail size:
.small-preview { width: 160px; height: 160px; line-height: 160px; } .template-blog .blog-meta { left: -30px; position: relative; }2.) Can you please provide a screenshot? Use imgur or dropbox.
Regards,
IsmaelHi pbchambers!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author regarding the issue. I checked the site and the mobile menu icon container is sliding but it’s not stopping correctly.
Best regards,
Ismael -
AuthorPosts
