sideswipev2
Forum Replies Created
-
Fired the email through but I’ve it half figured out.
There was an elementor-background-overlay from the footer sitting on top of the entire page. Taken it away and everything is clickable again.
Just now for some reason the header is sitting behind the main content.
- This reply was modified 1 year, 8 months ago by sideswipev2.
I now can’t even get into edit any template blocks as the “edit template” button in theme builder takes me to the posts page……..
Edit – Never mind. Fixed this with a browser switch.
- This reply was modified 1 year, 8 months ago by sideswipev2.
Forum: Plugins
In reply to: [WooCommerce] How to stop Add to cart redirecting only on “private” productsCheers for replying @robertghetau ! Appreciated.
Yep, that’s the present functionality. With Ajax buttons enabled it redirects, but with it disabled it just refreshes the page.
The problem is that I need the Ajax buttons to still work (without refreshing the page) but also with the private products.
I’ve tried a few things that I found through some Google use, such as
add_filter( 'woocommerce_add_to_cart_redirect', '__return_false' );
add_filter( 'woocommerce_add_to_cart_redirect', 'wp_get_referer' );
function custom_add_to_cart_redirect() { return 'https://site.co.uk/shop/'; } add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );
But none seemed to have any sort of effect. Although I’ll admit I haven’t tested these on a clean install, just on the current build and a build with various plugins stripped back.
Forum: Fixing WordPress
In reply to: 500 error after switching serversAhhhh hero. Didn’t think of that. The error log on the server doesn’t seem to be enabled but the wp_debug seems to have worked.
Seems 2 plugins for gallery and navigation were the issue. Disabling the gallery let the page load up until the navigation would’ve been loading. Disabling the rest has loaded the site. I’ll just take some time now to see about getting round these plugin errors.
Thanks for the swift assistance! Legend!
Managed to get it sorted. Thanks for all your help!
Hey @corylamleorg ! Cheers for getting back to me.
The database.sql file is just about 10mb. I’ll see if I can get on to my hosting company about PHP permissions. I assume that’s something they can sort rather than something I can do?!
Thanks again!
Forum: Fixing WordPress
In reply to: "Featured posts" changes the number shownChanged
<?php if (have_posts('showposts=3')) : while (have_posts()) : the_post(); if (in_array($post->ID, $do_not_duplicate)) continue; ?>
to
<?php query_posts(array('post__not_in'=>$do_not_duplicate)); if (have_posts()) : while (have_posts()) : the_post(); ?>
Seems to have done the trick. Thanks a lot!
Forum: Everything else WordPress
In reply to: Recommendation for a "pinterest" type layoutOr even a plugin I can shortcode into the page that will let me put up individual images with a bit of text?
Or possibly something that will let me put individual images in and when I hover over it displays text over the image?
Something along any of these lines would be great.
Forum: Plugins
In reply to: [Plugin: TheThe Image Slider] Autoplay stopping after first transition