Forum Replies Created
-
AuthorPosts
-
August 8, 2014 at 4:27 am in reply to: ENFOLD; The drop down menu and the mega menu do not show all the pages #301422
Hi!
Thank you for the info.
You should probably contact your host to do the changes for you. They will know what to do. Please tell them that you need to increase the max_input_vars option to 2000 or more because your menu are not being saved properly. FTP is a way of transferring files using a software like FileZilla etc. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelAugust 8, 2014 at 4:24 am in reply to: Documentation and examples if NOT using the ALB. Theme not easy to customize! #301420Hey USEYOURHEAD!
Thank you for visiting the support forum and I’m sorry if you’re having a hard time using the theme. If you want to customize something on the theme and you found no options to do it, you’re free to search the forum or post an inquiry yourself. Anyway, regarding the customization, I already answered number 1 on your previous post.
1.) https://kriesi.at/support/topic/a-double-line-for-special-heading-instead-of-single-line/
2.) If you want a transparent background on a three column layout, kindly insert a color section then add an id to it using the For Developers: Section ID field. Let’s put “transparent-background” for example. Now, insert 3 1/3 column layouts. Add this on Quick CSS or custom.css to create a transparent columns:
#transparent-background .flex_column.av_one_third { background-color: rgba(255,255,255,.5); padding: 10px 10px; }3.) When you say text frame, I assume you mean the text block. Note that you can add html tags on the text block. Create a container or div then apply a box-shadow property on it. If you can provide a screenshot of what you’re trying to do, we’ll be happy to help.
Thank you.
Best regards,
IsmaelHey!
Sorry for the delay. Glad you figured that one out. Usually, you need to regenerate the .htaccess when you encounter a 404 page. Flushing the permalink is one of the ways to do it.
Cheers!
IsmaelAugust 8, 2014 at 4:11 am in reply to: A double line for Special Heading, instead of single line ? #301414Hey USEYOURHEAD!
Thank you for using Enfold.
You can find the shortcodes on config-templatebuilder > avia-shortcodes folder. If you want to create a double line, edit heading.php on the said folder then look for this code on line 232:
$output .= "<div class='special-heading-border'><div class='special-heading-inner-border' {$border_styling}></div></div>";Below, add another border line:
$output .= "<div class='special-heading-border'><div class='special-heading-inner-border' {$border_styling}></div></div>";On Quick CSS, add this:
.av-special-heading-h3 .special-heading-border { height: 1em; }All of the shortcode styling can be found on css > shortcodes.css and the basic theme layout on css > layout.css.
Cheers!
IsmaelHi CloudChoice!
Thank you for using Enfold.
Please try this on Quick CSS or custom.css:
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .page-id-7165 .container { width: 428px; } }Cheers!
IsmaelAugust 7, 2014 at 3:16 pm in reply to: Layerslider 3D transition not working properly in Chome or IE #301141Hi jackpeters!
Thank you for using Enfold.
The layers slider author is aware of the 3D transition with Chrome. He fixed the issue on the layer slider 5.1.1 which is, unfortunately, not included on the latest patch of the theme. We already reported the issue to Kriesi. For now, please use the 2D transition.
Best regards,
IsmaelHi!
I’m sorry but it’s not possible without major modification, you can start with header.php and includes > helper-main-menu.php. This particular task falls beyond the scope of support so we won’t be able to help you with it. Please hire a freelance developer to do it for you. Visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
Cheers!
IsmaelHi sunstarcomposites!
Thank you for using Enfold.
Please use this on functions.php to remove the theme’s WPML flag options:
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); }Go to WPML then the Display the language switcher in the WP Menu. Select your main or secondary menu. On Language switcher style, choose the Drop-down menu.
Cheers!
IsmaelHey!
Thank you for the info.
Please post the login details here and set it as a private reply. We would like to check it.
Cheers!
IsmaelAugust 7, 2014 at 2:58 pm in reply to: Theme Empfehlungen für One Page Design, Flat Design oder Metro Design #301135Hey maxisgoinghome!
Thank you for visiting the support forum.
Instead of using the Replete theme, please use our latest theme which is Enfold. It is much more flexible and easier to use.In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you.
Thanks!
Best regards,
IsmaelAugust 7, 2014 at 2:51 pm in reply to: Page formatting removed when using ie9 and advance page builder #301131Hi!
Thank you for the info.
I edited the test page using IE9 but I can’t save the text blocks. Please try to deactivate all plugins. If possible, give us an access to deactivate the plugins while working on the site.
Regards,
IsmaelAugust 7, 2014 at 2:40 pm in reply to: LayerSlider displaying slide background images zoomed in #301127Hi WalstonNet!
Thank you for using Enfold.
We will need to see the actual page with the slider. Please post the url here. Anyway, 20px and 8px differential is not that big in my opinion. I bet no one will notice the difference.
Regards,
IsmaelAugust 7, 2014 at 2:35 pm in reply to: Bottom adjustment of Menu-Items in default Header-Layout #301126Hi Bruno!
Thank you for using the theme.
You can adjust the main menu using this on Quick CSS or custom.css:
nav.main_menu { top: 20px; } .av-main-nav ul { top: 50px; } .avia-menu-fx { position: absolute; bottom: 19px; }The code above is for the main menu, sub menu and menu active/hover state line respectively. Adjust the values if necessary. For the shrink header, add this:
.header-scrolled nav.main_menu { top: 0; } .header-scrolled .av-main-nav ul { top: 100%; } .header-scrolled .avia-menu-fx { position: absolute; bottom: -1px; }Cheers!
IsmaelHey wacky32!
Thank you for using the theme.
You can edit framework > php > class-framework-widgets.php, find this code on line 939:
echo '<div class="tab widget_tab_comments"><span>'.__('Comments', 'avia_framework').'</span></div>'; echo "<div class='tab_content'>"; avia_get_comment_list( array('number' => $posts, 'status' => 'approve', 'order' => 'DESC') ); echo "</div>";Replace it with something like this
echo '<div class="tab widget_tab_comments"><span>'.__('Category Name', 'avia_framework').'</span></div>'; echo "<div class='tab_content'>"; avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc&cat=15'); echo "</div>";We change the avia_get_comment_list function with the avia_get_post_list then we added the cat parameter and set it to category id 15. You change the category if you want.
Best regards,
IsmaelHi bensmithdesign!
Thank you for using the theme
Please add this on functions.php:
function add_google_translate() { ?> <meta name="google-translate-customization" content="XXXXXX"></meta> <?php } add_action('wp_head', 'add_google_translate'); function add_google_translate_script() { ?> <div id="google_translate_element"></div> <script type="text/javascript"> function googleTranslateElementInit() { new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element'); } </script> <script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> <?php } add_action('ava_after_main_menu', 'add_google_translate_script');This will add the translator right after the main menu.
Cheers!
IsmaelHey KattaC!
Thank you for visiting Kriesi’s forum.
What is the actual script? How did you add it? Note that we don’t support third party plugin or script as stated on our support policy. On the console there’s already an error for require.js. You should probably ask the script author.
Best regards,
IsmaelHey!
If you’re not using the advance layout editor, try to enclose the text or objects inside a div or section with a class of .av_textblock_section. Something like this:
<div class="av_textblock_section"> CONTENT HERE </div>Regards,
IsmaelAugust 7, 2014 at 1:35 pm in reply to: Having trouble creating gallerys with title text underneath. #301097Hi!
Thank you for using Enfold.
If you’re using the masonry gallery, you can add a custom link on the gallery item. Edit the gallery again then click the images on the gallery. Look for the Custom Link field.
Best regards,
IsmaelHi!
Alright. My bad. I thought you want the other way around. Try to change Global Settings > Slider width to 100% then adjust the width of the BG layer to 100%.
Cheers!
IsmaelHi!
Thank you for the info.
Please use this:
@media only screen and (max-width: 767px) { .responsive #main { padding-top: !important; margin-top: -82px; } #main .entry-content-wrapper.clearfix { margin-top: 82px; } }Remove browser cache then reload the page a few times.
Regards,
IsmaelHi Igor!
Thank you for using Enfold.
Try to use the absolute url where the favicons are located. Example:
<link rel="apple-touch-icon" sizes="57x57" href="http://www.mycoolsite.com/wp-content/themes/enfold/favicon/apple-touch-icon-57x57.png">Best regards,
IsmaelHi!
You’re using the latest version of the theme. We haven’t release the latest update of the theme with the layer slider 5.1.2 patch. :)
Best regards,
IsmaelHi axelfx07!
Thank you for visiting Kriesi’s support forum.
You can increase the right margin of the promobox content. Use this on Quick CSS or custom.css:
.avia-promocontent { margin-right: 400px; }Regards,
IsmaelHi!
Thank you for using the theme and glad you figured that out. If you still have questions, let us know. :)
Regards,
IsmaelHey atrixdave!
Thank you for using the theme.
Since you’re asking to fix the layout of the theme, we need to inspect the code but I think you installed a plugin to stop viewers from inspecting the site. Please disable the plugin then we’ll check it again.
3.) You can reduce the spacing between posts using this on Quick CSS or custom.css:
.template-blog .post_delimiter { margin: 0 0 10px 0; padding: 10px 0 0 0; }Cheers!
IsmaelHey!
Thank you for the update.
You should place the code on Enfold > General Styling > Quick CSS field. Remove browser cache then reload the page a few times to see the changes.
In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests</a
Regards,
IsmaelAugust 7, 2014 at 4:00 am in reply to: Menu column headers without hyperlinks & Column width #300936Hey!
Thank you for the info.
The width and height of the mega menu will depend on the number of menu items and the number of characters a menu item have. You can change the width but it will break the layout of the theme on different screen sizes. Also, you can’t use the mega menu on Secondary or Top Menu.
Best regards,
IsmaelAugust 7, 2014 at 3:57 am in reply to: How can I make the post title appear above the featured images on the blog page? #300935Hi!
@netchoice: Please use this on Quick CSS or custom.css to re-align the blog header:header.entry-content-header { padding-left: 130px; }Regarding the second question, the preview image is already large and there are no spaces left to increase the size of the image. Please give us a link to the actual blog page and a screenshot of what you’re trying to do.
Regards,
IsmaelHey maratino!
Thank you for using Enfold.
I was able to do a search on the english version of the site. I type in “sax” on the search field and the first result is “Fiberreed HEMP Soprano Saxophone”. I tried it again on the deutsche version using the same search characters, the first result is “Fiberreed HEMP Sopransaxophon”.
Best regards,
Ismael -
AuthorPosts
