Forum Replies Created

Viewing 30 posts - 57,001 through 57,030 (of 67,479 total)
  • Author
    Posts
  • 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!
    Ismael

    Hey 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,
    Ismael

    in reply to: Portfolio items getting a 404 after updating theme #301417

    Hey!

    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!
    Ismael

    Hey 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!
    Ismael

    in reply to: Responsive behaviour in a range #301149

    Hi 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!
    Ismael

    Hi 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,
    Ismael

    in reply to: Custom Header for blog page and posts #301140

    Hi!

    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!
    Ismael

    in reply to: How to change the wpml #301139

    Hi 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!
    Ismael

    in reply to: Portfolio showing wrong category and item #301138

    Hey!

    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!
    Ismael

    Hey 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: LayerSlider displaying slide background images zoomed in #301127

    Hi 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,
    Ismael

    in reply to: Bottom adjustment of Menu-Items in default Header-Layout #301126

    Hi 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!
    Ismael

    in reply to: Combo Widget – Display specific post category #301119

    Hey 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,
    Ismael

    in reply to: google translation plugin #301117

    Hi 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!
    Ismael

    in reply to: Script loading problem #301111

    Hey 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,
    Ismael

    in reply to: change margin for headlines and bodycopy #301098

    Hey!

    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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Slider bottom border #301095

    Hi!

    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!
    Ismael

    in reply to: Transparent header on mobile #300951

    Hi!

    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,
    Ismael

    in reply to: Favicon for different platforms in header #300946

    Hi 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,
    Ismael

    in reply to: Layerslider Transition Problem #300943

    Hi!

    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,
    Ismael

    in reply to: Promo Box responsiveness issue #300942

    Hi 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,
    Ismael

    in reply to: Bold special heading #300940

    Hi!

    Thank you for using the theme and glad you figured that out. If you still have questions, let us know. :)

    Regards,
    Ismael

    in reply to: Portfolio posts layout (content element) #300939

    Hey 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!
    Ismael

    in reply to: formatting #300937

    Hey!

    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,
    Ismael

    in reply to: Menu column headers without hyperlinks & Column width #300936

    Hey!

    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,
    Ismael

    Hi!


    @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,
    Ismael

    in reply to: Enfold Ajax Search & WMPL #300932

    Hey 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

    in reply to: Help with header position #300931

    Hey!

    What is your screen resolution? I edited the style.css file and it looks ok now. Please remove browser cache then reload the page a few times.

    Best regards,
    Ismael

Viewing 30 posts - 57,001 through 57,030 (of 67,479 total)