Forum Replies Created
-
AuthorPosts
-
Hey!
Please add this in the functions.php file to remove the default flags:
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); }
After that, add this code to place the selector in the top bar:
add_action('avia_meta_header', 'add_custom_content_to_header'); function add_custom_content_to_header() { do_action('icl_language_selector'); }
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Regards,
IsmaelHey!
It’s possible to remove a registered stylesheet then register a new one. Add something like this in the functions.php file:
add_action( 'wp_enqueue_scripts', 'wp_enqueue_scripts_mod', 20 ); function wp_enqueue_scripts_mod() { wp_dequeue_style( 'avia-child' ); wp_deregister_style( 'avia-child' ); wp_register_style( 'new-child-style', get_stylesheet_directory_uri() . '/new.css', false, '1.0.0' ); wp_enqueue_style( 'new-child-style' ); }
Cheers!
IsmaelHey!
I’m sorry but I don’t think that’s possible without major customization in the plugin. You can only see the total of the product price if you visit the actual cart page, after you add the product item in the cart. Please contact the woocommerce support, maybe they can modify the quantity button to update the price automatically.
Cheers!
IsmaelHey midischool!
Thank you for using Enfold.
You could use this in the Quick CSS field in order to adjust the style of the button:
.avia_ajax_form .button { margin: 0; padding: 16px 20px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 12px; min-width: 142px; outline: none; }
Adjust the values as you please.
Best regards,
IsmaelHi!
The code above will only affect the the mobile view or screens with resolution lower than 767px.
Best regards,
IsmaelHey!
When you land on the following link, please look for the X (Remove Frame) button then navigate to the actual demo page. You can then get the actual demo url: http://kriesi.at/themedemo/?theme=enfold-overview
Right now, we can only see the enfold overview page which is not related to your inquiry. A screenshot explaining what you’re trying to do will help as well.
Best regards,
IsmaelHi!
Thank you for the info. You can start with this in the Quick CSS field:
.esg-selected-filterbutton { background: white !important; border: 1px solid #e2e0de; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; font-size: 15px; height: inherit; line-height: inherit; width: 100% !important; box-sizing: border-box; border: 2px solid gray; padding: 5px 20px; } .esg-filter-wrapper.dropdownstyle { width: 23%; margin-left: 1% !important; margin-right: 0 !important; }
Best regards,
IsmaelHi!
For clarification, the Main Content refers to the section inside a page. We applied a background image in the General Styling > Alternate Content panel as well and then created a test page to explain it better: http://bernhard-kaeferboeck.at/test/
The test page contains two color sections, first color section’s Section Bacground > “Section Colors” option is set to “Main Content” while the other section is set to “Alternate Content”. See how it applies the background set on General Styling > Alternate Content and General Styling > Main Content panel. If you want to see these backgrounds on different pages, you need to add a color section element then set Section Bacground > “Section Colors”.
Regards,
IsmaelHey A_Niloo!
Thank you for using Enfold.
I’m not exactly sure what you’re trying to do here but if you want to modify the schema.org markup, you can use the “avf_markup_helper_attributes” filter. Example here:
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if($args['context'] == 'entry_time') { $attributes['itemprop'] = 'dateModified'; $attributes['datetime'] = get_the_time('c'); } return $attributes; }
Look for the includes > helper-markup.php file for reference.
Cheers!
IsmaelSeptember 21, 2015 at 5:51 am in reply to: Blog Posts displays only excerpt instead of full content #506202Hey!
Looks like you use the “more” tag in the posts. Unfortunately, the tag will override the Blog Content length option. You can remove the more tag in the posts then use the Excerpt box instead.
Cheers!
IsmaelSeptember 21, 2015 at 5:12 am in reply to: Added Woocommerce shop to existing site; How to match formatting shop page? #506182Hey!
Again, you can use the advance layout builder to rebuild those pages. Use the woocommerce page shortcodes in a text or code block. Example:
[woocommerce_checkout]
You can then add more content. Refer to this link for more info regarding the page shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/
Best regards,
IsmaelHey Mario!
Thank you for using Enfold.
Add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .av-flex-cells .av_one_fourth { padding-left: 0% !important; padding-right: 0% !important; width: 50%; float: left; }}
Best regards,
IsmaelHi Andy!
Thank you for using Enfold.
Please try to update the theme to the latest version, 3.3.2. If it doesn’t fix the issue, post the login details here so that we could take a look in the dashboard.
Best regards,
IsmaelSeptember 21, 2015 at 5:01 am in reply to: How to fit the images in a correct width and height #506177Hi!
Thank you for the info. You can set the images as Custom Background Image of the grid row cells.
Regards,
IsmaelHi!
You can actually accomplish a grayscale effect via css. Please refer to the solution provided here:
http://stackoverflow.com/questions/609273/convert-an-image-to-grayscale-in-html-css
http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.htmlCheers!
IsmaelHey!
1.) There’s a function called “add_custom_script” in the parent theme’s functions.php file. We renamed it for you. You can now activate the child theme’s functions.php file. :)
Best regards,
IsmaelHey!
There’s a lot of issues with general styling options not updating because of file permissions. I think this is one of the reasons why Kriesi chose to set it 0777 to give full permission to user groups. There are no sensitive codes or infos in that directory so setting it to 777 is safe. Aside from that directory and the custom fonts, the theme doesn’t create or modify any folders.
Regards,
IsmaelSeptember 19, 2015 at 6:58 am in reply to: Blog Posts displays only excerpt instead of full content #505874Hi!
I was able to login to the dashboard but the user doesn’t have access to the theme options. Please set the user as admin.
Regards,
IsmaelHi 2funky!
Thank you for using Enfold.
Please use this plugin to translate the strings: https://wordpress.org/plugins/loco-translate/
Regards,
IsmaelSeptember 19, 2015 at 6:57 am in reply to: This post is also available in – WPML translation link positioning #505872Hi Simon!
Thank you for using Enfold.
You can use this in the Quick CSS field to adjust the position of the text:
.icl_post_in_other_langs { position: absolute; bottom: 10px; }
This will put the element below the actual post.
Regards,
IsmaelHi!
You can try this:
#top .av_header_transparency #header_meta { background: rgba(255,255,255,0.25); box-shadow: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
Cheers!
IsmaelHi!
We modified the code in the functions.php file a bit. Please remove browser cache then reload the page: http://www.rewavelab.com/
Regards,
IsmaelHey!
I’m not sure if this is going to help but please edit header.php, look for this code:
<meta charset="<?php bloginfo( 'charset' ); ?>" />
Below, add this code:
<?php if(preg_match('/(?i)msie [9-11]/',$_SERVER['HTTP_USER_AGENT'])) { echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>'; } ?>
Cheers!
IsmaelSeptember 19, 2015 at 6:20 am in reply to: Highlight Main Menu Item when Sub Menu level 2 is clicked? #505863Hi!
Add the “.active-parent-item” selector in your css modifications:
#header .current_page_item a, #header .main_menu a:hover, .active-parent-item { background-color: #de1a17 !important; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; color: white !important; background-color: #BF0F13; background-image: -webkit-gradient(linear, left top, left bottom, from(#ED161C), to(#BF0F13)); background-image: -webkit-linear-gradient(top, #ED161C, #BF0F13); background-image: -moz-linear-gradient(top, #ED161C, #BF0F13); background-image: -ms-linear-gradient(top, #ED161C, #BF0F13); background-image: -o-linear-gradient(top, #ED161C, #BF0F13); background-image: linear-gradient(to bottom, #ED161C, #BF0F13); }
Regards,
IsmaelHey!
The demo link is incorrect (http://kriesi.at/themedemo/?theme=enfold-overview). It is the link to the theme overview page. Please close the frame then give us the actual demo page url.
Best regards,
IsmaelHi!
Replace the code with this:
.html_header_top.html_header_topbar_active.html_header_sticky .page-id-4994 #main { padding-top: 0; } .page-id-4994 .av_header_top { display:none !important; } .page-id-4994 .header-scrolled { display: block !important; }
Best regards,
IsmaelHi!
Sorry for the delay. Regarding the “popup” question, you can try to open an inline content in a lightbox. Follow the instructions here:
https://kriesi.at/support/topic/inline-content-in-magnific-popup/#post-289356
https://kriesi.at/support/topic/open-form-in-a-lightbox-popup/#post-378103Regards,
IsmaelHey!
Site loads fairly fast on my end. Approximate loading speed is 3-5 secs. You can also test it on pingdom: http://tools.pingdom.com/fpt/#!/ecT0oX/http://www.ffei.co.uk
Did you test it on a different computer? Or maybe on a different network, net cafe perhaps, somewhere?
Best regards,
IsmaelHey!
Please use this plugin to specify the meta tags (description, title, robots etc) of the pages: https://wordpress.org/plugins/wordpress-seo/
You might need to ask google to recrawl the url or wait for a few days before google re-update the page info: https://support.google.com/webmasters/answer/6065812?hl=en
Best regards,
Ismael -
AuthorPosts