Forum Replies Created
-
AuthorPosts
-
Thanks.
This does the work for me:
.portfolio_preview_container .portfolio-preview-image a { pointer-events: none; }
I found this to work:
function add_custom_port_target(){ ?> <script> jQuery(window).load(function(){ jQuery('a.grid-image').attr('target','_blank'); }); </script> <?php } add_action('wp_footer', 'add_custom_port_target');
Yes, there’s an specific folder
The external links are on the same domain (out of WP), your solution does not work.
Already tried in /enfold/config-templatebuilder/avia-shortcodes/portfolio.php
Changing
492$output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
506
$output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size, $image_attrs )."</".$link_markup[1].">";
to
492$output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
506
$output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size, $image_attrs )."</".$link_markup[1].">";
But that’s ignored…
Thanks.
I switched the masonry gallery blog from flexible (1st option) to perfect (2nd option) which already gave a great boost to google pagespeed.
1. All images I use as cover are either 4:3 (barely 3:4)
2. Images scale up to 327px width (depending on browser window) but source image size is the generated 705x470px versionQ:
Is it possible to set the displayed image size to something smaller like a 330px width version (and generate them)?
Is it possible to show the cover image always completely (the full 4:3) without clipping?November 26, 2015 at 9:20 am in reply to: Multiple Media Sizes Being Saved / LayerSlider Site Speed Issues #542919@ Josue:
1. Does you code removes (deletes) the files from the /uploads folder, or
2. makes it enfold just not load them?July 24, 2015 at 4:46 pm in reply to: Disable (hide) date, which is shown below blog entries? #478275Thanks for the reply. It was the cached version maybe. I reset WP fastest cache, now it’s ok.
July 23, 2015 at 10:21 pm in reply to: Disable (hide) date, which is shown below blog entries? #477987They’re still showing in the mobile version, how disable them there?
July 23, 2015 at 9:23 pm in reply to: Disable (hide) date, which is shown below blog entries? #477968Thank you!
-
AuthorPosts