I installed the latest free version of metaslider to test it’s possibilities. I put two slideshows in a post and one in a sidebar to see if I could place three in a row, but all of a sudden two extra ones popped up. One in the sidebar and one in the post. I removed all of them, but the ones that appeared on their own didn’t go away. I deleted the slideshow itself and then they were all gone.
Later I deactivated metaslider and the shortcode popped up again in the places where it appeared out of nowhere. It still does when I delete the plugin.
I don’t see the shortcode if metaslider is active, but that’s not really a solution. How do I get rid of the wandering shortcodes?
Problem can be found on
wp.annienke.com at the bottom of the masonry gallery
wp.annienke.com/about/ in the sidebar
Hope you can help!
https://www.ads-software.com/plugins/ml-slider/
]]>Anyone have any ideas?
Thanks.
]]>Plugin installed and activated but I cannot find any new settings anywhere
https://www.ads-software.com/plugins/woocommerce-product-details-customiser/
]]>This is (or used to be) my website: https://aaronmillard.com
I just recently did a complete fresh install of WordPress and everything was going great until out of nowhere I got a “redirect loop” and I have not been able to solve it since. I am unable to access ANY part of my website. Not the main page nor any other pages of the website, nor can I access the admin section, nor I can access the “/wp-admin/options-permalink.php” as other forums have suggested.
I have no plugins whatsoever and I have not upgraded to a newer version. I simply was working on the site adding pages and such, went to dinner, and then came back to everything being lost behind a redirect loop.
Any help towards a solution would be greatly appreciated, even if that just means pointing me towards the right people I need to talk to (be it my webhosting service, etc.)
Thanks!
However the “Continue reading →” link just links to the page that the visitor is on.
I’ve read this: https://codex.www.ads-software.com/Template_Tags/the_content
I have tried the addition to functions.php that the page suggested, but no effect. I’ve also tried using “the_content” with a more-tag splitting the page, but the same problem manifests.
Here’s the code for my parent-page template that I’m using to create the sub-listings:
Here’s where I pull it up:
$child_pages = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = ".$post->ID." AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?>
<?php if ( $child_pages ) : foreach ( $child_pages as $pageChild ) : setup_postdata( $pageChild );
Here’s where I show it:
<?php the_excerpt();?>
Any ideas what could be going wrong here?