Forum Replies Created

Viewing 30 posts - 50,311 through 50,340 (of 67,534 total)
  • Author
    Posts
  • in reply to: Post format "Link" links direct in latest news widgit #426885

    Hey!

    Alright. Please edit framework > php > class-framework-widgets.php. Find this code on line 497:

    $link = get_post_meta( $the_id  ,'_portfolio_custom_link', true) != "" ? get_post_meta( $the_id ,'_portfolio_custom_link_url', true) : get_permalink();
    

    Below, add this code:

    if($format == 'link')
                                               {
                                                    $current_post = array();
                                                    $current_post['content'] = get_the_content();
                                                    $current_post['title'] =  get_the_title();
                                                    
                                                    if(function_exists('avia_link_content_filter'))
                                                    {
                                                        $current_post = avia_link_content_filter($current_post);
                                                    }
                            
                                                    $link = $current_post['url'];
                                                }

    Cheers!
    Ismael

    in reply to: Social Buttons nach Update verschoben #426880

    Hi!

    Did you use the advance layout builder to build the post? If yes, then you have to add all contents manually including the social share section.

    Cheers!
    Ismael

    in reply to: extra widget in Header is moving #426879

    Hi!

    How did you add the widget? Please post the code on pastebin.com. You can adjust the position of the widget on different screen sizes by using media queries.

    Regards,
    Ismael

    in reply to: Bildgröße im Raster-Layout ändern #426876

    Hey!

    Edit the blog posts element then set Preview Image Size to the second option. Select the image or thumbnail size manually.

    Cheers!
    Ismael

    in reply to: One Page Current menu item not working correct #426875

    Hi TOMIS116!

    Thank you for using Enfold.

    You have an outdated version of the theme, 3.0.4. Please update the theme to 3.1.3 to fix the issue.

    Cheers!
    Ismael

    in reply to: footer seperator #426874

    Hi!

    Try this:

    #footer .flex_column.av_one_fourth {
      text-align: center;
    }
    
    #footer .flex_column.av_one_fourth .widget {
      display: inline-block;
    }

    Best regards,
    Ismael

    in reply to: 1/2 Layout in einem 1/2 Layout Container #426873

    Hey borchersconsulting!

    Thank you for using Enfold.

    If possible, can you please provide a screenshot of what you’re trying to do? What’s the purpose of the very long link?

    Cheers!
    Ismael

    Hey!

    I checked the page but I, myself, also can’t tell the difference between the two images. Maybe we don’t have a “photographer’s eye”? I don’t think you should be reporting this issue to us, theme developers, because most premium themes use the same method of image resizing as stated on our previous post. You should report this issue to the WordPress developers who developed the image upload process or scripts.

    Anyway, thank you for sharing the info regarding the plugins. You can request the feature here on our request page. I’m sure a lot of photographers will be interested in this feature.

    Best regards,
    Ismael

    in reply to: Button to the TOP on mobile desapeared #425774

    Hey Bruno!

    Thank you for using Enfold.

    Please post the website url here. We would like to check it. Did you add any modifications to the theme?

    Regards,
    Ismael

    in reply to: HTTP Error (Only with some images) #425772

    Hi!

    Maybe they increase the upload size limit in the php.ini file:

    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 40M
    
    ; Must be greater than or equal to upload_max_filesize
    post_max_size = 40M

    If you’re working on a local installation, you need to restart the local server. Not sure how they actually do it in a live site.

    Regards,
    Ismael

    Hi dominiquehurley!

    Thank you for using Enfold.

    Please post the page url here. We would like to check it. Try this in the Quick CSS field:

    body .alignright, .entry-content-wrapper a:hover .alignright {
      float: left;
      margin: 5px 0 0 15px;
      display: block;
      position: relative;
    }

    Regards,
    Ismael

    in reply to: Animated Numbers won't resize on mobile #425767

    Hi!

    The page is private. :/

    Cheers!
    Ismael

    in reply to: How to reduce the width of the Logo and Main Menu Area #425763

    Hi!

    Try to replace it with this:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive.html_header_left #main {
      margin-left: 216px !important;
    }
    .responsive.html_header_sidebar #top #header {
      width: 216px !important;
    }}

    Regards,
    Ismael

    in reply to: extra widget in Header is moving #425762

    Hi!

    Did you test the code suggested above? It should prevent the flags from “jumping” when you scroll up or down.

    Cheers!
    Ismael

    in reply to: Issue | Add jquery file in head #425760

    Hey colapsnux!

    Thank you for using Enfold.

    Why do you need to add the jquery library script again? It is already included by default. You can find the built in WP code on functions.php:

    wp_enqueue_script('jquery');
    

    Regards,
    Ismael

    in reply to: Fullwidth Sub menu #425758

    Hi!

    Thank you for using Enfold.

    I’m not sure if I understand you clearly so I’ll ask one of the support team to check this. If you want to highlight the current menu item or active page in the fullwidth submenu, use this in the Quick CSS field:

    #top .av-subnav-menu > .current-menu-item a .avia-menu-text {
      color: red;
    }

    Cheers!
    Ismael

    in reply to: Bookmarks vs Pages #425757

    Hi ccharell!

    Thank you for using Enfold.

    Use absolute urls instead of the just the anchor name. For example, replace #bookmark with http:www.myhomepage.com/#bookmark. Refer to this link for more info: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Best regards,
    Ismael

    Hi DROR!

    Thank you for using Enfold.

    Use this to add a border on top of the share section:

    .single .av-share-box {
      border-top: 1px solid red;
      padding-top: 20px;
    }

    Use this to increase the font size:

    h5.av-share-link-description {
      font-size: 50px;
    }

    Best regards,
    Ismael

    in reply to: Where exactly to add outbrain code? #425750

    Hey DROR!

    Thank you for using Enfold.

    I’m not sure what’s the purpose of the code but if you want it to display right before the “Share Section” of the posts, maybe you can edit includes > loop-index.php. Add the code right after line 200:

    echo $content;
    

    Use this:

    echo '<div class="OUTBRAIN" data-widget-id="NA"></div>';
    

    Add this to the functions.php file:

    add_action('wp_head', 'ava_outbrain_mod', 10);
    function ava_outbrain_mod() {
    echo '<script type="text/javascript" async="async" src="http://widgets.outbrain.com/outbrain.js "></script>';
    }

    I tried to install it but it’s not working. I got an error with the widget. Please contact the plugin author for more info.

    Regards,
    Ismael

    in reply to: How to copy content from one language to another? #425748

    Hey Jorge!

    Thank you for using Enfold.

    You can save the template of a specific page by clicking the “Template” button located at the top right corner of the advance layout builder. If you want to copy specific elements on a page, switch the builder to debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Note: Take good care when copying shortcodes from the debug mode editor. One missing shortcode character can break the layout of the whole page.

    Best regards,
    Ismael

    in reply to: page transition – disable for some links #425746

    Hi Konstantin!

    Thank you for using Enfold.

    Edit the download links then add custom class attribute called no-transition. Something like this:

    <a href="downloadfile.png" class="no-transition">Download</a>
    

    Cheers!
    Ismael

    in reply to: Issue Warning: mysql_real_escape_string() #425743

    Hey Europroject!

    Thank you for using Enfold.

    The error is not coming from the theme but from a WP core file. Please try to download a fresh copy of WP then override your installation. Deactivate the plugins if possible.

    Cheers!
    Ismael

    in reply to: Installing Custom Web Fonts in Child Theme #425740

    Hey MtnStreamGroup!

    Thank you for using Enfold.

    Please post the required scripts in order to install the font. We would like to check it. You can add it directly in the header.php file if you want or use the wp_head hook. https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    Cheers!
    Ismael

    in reply to: font size menu problem #425738

    Hey manoloyoda!

    Thank you for using Enfold.

    Use this in the Quick CSS field to modify the mega menu title:

    #header .mega_menu_title {
      margin-bottom: 5px;
      font-size: 11px;
      line-height: 14px;
      font-weight: 600;
      display: block;
    }

    Cheers!
    Ismael

    in reply to: Menu not changing #425737

    Hi!

    Thank you for using Enfold.

    You need to set the Theme Location of the main menu as Enfold Main Menu.

    Regards,
    Ismael

    in reply to: Contact form submission #425736

    Hi tremblayly!

    Thank you for using Enfold.

    I think you forgot the website url. Have you tried using the Contact Form 7?

    Cheers!
    Ismael

    in reply to: Mobile Menu Doesn't Work After Update 3.1 #425730

    Hi!

    You have a lot of plugins installed at the moment including cloudflare which tend to break something in the theme whenever activated. Please try to deactivate all plugins then test the site again. If the mobile menu is working, activate the plugin one at a time to find the culprit. If you don’t have the time to do this, let us know. We’ll do it for you.

    Regards,
    Ismael

    in reply to: Adding javascript and stylesheets #425727

    Hey!

    I tried to access the site but the login credentials above are not working. Where did you find this calendar widget code? Please contact the plugin author to help you with the layout corrections.

    Best regards,
    Ismael

    in reply to: Portfolio permalinks and WPML not working #425726

    Hi!


    @Georg
    : Did you follow the instructions on how to properly translate the portfolio slug? http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Best regards,
    Ismael

    in reply to: Mobile Menu doesn't scroll well on ipad and iphone #425725

    Hey!

    I’m sorry for the delay. You don’t have the latest version of the theme right now. Please update the theme to version 3.1.3. If possible, after the update, please deactivate all plugins then test the site again on mobile. Remove browser cache before reloading the page. I hope the update fixed the issue.

    Regards,
    Ismael

Viewing 30 posts - 50,311 through 50,340 (of 67,534 total)