Forum Replies Created

Viewing 30 posts - 11,431 through 11,460 (of 14,834 total)
  • Author
    Posts
  • in reply to: WIDGET Enfold Latest News – "Excerpts & Read More" #380196

    Hi!

    1. Try adding this to the bottom of your functions.php file.

    function custom_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    2. Add this in front of your CSS to target just your homepage.

    .home 
    

    For example.

    .home .news-excerpt { font-size: 12px !important; }
    

    Best regards,
    Elliott

    in reply to: Problem with Google Maps in Enfold Theme #380177

    Hey!

    Send us a WordPress login.

    Cheers!
    Elliott

    in reply to: Set blog post images to link to post #380170

    Hey!

    Open up /enfold/functions.php and change lines 109 – 110 from this.

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    To this.

    $avia_config['imgSize']['entry_with_sidebar'] 	= 'full'		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= 'full'						// images for fullsize pages and fullsize slider
    

    As for the lightbox your blog images are already linking to the post. Do you mean you wish to make it so the single post view featured image does not open in lightbox?

    Best regards,
    Elliott

    in reply to: Layer slider issue #380158

    Hi!

    I don’t see the 1px jump on my end. What version of Firefox are you using and what operating system?

    Regards,
    Elliott

    in reply to: Thank You Page Refreshes #380154

    Hey Raphep!

    How are you tracking this? What is the code your using?

    Best regards,
    Elliott

    in reply to: Shopping cart icon on mobile menu – only show if… #380150

    Hey!

    I checked your site again but it looks like you removed the AJAX cart and set the add to cart button to link directly to your cart page. You have to enable the AJAX cart for that to work.

    Regards,
    Elliott

    in reply to: Masonry Gallery – Structured Data Bug #380139

    Hey!

    In /enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 576 you can see we set the context to “image_url”.

    $markup = ($post_type == 'attachment') ? avia_markup_helper(array('context' => 'image_url','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])) : avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup']));
    

    That’s the conditional your looking for. You could change that to “significantURL” and then add a new case in this file, https://kriesi.at/support/topic/masonry-gallery-structured-data-bug/#post-379035.

    Cheers!
    Elliott

    in reply to: problem with contact form #380132

    Hi!


    @Windsong
    , You most likely need to update the theme. See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.

    Best regards,
    Elliott

    in reply to: Slow webpage load times #379818

    Hey Brett!

    Yes it feels like the server is hanging up on something. After it was cached though it loaded within 2-3 seconds on each refresh.

    I would try contacting your hosting provider about this to see if they have any idea.

    Also be sure to deactivate all plugins while testing.

    Best regards,
    Elliott

    • This reply was modified 11 years ago by Elliott.
    in reply to: Gravity Forms #379816

    Hey jaroljmek!

    You’ll want to look over the gravity forms documentation and support, http://www.gravityforms.com/.

    I’ve never used it before but if you read their documentation then you’ll figure out how to insert the forms.

    Best regards,
    Elliott

    in reply to: About styling Gravity Forms #379813

    Hi masyogie!

    Take a screenshot and highlight what your trying to do so we can get a better idea.

    We will have to use CSS to style it.

    Regards,
    Elliott

    in reply to: Top Menu Bar on Transparent header turns black #379812

    Hi havi!

    Add this to your custom CSS.

    .header-bg { opacity: 0 !important; }
    

    That will keep it transparent even when scrolling.

    Regards,
    Elliott

    in reply to: Different Header for different pages #379811

    Hi pixup!

    We can give you CSS to use to change the logo position on separate pages. Send us a link to the pages you want to change it on and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Accordion Slider Issues #379810

    Hi gyverchang!

    Your adding this to your custom CSS correct?

    #top .aviaccordion-preview {
      bottom: 0;
      height: 30%;
      width: 100% !important;
    }

    That’s why it is looking weird. Remove that and it should display like in our demos.

    Cheers!
    Elliott

    in reply to: How to custom Enfold Advertising Area widget? #379805

    Hi!

    Try adding this to your custom CSS.

    #footer .textwidget a {
      display: inline !important;
    }

    If that’s not correct then send us a WordPress login and we’ll see what we can do.

    Best regards,
    Elliott

    Hey Zohar!

    You could try this.

    add_action( 'init', 'enfold_customization_remove_ga', 20 )
    function enfold_customization_remove_ga() {
    	if ( is_user_logged_in() ) {
    		remove_action('wp_head', 'avia_print_tracking_code', 100000);
    		remove_action('wp_head', 'avia_print_tracking_code', 100000);
    	}
    }

    But overriding the function would work just as well.

    Cheers!
    Elliott

    in reply to: Featured image size #379801

    Hi p_lo84!

    I viewed some of your blog posts but the images were the same size. If you want to change their sizes then open up /enfold/functions.php and you can find the image sizes starting on line 100.

    Cheers!
    Elliott

    in reply to: retina ready #379800

    Hi hotspot!

    Basically it just means it displays nicely on high resolution devices. You can upload a large logo and it’s size will be truncated to display in your header area so even on high resolution devices the logo image will stay sharp.

    As for the example your talking about yes the image will display sharper on high resolution screens.

    Best regards,
    Elliott

    in reply to: Masonery #379797

    Hey Zaccc!

    Not entirely sure what your trying to do here but if you create a page with a sidebar then you can place a Masonry element inside the page content.

    If your trying to create filters in your sidebar then that is going to take a lot of time and code and would have to be considered custom work.

    If your trying to display products and filter them by price, etc etc, then we recommend the Woocommerce plugin.

    Regards,
    Elliott

    in reply to: Multiple Page Backgrounds/color schemes? #379777

    Hey Ken!

    A different background would be possible. Drag a codeblock element to your page and add this inside.

    <style type = "text/css">
    html.html_boxed {
      background: url("YOUR DOMAIN HERE/wp-content/themes/enfold/images/background-images/wood-light.png") repeat scroll center top #342f29 !important;
    }
    </style>

    Getting different color schemes to display would take a lot of time and code though so it would have to be considered custom work.

    Cheers!
    Elliott

    in reply to: LayerSlider Will Not Save – Please Help #379776

    Hi johanboshoff!

    It must be something wrong with that specific slider you have. I created a new one and it’s saving fine. Not sure what it could be.

    I would try creating a new one and once you have it completed you can delete the old one.

    Cheers!
    Elliott

    in reply to: I need some help with Quick CSS. #379772

    Hi!

    You’ll want to upload a larger image to use there. The image is stretched to fit the full screen size so if a user visits your site on a large monitor then it will look a little pixellated. If you use HD size images though then they will display sharp on pretty much all screen sizes.

    Cheers!
    Elliott

    in reply to: Full screen slider #379768

    Hi awb1!

    Your currently using Enfold 3.0.2. Update Enfold to the latest version, 3.0.4, and let us know when your done.

    See here for updating, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.

    Cheers!
    Elliott

    in reply to: transparency and responsivness #379766

    Hey greengraphicsvienna!

    1. Add this to your custom CSS.

    .header-bg { opacity: 1 !important; }
    

    2. Are you sure you have the LayerSlider set to be responsive in the slider settings? Send us a link and we’ll take a look.

    Cheers!
    Elliott

    • This reply was modified 11 years ago by Elliott.
    in reply to: Problems in RWD – main menu categories and their submenus #379765

    Hey ablito!

    I’m sorry but I’m not sure I understand. Take a screenshot and highlight what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Correct Picture-Size for featured image in Single Event/Post #379764

    Hey Rolf!

    Your site is loading in 2.8 seconds for me. I suppose you could try reducing the size of your Tsing Tao image a bit more as it’s 130KB and the largest image you have on your page so far. The problem here is probably the amount of images your using so you could also consider removing some of them and placing them on separate pages.

    Other than that I would just ignore the pagespeed results.

    Regards,
    Elliott

    in reply to: Logo Area & Parallax image #379759

    Hi Aleks!

    It sounds like your setting the header to be transparent. Set it to no transparency to get the effect your wanting.

    If that’s not the problem then send us a link to your page and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Slideshow problems #379757

    Hey juliaevemann!

    It looks like you forgot to include the link. You can mark your reply as private if you wish.

    Be sure to deactivate all plugins while testing.

    Regards,
    Elliott

    in reply to: Load time & various #379753

    Hey mcginty312!

    1. Contact your hosting provider to see if anything happened.

    2. Drag a codeblock element to your page and add this inside.

    <style type = "text/css">
    .content, .sidebar { padding-top: 0px !important; }
    </style>

    3. Navigate to Dashboard > Appearance > Menus and click on the dropdown arrow for your link and remove the description.

    4. Open up /enfold/config-templatebuilder/avia-shortcodes/gallery.php and change line 207 from this.

    $tooltip = $caption ? "data-avia-tooltip-position='bottom' data-avia-tooltip='".$caption."'" : "";
    

    To this.

    $tooltip = $caption ? "data-avia-tooltip-alignment='bottom' data-avia-tooltip-position='bottom' data-avia-tooltip-class='av-tt-pos-below' data-avia-tooltip='".$caption."'" : "";
    

    Best regards,
    Elliott

    in reply to: Galerie display ploblem in ajax portfolio #379751

    Hi!

    Try adding a codeblock element to your page and then add this inside.

    <style type = "text/css">
    #top .avia-gallery .avia-gallery-thumb a {
      opacity: 1;
      width: 12% !important;
    }
    </style>

    Cheers!
    Elliott

Viewing 30 posts - 11,431 through 11,460 (of 14,834 total)