Forum Replies Created

Viewing 30 posts - 50,131 through 50,160 (of 67,534 total)
  • Author
    Posts
  • in reply to: Customise Excerpt for Blog #430164

    Hey!

    I said they are broken because when I clicked “Edit Post” in the wp admin bar, it redirects me to that broken pages. When I edit the posts in the actual Posts panel then it works.

    1.) This is not possible without major modification on the theme since the title and excerpt belongs on the same container. Please hire a freelance developer to modify the includes > loop-index.php file.

    2.) Please review the post above or I’ll explain it a little more clearly. The image on top of the post title is the actual “WP Featured Image”, this is the image that you set in the bottom right corner of the post editor. The one below the title is the image that you add using the “Add Media” button in the post editor. Now, my question, which one of these images would you like gone or removed? The css code above will remove or hide the featured image (the image above the post title) only on the actual post page (http://sonet.digital/blog/general/adwords-summit-2014/ –) :

    .single .big-preview.single-big a img {
      display: none;
    }

    Note that this code will not remove the featured images here: http://sonet.digital/blog/

    Cheers!
    Ismael

    in reply to: Probleme mit responsivem Verhalten #430158

    Hi!

    I think you have the same problem with the user in one of the previous post. Please review it: https://kriesi.at/support/topic/color-background/#post-418358

    Possible solution:

    https://kriesi.at/support/topic/color-background/#post-422349
    https://kriesi.at/support/topic/color-background/#post-423624

    Regards,
    Ismael

    in reply to: non-standard search forms #430156

    Hey 567silver!

    Thank you for using Enfold.

    The “non-standard search form” refers to the ajax search form when you click on the “magnifying glass”. Yes, you need to use the code to make it work with the ajax search.

    Cheers!
    Ismael

    in reply to: Remove the Import Dummy Data button #430151

    Hi 567silver!

    Thank you for using Enfold.

    Yes, you’re right. That button has been removed and is no longer working. There is only one demo or dummy data before but now you can select from different kinds of demo files.

    Best regards,
    Ismael

    in reply to: Change a header logo on one page only? #430149

    Hey laptophobo!

    Thank you for using Enfold.

    You can add something like this in the functions.php file:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(59))  {
        $logo = "http://www.mysite.at/wp-content/images/mynewlogo.png";
        }
        return $logo;
    }

    Change the page id and the image url.

    Best regards,
    Ismael

    Hey!

    Please check and set the correct file permission of the enfold.css file located in the wp-content > uploads > dynamic_avia folder. Delete the file then change any settings in theme options to regenerate it. If you’re not sure how to check it, please contact your hosting provider to set the correct file and folder permission.

    Cheers!
    Ismael

    Hey Jörg!

    Thank you for using Enfold.

    When you use the advance layout builder for posts, all default elements such as featured image, post meta info, social share section etc will be removed. You need to start from scratch.

    Cheers!
    Ismael

    in reply to: Video blog post + masonry #430141

    Hey hotspot!

    Thank you for using Enfold.

    I’m sorry but this will require major modification on the theme. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Anyway, if you want, you can use the portfolio items to create a custom link to the video url. It will open the video in lightbox when clicked. Edit a portolio item, look for Overwrite Portfolio Link setting. Set it to define custom link then add the url of the video.

    Regards,
    Ismael

    in reply to: Contactform & Radio Buttons #430139

    Hi volmering!

    Thank you for using Enfold.

    Unfortunately, the radio button element is not implemented in the default contact form yet. You can request the feature here: https://kriesi.at/support/enfold-feature-requests

    You can install a third party plugin like Contact Form 7.

    Regards,
    Ismael

    in reply to: Sidebar not displaying #430126

    Hey jaroljmek!

    Thank you for using Enfold.

    1.) Please edit the page and make sure that the Sidebar Settings is set to right or left sidebar.

    2.) Enfold is compatible with this plugin: https://wordpress.org/plugins/the-events-calendar/

    Best regards,
    Ismael

    in reply to: Background Image on iPad displaying huge #430102

    Hi!

    It looks fine when I checked the page. Minimum screen resolution of iPad devices is 1024x768px so I think this should work:

    @media screen and (max-width: 1024px) {
    #about-bg {
    background-attachment: scroll !important;
    background-size: 1600px 900px !important;
    background-position: 70% 50% !important;
    }}

    Please remove browser cache before testing the page. If it still doesn’t work, please give us the login credentials. We would like to check it.

    Best regards,
    Ismael

    in reply to: Defining blog styles #430097

    Hey There_Ltd!

    Thank you for using Enfold.

    Please set the default content font size on Enfold > General Styling > Fonts panel. Make sure that you enabled the right sidebar of the Sidebar on Single Post Entries in the Enfold > Sidebar Settings panel.

    Best regards,
    Ismael

    in reply to: Header animation #430092

    Hey!

    Thank you for using Enfold.

    Add this to the functions.php file:

    add_action('wp_footer', 'ava_custom_script_mod');
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    	$(window).scroll(function(){
    		var scrolled = $(this).scrollTop(),
    			adminbar = parseInt($('#wpadminbar').height()) || 0;
    		
    		if(scrolled >= 200) {
    			$('#header_main_alternate').addClass('custom-header').css('margin-top', adminbar);		
    		} else {
    			$('#header_main_alternate').removeClass('custom-header').css('margin-top', 0);
    		}
    	});
    })(jQuery);
    </script>
    <?php
    }

    then add this in the Quick CSS field:

    .custom-header {
      position: fixed;
      top: 0;
      width: 100%;
      border-bottom: 1px solid #ff9900;
      -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
      -moz-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
      box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
      z-index: 5000;
      -webkit-animation: custom-header-show 1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); /* Safari 4+ */
      animation: custom-header-show 1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); /* IE 10+ */
    }
    
    @-webkit-keyframes custom-header-show {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    
    @keyframes custom-header-show {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

    Best regards,
    Ismael

    Hi!

    I checked the site on iPod and I don’t see any captions. Please remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Advanced Layer slider z-index #429498

    Hi!

    Did you add any modifications, css or php, aside from setting the header to transparent? I tested this on my installation and header stays centered. You can update directly in the theme options: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    Hi dominiquehurley!

    Thank you for using Enfold.

    You can use plugins like AddThis or Simple Share Buttons but AddThis is the most comprehensive social tool that I know: https://www.addthis.com/

    You need to create an account and register the website but I don’t think it’s possible to share only the homepage. The buttons will link to the current page they are on.

    Best regards,
    Ismael

    Hi!

    Use this:

    .avia-slider-testimonials .avia-testimonial-meta .avia-testimonial-image {
      width: 130px;
      height: 130px;
    }

    Regards,
    Ismael

    in reply to: Date Modified Error #429485

    Hey!

    The login credentials are not working. Please check it.

    Regards,
    Ismael

    in reply to: Updating Theme & Editing Pages #429484

    Hey!

    1.) Can you please provide a screenshot for this one? I’m sorry but I don’t understand it “Sidebar user page”.

    2.) You can change the product title with this:

    h1.product_title.entry-title {
      font-size: 15px;
    }

    And the price with this:

    p.price .amount {
      font-size: 12px !important;
    }

    Best regards,
    Ismael

    Hi fwbecker!

    Thank you for using Enfold.

    Can you please provide a link to the page with the issue? A screenshot will help.

    Cheers!
    Ismael

    in reply to: Speeding up delay on Mega Menu display? #429480

    Hi!

    I’m sorry but I tried to edit the mega menu transition without breaking it but it’s not working. You see, the megamenu structure is a bit more complicated than the submenu so there’s a very slight variation on their transition. I’ll ask the rest of the support team if they have any idea on how to change it. Anyway, I don’t think users will even notice the difference.

    Best regards,
    Ismael

    Hey Tameez!

    Thank you for using Enfold.

    I’m sorry but we don’t provide support for third party plugins. Please contact the plugin author for more info regarding the issue. Not many is using that plugin, at least not enfold users. There would have been a few inquiries regarding the issue by now. If you can create a test page, maybe we can help.

    Best regards,
    Ismael

    in reply to: Accordion help #429473

    Hi!

    Thank you for using Enfold.

    1.) Add this in the Quick CSS field:

    .js_active .toggler {
      min-height: 60px;
      padding: 18px 3px 18px 35px;
    }
    
    .toggle_icon {
      top: 22px;
      left: 10px;
    }

    2.) Please refer to this link: http://www.pagero.com/wp-content/uploads/legislation_bkg_web.mp4

    Regards,
    Ismael

    in reply to: Mailchimp Form styling #429466

    Hi WolfvanHaeren!

    Thank you for using Enfold.

    We need to see the actual page with the form. Please post the url here.

    Best regards,
    Ismael

    in reply to: Image title used for alternative text #429463

    Hi!

    If you have the time, please update the theme as well. Upgrade it to version 3.1.3. Version 3.0.4 is currently installed.

    Regards,
    Ismael

    in reply to: Customisation for multilingual website #429460

    Hey!

    Use the custom.css file located in themes > enfold > css folder. It will affect all languages. Or design the first language then copy the css codes on the other language when you’re done.

    Cheers!
    Ismael

    in reply to: Show author info & image in single blog post #429459

    Hi Monique!

    Thank you for using Enfold.

    You can register the email of the author on gravatar.com. If you want to show the image author on all posts, set the blog style to multi author.

    Cheers!
    Ismael

    in reply to: Título en dos líneas / Menú #429457

    Hi Belema!

    Thank you for using Enfold.

    From what I understand, you want the menu items to have two lines. Please refer to this link: https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/#post-283385

    Cheers!
    Ismael

    in reply to: Add extra logo's in header space #429456

    Hey!

    You will not lose any settings when you move to a child theme. Refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Regards,
    Ismael

    in reply to: Problems with Avia builder in posts #429448

    Hi schoenj!

    Thank you for using Enfold.

    When you create the post in the advance layout builder, the sidebar is set as if it is a page because of the template-builder.php file. Note that you need to add all the contents manually when you use the advance layout builder for posts including the featured image, share buttons etc. If you want to use the same sidebar, edit template-builder.php file. Look for this code:

    $avia_config['currently_viewing'] = 'page';
    

    Replace it with:

    $avia_config['currently_viewing'] = is_single() ? 'blog' : 'page';
    

    Regards,
    Ismael

Viewing 30 posts - 50,131 through 50,160 (of 67,534 total)