Forum Replies Created
-
AuthorPosts
-
Hey!
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,
IsmaelHi reraow!
Thank you for using Enfold.
The page loads fine when I checked it, loading speed (slider to display) is approximately 5-7 secs which is not bad. And if you check the site on a website speed test, there’s a lot of scripts and stylesheets from third party plugins which contributes additional requests time, not to mention modified images and videos (http://harakastudio.com/test/wp-content/uploads/2015/04/900pxl_6.webm, 11mb). Regarding the “blinking issues”, there’s an error in the console which might be related:
http://harakastudio.com/wp-content/themes/enfold/css/fonts/Kelson%20Sans%20Regular-webfont.woff2 Failed to load resource: the server responded with a status of 404 (Not Found) http://harakastudio.com/wp-content/themes/enfold/css/fonts/Kelson%20Sans%20Regular-webfont.woff Failed to load resource: the server responded with a status of 404 (Not Found) http://harakastudio.com/wp-content/themes/enfold/css/fonts/Kelson%20Sans%20Regular-webfont.ttf Failed to load resource: the server responded with a status of 404 (Not Found)Please check the font files.
Regards,
IsmaelSeptember 19, 2015 at 5:20 am in reply to: SEO Yoast plugin suggesting no images on page – any suggestions why? #505838Hi!
Where can we find the actual portfolio page? In the home page (http://www.jdrakeproductions.com/moyersgroup/), there’s only a slider. The “projects” page is blank: http://www.jdrakeproductions.com/moyersgroup/our-projects/
Cheers!
IsmaelSeptember 19, 2015 at 5:15 am in reply to: Buddypress Toolbar won`t show when Woocommerce installed #505835Hi!
Thank you for the info but I think you forgot to include the login details. Please try to open inquiries in the plugins’ respective support forum. I’m sure they will be able to provide a lot of help.
Best regards,
IsmaelHi!
Please replace the code with this:
add_action('wp_footer', function() { ?> <script> (function($) { $('#top #menu-item-search.menu-item-search-dropdown > a').click(function() { setTimeout( function() { $('#top #s').attr('maxlength','10'); }, 500); }); $('#top #s').each(function() { $(this).attr('maxlength','10'); }); })(jQuery); </script> <?php });Best regards,
Ismael -
AuthorPosts
