Mark6174
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendWe’ve now stopped using CF7 and created a new form with a different plugin and all is well.
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendAnd just removed the Captcha Recaptcha v3 as this didn’t work. I just want my contact form to send me messages. It hasn’t worked for about 2 weeks now. Your help is most appreciated.
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendWP Super Cache is diactivated though.
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendI’ve got SuperCache, WP Easy SMPT which works fine and I’ve just installed Captcha Recaptcha V3 – now I can’t even get into wordpress because the Captcha won’t resolve.
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendIts not a Comment Blacklist problem either. I’m using CF7 version 5.1.1
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendIts not a cache problem
Forum: Plugins
In reply to: [Contact Form 7] SMTP works but CF7 form won’t sendThanks for the link but I already know that its got an orange box around it and what that means. How do i resolve it?
Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".Hi – Success! Not sure what’s happened during the day but just looked at my site before doing anything in Filezilla and it all seems to now be OK so a huge thank you for all of your help – amazing! 🙂
Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".Hi – thanks again for replying. I’ve edited the theme.css file in wordpad through my FTP site as you’ve suggested and hiding the command with the */ doesn’t change it and removing the 3 lines doesn’t work either. I’ve then also gone into the stylesheet.css file in wordpress in appearance editor to update it so that it retrieves the updated theme.css file and that doesn’t make any difference. Any other ideas? Thanks a lot – Mark
Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".Hi – thanks so much for your help. Looks like the img alt issue has now gone away and my images in the gallery are all centre aligned. However, in other pages where I have six images to a page all used to be nicely separated and now they’re all bunched together. I can see that they are all still thumbnail size (300 x 175) but there used to be a space between each image – like how they are displayed on http://www.carversgilders.com/wood-carving but these aren’t using the fancybox – all subpages are – i.e. http://www.carversgilders.com/carved-memorials
How can I get the pages and subpages that use fancy box to space the images back as they were?
I am really sorry that I keep coming back to you with another problem but I can’t see how to fix this – can you please help me?
Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".Hi – here’s the code from the layout-gallery.php file – I don’t know how to centre the images now that you’ve solved the img alt issue. Hope I’ve copied this into this forum OK! Thanks
<div class="spacer"></div> <div class="home_content_introduction"> <div class="m"> <div class="spacer"></div> <div class="breadcrumbs"> <?php if(function_exists('bcn_display')) { bcn_display(); }?> </div> <div class="page"> <div class="three_third"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <style type="text/css"> .gallery {display: none} </style> <h1><?php the_title(); ?></h1> <?php the_content(); ?> <?php $post_content = get_the_content(); preg_match('/\[gallery.*ids=.(.*).\]/', $post_content, $ids); $array_id = explode(",", $ids[1]); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; wp_reset_query(); ?> <div class="clear"></div> <div class="property-gallery-border"> <div class="property-gallery"> <div class="main_images"> <ul class="bxslider" id="gallery"> <?php foreach ($array_id as $img) { ?> <li> <?php $images = get_post($img); if ( $images->post_excerpt != '' ) { echo '<div class="caption">'.$images->post_excerpt.'</div>'; } ?> <img src="<?php $large = wp_get_attachment_image_src($img, 'full-gallery-images'); echo $large[0]; ?>"> alt="<?php echo trim(strip_tags( get_post_meta($img, '_wp_attachment_image_alt', true) )); ?>" </li> <?php } ?> </ul> </div> <?php $array_id = array_chunk($array_id, 9) ?> <div class="custom_gallery_pager_logic"> <div id="pager"> <?php $data_id = 0; ?> <?php foreach ($array_id as $img) { ?> <div class="image-group"> <?php foreach ($img as $item) { ?> <a data-slide-index="<?php echo $data_id; ?>" href=""><img src="<?php $thumb = wp_get_attachment_image_src($item, 'small-gallery-images'); echo $thumb[0]; ?>"></a> <?php $data_id++; ?> <?php } ?> </div> <?php } ?> </div> </div> </div> </div> <script type="text/javascript"> $(document).ready(function(){ $('.property-gallery #gallery').bxSlider({ pagerCustom: '#pager', controls: false }); $('.property-gallery #pager').bxSlider({ pager: false, nextText: '>', prevText: '<' }); }); </script> </div> <div class="clear"></div> </div> </div> </div>Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".Just noticed that the <img> tag is also missing in the data slide index at the bottom of my gallery so your really helpful code has only resolved 58 of the 116 missing img tags that don’t have the Alt Attribute defined. I’m really sorry to ask again but clearly I need code to go underneath the following command in my layout-gallery.php file:
<?php foreach ($img as $item) { ?>
” href=””><img src=”<?php $thumb = wp_get_attachment_image_src($item, ‘small-gallery-images’); echo $thumb[0]; ?>”>and also a solution to centre my main image back in the gallery http://www.carversgilders.com/gallery.
Thanks so much – I’m sorry to have to ask again but I’d really appreciate your help
Forum: Plugins
In reply to: [Firelight Lightbox] tag does not have an ALT attribute defined".You are a genius! One slight hitch though – my images are now left aligned in the gallery href=”http://www.carversgilders.com/gallery and not centred with the Title. Can’t seem to find how to centre the image back – can you help?
Many thanks