I paid for support again on 12 December 2024 as the index listing page for the my glossary has stopped rendering. The subpages e.g. A,B,A all work fine.
e.g. https://yourscottisharchives.com/glossary/prefix:c
I’ve emailed you several times about this, initially using your website support section in December, but I’ve not heard anything back and it’s nearly March now.
If you could either respond either here or to my emails I would appreciate it.
Thanks
]]>We use Popup Builder for a “subscribe to us” feature, and ever since we relaunched with Mission News, it’s not working anymore.
Part of the reason is because I cannot, for the life of me, figure out what the “index” page is anymore lol (you know, for the old school among us it used to be called something like index.html lol)… In the Popup Builder plugin you have to specify which page you want the pop-up window to appear on.
Can someone please help me find my way out of this dumb? Thanks!
]]>I can use some help or advice, I have literally put some 15 hours into researching how I might do this. I have a couple of websites that will sell unique, one of a kind products (like art pieces, there is only 1 of each). I want to have a Shop/Index page/Archive page that only shows Available products, and ANOTHER Shop or Index page that only shows SOLD products, so others can see what has been available in the past.
As I’ve said, I’ve put a lot of research into this. I know I can use Woocommerce settings to filter out all SOLD products, but I want to be able to show them in a different area. I would appreciate any advice in how I might get this done – plugins or themes or what have you.
The only thing I have seen that comes close is the WooCommerce Product Table plugin by Barn2, which will do that, but it will only show the products in a listing product table. The products are very visual, and I want the pictures to be very prominent, preferable in a grid. As far as I can tell the Barn2 plugin will only do a table sort of format.
Crocoblock has confirmed that their plugins wouldn’t be able to do this (I was REALLY hopeful).
Has anyone else had this problem? Is there a forum/thread discussion I missed that might be help? Either a plugin or some custom snippet code I could maybe figure out how to manipulate? I’m not a developer but I’m trying my best.
Thank you for any assistance or advice!
]]>index.php:
<?php
$wp_query = new WP_Query( array(
'post_type' => 'blog_posts',
'posts_per_page' => 3
));
?>
<?php if ( $wp_query->have_posts() ) : while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
<?php next_posts_link(); ?>
<?php wp_reset_query(); ?>
Custom Post Type:
add_action( 'init', 'create_blog_post_type' );
function create_blog_post_type() {
register_post_type( 'blog_posts',
array(
'label' => __('Blog'),
'public' => true,
'exclude_from_search' => false,
'has_archive' => true,
'rewrite' => array('/' => 'Slider', 'with_front' => true),
'query_var' => "blog_posts",
'exclude_from_search' => false,
'menu_position' => 3,
'hierarchical' => false,
'supports' => array( 'title', 'editor', 'revisions', 'thumbnail'),
'can_export' => true,
)
);
}
]]>I use blocksy with the companion plugin. I have been trying to see if I can specify a featured image for the home page but couldn’t find any such feature. I believe this can be done using some css workaround but I don’t really wish to go there. I can see other pages and assign images to them but there’s no dedicated home page so how do I do this?
What I want is when I post the link to my blog (home page) anywhere (say twitter), the thumbnail should be the assigned featured image. Currently it is just blank/default b&w stripes. Another suggestion (if this doesn’t exist yet), is to give control to users to choose a dynamic featured image depending on the latest blog post’s featured image.
I may have missed something, if there’s already some way to do this. Can you please advise?
Thanks
]]>echo do_shortcode( '[shared_counts]' );
during the Loop in my index page template, but no dice. Any ideas?
]]>rel="noopener"
or rel="noreferrer"
to any external links to improve performance and prevent security vulnerabilities. Learn more.I know how to fix this from the HTML (I know very little about html and css but this seems easy) but I cannot find the html code for the index site in the theme… where can I find the code? I tried index.php, but it sends you to another file, and that file to another file and so on…
I’m using customify with regular elementor (no pro version)
I want to host my poetry on this site, yet keep it separate.
Someone on this forum advised me to use a separate Category and a plug-in to exclude that Category from my main page.
This seems to work great so far, but I have a LOT of this stuff to put up. So I want to create an Index page for these posts. Rather than shoving them all into an endless scroll-feed, I’d like my readers to be able to choose what they’d like to read, based on what I’ve tagged the posts with.
So — how do I create an index page for all the Posts in this Category? Ideally I’d like to display the post name, some idea of how long it is, and the the tags I’ve assigned to it.
Thanks all you WordPress wizards! <3
]]>