Forum Replies Created

Viewing 30 posts - 48,241 through 48,270 (of 66,046 total)
  • Author
    Posts
  • in reply to: Fix WooCommerce terms of service checkbox #437967

    Hey DROR!

    Thank you for using Enfold.

    Try this in the Quick CSS field:

    #top .form-row .input-checkbox {
      position: relative;
      right: -215px;
    }

    Regards,
    Ismael

    in reply to: Navigation – Schriftgröße ändern? #437966

    Hey nullhorn!

    Thank you for using Enfold.

    You can modify the main menu style on Enfold > Advanced Styling panel. Edit the Main Menu Links element.

    Cheers!
    Ismael

    in reply to: Display a Portfolio Item in a Post #437965

    Hey!

    I’m sorry but it’s not possible to insert post or custom post types inside another post. The blog posts element might work but you have to use a unique category for the single portfolio item. Maybe, a plugin will do the trick: https://wordpress.org/plugins/xili-postinpost/

    Note that this plugin will only work for the default posts so custom post types such as the portfolio item is out of the question. The plugin shortcode doesn’t render the theme’s shortcode (gallery etc) so you have to use the plugin’s widget. On the actual post, use the Widget Area element to display the plugin widget.

    Best regards,
    Ismael

    in reply to: Display add to cart button and attributes options #437958

    Hi garamaleki!

    Thank you for using Enfold.

    Edit the product then go to the Variations panel. Look for the Defaults: [?] option. Select the variation that you want to show as default.

    Regards,
    Ismael

    in reply to: Excerpts filter function #437953

    Hey Magellan!

    Thank you for using Enfold.

    You don’t need to add the code above if you use the more tag inside the post. The code will render the more tag useless because it will fetch the entire post content instead.

    Best regards,
    Ismael

    in reply to: Different posts layout #437950

    Hey!

    This will require another template, to be specific, another loop-index.php or single.php whatever direction you choose. Use conditional function inside the file. OR add this in the functions.php file:

    add_action('template_include', 'load_single_template');
      function load_single_template($template) {
        $new_template = '';
    
        // single post template
        if( is_single() ) {
          global $post;
          // 'cat1' and 'cat2' are category slugs
    
          if( has_term('cat1', 'category', $post) ) {
            // use template file single-cat1-template.php
            $new_template = locate_template(array('single-cat1-template.php' ));
          }
    
          if( has_term('cat2', 'category', $post) ) {
            // use template file single-cat2-template.php
            $new_template = locate_template(array('single-cat2-template.php' ));
          }
    
        }
        return ('' != $new_template) ? $new_template : $template;
      }

    Create a file called single-cat1-template.php for the cat1 category. Do the same for cat2 category.

    Best regards,
    Ismael

    in reply to: Facebook Post Embed not working. #437948

    Hey!

    The code works inside a code block. Please try it.

    Cheers!
    Ismael

    in reply to: Edit Category page #437946

    Hey!

    I haven’t done anything yet. Is the sidebars OK now? I don’t want to login unless the sidebars are OK. Did you update the theme?

    Cheers!
    Ismael

    Hey!

    I checked the site but it’s on maintenance mode. I can see some errors on the console coming from a plugin, I guess, called shadowbox. Is that a plugin on your installation?

    Regards,
    Ismael

    Hey LaNeraNura!

    Thank you for using Enfold. :)

    Add this in the Quick CSS field if you want to disable parallax effect:

    ul.avia-slideshow-inner {
      transform: translate3d(0px, 0px, 0px) !important;
    }

    Regards,
    Ismael

    in reply to: Header Menu Spacing (3.1.3 Theme Update) #437943

    Hi!

    Please check the page now. Adjust the padding if the menu items fall out of the menu container at certain browser width.

    Best regards,
    Ismael

    in reply to: Translations in child theme not working #437942

    Hey steviger!

    Thank you for using Enfold.

    After you make the changes in the .po file, you need to compile it in order to create a .mo file. Use the POEdit software:

    https://wordpress.org/plugins/poeditor/
    https://poedit.net/wordpress

    Best regards,
    Ismael

    in reply to: Left Bar Menu #437941

    Hey Guilherme!

    Thank you for using Enfold.

    The menu is not ordinary but not impossible. Unfortunately, that will require custom modifications that we can’t provide here. Is the site live? Please post it here. We would like to take a look. Maybe, you can start by switching the layout to boxed. Most header elements can be found inside the includes > helper-main-menu.php file. Hire a freelance developer to modify it.

    Cheers!
    Ismael

    in reply to: rtl footer #437940

    Hey!

    Please post the login details here. Did you replace the line of code or did you just copy the new code?

    Best regards,
    Ismael

    in reply to: Body Font in Theme Options #437362

    Hey endoradigital!

    Thank you for using Enfold.

    Edit functions.php, add this below below line 16 or 17:

    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Muli'] = 'Muli:300,400,300italic,400italic';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: menu problem after last wordpress update #437356

    Hey!

    Thank you for the screenshot. The only issue there is the misplaced avia-menu-fx or line below the menu item. You can add the css above to fix it.

    Cheers!
    Ismael

    in reply to: Problem with mobile menu #437350

    Hey bramblejam!

    Thank you for using Enfold.

    Please update the theme to 3.1.5. That should fix the issue.

    Regards,
    Ismael

    in reply to: Unwanted Thin White Line and Arrow Icon in Footer #437344

    Hi!

    Thank you for using Enfold.

    Use this to disable the arrow:

    .socket_color .avia-bullet {
      display: none;
    }

    And this to fix the border:

    #socket .container {
      top: 1px;
    }

    Best regards,
    Ismael

    in reply to: Full width slider not appearing #437339

    Hey ccarberg!

    Thank you for using Enfold.

    What is the current version of Enfold on your installation? Please update to version 3.1.4.

    Best regards,
    Ismael

    in reply to: Enfold theme – homepage always refreshing…can't edit #437337

    Hi safauset!

    I’m sorry that you’re having this issue. What do you mean by “refreshing”? It reverts back? Please try to increase the wp memory limit to at least 128M: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Mobile menu and anchor links – menu won't close #437333

    Hi davidesieb!

    Thank you for using Enfold.

    This is fixed on the latest update of the theme. Please upgrade to 3.1.4.

    Cheers!
    Ismael

    in reply to: Various questions. #437331

    Hey!

    Adjust the gap with this on the Quick CSS field:

    .av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
      right: 30px;
      bottom: 30px;
    }

    Best regards,
    Ismael

    in reply to: ENFOLD FEATURE REQUESTS #437328

    Hi edinc79!

    Thank you for using Enfold.

    There is no link for individual feature request. Only the Popular requests are being taken into consideration so there’s no point to check the request if they are not included in the popular category. If you want to add or edit anything on your previous post, you need to make a new request: https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Ismael

    in reply to: Set the width for 2/3 elements #437322

    Hey!

    You can increase the max width of the post content:

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
      max-width: 800px;
    }

    Note that the content will inherit the size of the column width regardless of the max width value.

    Cheers!
    Ismael

    in reply to: Edit Category page #437318

    Hey!

    Works fine on our installation. Please post the login details here. We’ll create an example.

    Regards,
    Ismael

    in reply to: footer fifth column css bad behaviour #437317

    Hey!

    I think a plugin or a custom script is causing the issue. When I checked the fifth column, a css inline styling is being applied to the widget when you decrease the browser size:

    <section id="nav_menu-3" class="widget clearfix widget_nav_menu" style="position: fixed; width: 180px; bottom: 2929px;">
    

    The bottom property pushes the widget content out of nowhere. It also creates a clone:

    <section id="nav_menu-3_clone" class="widget clearfix widget_nav_menu q2w3-widget-clone-sidebar-10" style="height: 155px; visibility: hidden;"></section>
    

    Please deactivate the plugin.

    Regards,
    Ismael

    Hey tremblayly!

    Thank you for using Enfold.

    There’s an internal server error when I checked the page. I noticed that there are tons of plugins installed in the site, total of 45. Do you really use all those plugins? Please deactivate all plugins except for woocommerce then activate them one at a time to find the culprit. Please contact your hosting provider for more info concerning the internal server error issue.

    Regards,
    Ismael

    in reply to: Aspect ratio blog thumbnails #437311

    Hey!

    Yes, you can add your own thumbnail size or use the existing thumbnail sizes. Regenerate the thumbnails afterwards. http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: Enfold Google Maps Widget: Rand zu Widget-Titel zu klein #437298

    Hey aebli!

    Thank you for using Enfold.

    Please give us a link to the actual page. We would like to check it. Try to add a text widget above the map widget then add br tags as content or use the separator / whitespace shortcode.

    Regards,
    Ismael

    in reply to: Facebook Post Embed not working. #437267

    Hi joshuasr!

    Thank you for using Enfold.

    What is the code that you’re using? Is it from a plugin? Please contact the plugin author for additional help. Place the code on pastebin.com so that we can check it.

    Regards,
    Ismael

Viewing 30 posts - 48,241 through 48,270 (of 66,046 total)